.aruh-hero,
.aruh-hero * {
    box-sizing: border-box;
}

.aruh-hero {
    position: relative;
    width: 100%;
    min-height: var(--aruh-hero-height, 520px);
    overflow: hidden;
    background: #111;
    isolation: isolate;
}

.aruh-hero-link {
    display: block;
    position: relative;
    min-height: var(--aruh-hero-height, 520px);
    color: #fff;
    text-decoration: none !important;
    overflow: hidden;
}

.aruh-media,
.aruh-overlay {
    position: absolute;
    inset: 0;
}

.aruh-media {
    background: #171717;
}

.aruh-hero-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 38%;
    display: block;
    transition: transform .55s ease;
}

.aruh-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #101010 0%, #262626 100%);
}

.aruh-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.69) 43%, rgba(0,0,0,.22) 76%, rgba(0,0,0,.14) 100%),
        linear-gradient(0deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,0) 55%);
}

.aruh-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: var(--aruh-hero-height, 520px);
    display: flex;
    align-items: flex-end;
    max-width: 1320px;
    margin: 0 auto;
    padding: 54px 42px;
}

.aruh-content {
    width: min(850px, 78%);
}

.aruh-kicker-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.aruh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 3px;
    background: var(--aruh-accent, #d71920);
    color: #fff;
    line-height: 1;
}

.aruh-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 rgba(255,255,255,.45);
    animation: aruh-pulse 1.8s infinite;
}

@keyframes aruh-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,.46); }
    70% { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (prefers-reduced-motion: reduce) {
    .aruh-pulse { animation: none; }
    .aruh-hero-image { transition: none; }
}

.aruh-category,
.aruh-time {
    color: rgba(255,255,255,.82);
    text-shadow: 0 1px 5px rgba(0,0,0,.6);
}

.aruh-time::before {
    content: "·";
    margin-right: 12px;
}

.aruh-title {
    margin: 0 !important;
    max-width: 1000px;
    color: #fff !important;
    font-size: clamp(36px, 4.6vw, 68px) !important;
    line-height: .98 !important;
    font-weight: 800 !important;
    letter-spacing: -.035em;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.aruh-excerpt {
    max-width: 760px;
    margin: 18px 0 0 !important;
    color: rgba(255,255,255,.9) !important;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.45;
    text-shadow: 0 1px 7px rgba(0,0,0,.55);
}

.aruh-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--aruh-accent, #d71920);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.aruh-hero-link:hover .aruh-hero-image {
    transform: scale(1.018);
}

.aruh-hero-link:hover .aruh-read-more {
    border-bottom-width: 4px;
}

@media (max-width: 991px) {
    .aruh-hero,
    .aruh-hero-link,
    .aruh-content-wrap {
        min-height: 430px;
    }

    .aruh-content-wrap {
        padding: 38px 28px;
    }

    .aruh-content {
        width: 88%;
    }

    .aruh-title {
        font-size: clamp(34px, 6vw, 52px) !important;
    }
}

@media (max-width: 640px) {
    .aruh-hero,
    .aruh-hero-link,
    .aruh-content-wrap {
        min-height: 360px;
    }

    .aruh-overlay {
        background:
            linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.58) 58%, rgba(0,0,0,.18) 100%);
    }

    .aruh-content-wrap {
        padding: 25px 18px 28px;
    }

    .aruh-content {
        width: 100%;
    }

    .aruh-kicker-row {
        margin-bottom: 11px;
        font-size: 10px;
    }

    .aruh-kicker {
        padding: 6px 8px;
    }

    .aruh-title {
        font-size: clamp(29px, 9vw, 42px) !important;
        line-height: 1.02 !important;
    }

    .aruh-excerpt {
        margin-top: 12px !important;
        font-size: 15px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .aruh-read-more {
        margin-top: 14px;
        font-size: 11px;
    }
}
