.rgvln-wrapper { display: flex; flex-direction: column; gap: 40px; }

.rgvln-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #eee;
}

.rgvln-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -2px;
}

.rgvln-tab-btn:hover {
    color: #333;
}

.rgvln-tab-btn.rgvln-tab-active {
    color: #1a1a1a;
    border-bottom-color: #ffd166;
}

@media (max-width: 600px) {
    .rgvln-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }
    .rgvln-tabs::-webkit-scrollbar {
        display: none;
    }
    .rgvln-tab-btn {
        font-size: 0.85rem;
        padding: 8px 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.rgvln-tab-panel {
    display: none;
}

.rgvln-tab-panel.rgvln-tab-panel-active {
    display: block;
}

.rgvln-source-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.rgvln-featured {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.rgvln-hero-card {
    position: relative;
    flex: 2;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-color: #222;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rgvln-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.28);
}

.rgvln-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 15%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.05) 100%);
}

.rgvln-hero-title {
    font-size: 1.5rem;
    margin: 8px 0;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff !important;
}

.rgvln-side-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rgvln-side-card {
    position: relative;
    flex: 1;
    min-height: 110px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-color: #222;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rgvln-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.rgvln-side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 20%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.05) 100%);
}

.rgvln-side-title {
    font-size: 0.9rem;
    margin: 4px 0;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff !important;
}

@media (max-width: 782px) {
    .rgvln-featured {
        flex-direction: column;
    }
    .rgvln-hero-card {
        min-height: 260px;
    }
    .rgvln-side-stack {
        flex-direction: row;
        overflow-x: auto;
    }
    .rgvln-side-card {
        min-width: 200px;
        min-height: 140px;
    }
}

.rgvln-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.rgvln-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 12px;
    flex: 1;
    scrollbar-width: thin;
}

.rgvln-card {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-color: #222;
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rgvln-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.28);
}

.rgvln-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 10%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
    transition: background 0.3s ease;
}

.rgvln-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.94) 20%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.15) 100%);
}

.rgvln-card-overlay {
    position: relative;
    z-index: 1;
    padding: 16px;
    width: 100%;
}

.rgvln-wrapper .rgvln-card-source {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffd166 !important;
    font-weight: 700;
}

.rgvln-wrapper .rgvln-card-title {
    font-size: 1.05rem;
    margin: 6px 0;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff !important;
}

.rgvln-wrapper .rgvln-card-teaser {
    font-size: 0.8rem;
    color: #ffffff !important;
    margin: 0 0 10px;
    line-height: 1.4;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.rgvln-card:hover .rgvln-card-teaser {
    max-height: 80px;
    opacity: 1;
}

.rgvln-card-readmore {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid #ffd166;
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.rgvln-card:hover .rgvln-card-readmore {
    opacity: 1;
    transform: translateY(0);
}

.rgvln-arrow {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: background 0.2s ease;
    z-index: 2;
}

.rgvln-arrow:hover { background: #f2f2f2; }
.rgvln-arrow-left { margin-right: 8px; }
.rgvln-arrow-right { margin-left: 8px; }

@media (max-width: 600px) {
    .rgvln-card { width: 220px; height: 300px; }
    .rgvln-arrow { display: none; }
}
