/**
 * Hero Section Styles
 * Nowy Tydzień Theme
 * 
 * @package NowyTydzien
 * @author Rafał Dziewa
 * @link https://dziewa.pl/
 * @version 2.0.0
 */

/* ============================================
   HERO SECTION LAYOUT
   ============================================ */
.hero-section {
    background: var(--bg-primary);
    padding: 0;
    margin-bottom: var(--space-2xl);
    margin-top: var(--space-lg);
}

.hero-wrapper {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 0;
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ============================================
   HERO SLIDER (Main)
   ============================================ */
.hero-main {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 380px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: auto;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 5;
}

.hero-main .hero-thumbnail {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.hero-main .hero-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-main:hover .hero-thumbnail img {
    transform: scale(1.05);
}

/* ============================================
   HERO CONTENT OVERLAY
   ============================================ */
.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
}

.hero-main-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.3;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
}

.hero-main-title a {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.hero-main-title a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-content-overlay {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .hero-main-title {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .hero-main-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 20px;
        line-height: 1.25;
    }
}

/* ============================================
   HERO SIDEBAR
   ============================================ */
.hero-sidebar {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.hero-list-item {
    position: relative;
    padding: 8px 0;
    line-height: 1.35;
    border-bottom: 1px solid var(--border-color);
}

.hero-list-item:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-md);
}

.hero-list-item a {
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    display: block;
    transition: color var(--transition-fast);
}

.hero-list-item a:hover {
    color: var(--color-primary);
}

.news-badge {
    display: inline-block;
    background: #ff6600;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-right: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-more-link {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-top: auto;
    transition: all var(--transition-base);
}

.see-more-link:hover {
    background: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
}

/* ============================================
   HERO SLIDER CONTROLS
   ============================================ */
.hero-slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 15;
    pointer-events: auto;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.slider-dot.active,
.slider-dot:hover {
    background: #fff;
    transform: scale(1.4);
}

@media (max-width: 640px) {
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 36px;
    }
}

/* ============================================
   HERO SIDEBAR (News List) - REMOVED DUPLICATE

@media (max-width: 768px) {
    .hero-list-item a {
        font-size: 13px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero-list-item a {
        font-size: 12px;
        line-height: 1.25;
    }
}
   ============================================ */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-list-item {
    position: relative;
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast), 
                border-color var(--transition-fast),
                transform var(--transition-fast);
}

.hero-list-item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    transform: translateX(4px);
}

.hero-list-item__badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 2px var(--space-sm);
    background: var(--color-primary);
    color: var(--text-light);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.hero-list-item__thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-placeholder);
}

.hero-list-item__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.hero-list-item:hover .hero-list-item__thumbnail img {
    transform: scale(1.1);
}

.hero-list-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-list-item__title {
    margin: 0 0 var(--space-xs);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-list-item__title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.hero-list-item__title a:hover {
    color: var(--color-primary);
}

.hero-list-item__meta {
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
}

@media (max-width: 1024px) {
    .hero-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .hero-sidebar {
        grid-template-columns: 1fr;
    }
    
    .hero-list-item__thumbnail {
        width: 80px;
        height: 60px;
    }
}

/* ============================================
   HERO LOADING STATE
   ============================================ */
.hero-slider.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-placeholder);
}

.hero-slider.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--color-primary);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   HERO SECTION V2 - Magazynowy Layout
   3 kolumny: Featured (55%) | Stacked (25%) | Sidebar (20%)
   ============================================ */
.hero-section-v2 {
    background: var(--bg-primary);
    padding: 0;
    margin-bottom: var(--space-lg);
    margin-top: var(--space-xs);
}

.hero-v2-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
}

.hero-v2-link-overlay:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.hero-v2-wrapper {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 1fr 1fr;
    grid-template-rows: 480px;
    gap: var(--space-sm);
}

/* ── Featured (kolumna 1) ── */
.hero-v2-featured {
    position: relative;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    grid-column: 1;
    grid-row: 1;
}

.hero-v2-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.8px;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(225, 27, 34, 0.4);
}

.hero-v2-thumbnail {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-v2-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.hero-v2-featured:hover .hero-v2-thumbnail img {
    transform: scale(1.04);
}

.hero-v2-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-lg) var(--space-lg);
    background: linear-gradient(to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.68) 15%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.22) 55%,
        rgba(0,0,0,0.08) 75%,
        rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-v2-category {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    backdrop-filter: blur(4px);
}

.hero-v2-title {
    margin: 0 0 var(--space-xs);
    font-size: 28px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-serif);
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-v2-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--font-size-sm);
}

.hero-v2-author {
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.9);
}

.hero-v2-date {
    opacity: 0.7;
}

/* ── Stacked cards (kolumna 2) ── */
.hero-v2-stacked {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    grid-column: 2;
    grid-row: 1;
}

.hero-v2-stacked-item {
    position: relative;
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-v2-stacked-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-v2-stacked-thumb {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-v2-stacked-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-v2-stacked-item:hover .hero-v2-stacked-thumb img {
    transform: scale(1.06);
}

.hero-v2-stacked-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-md) var(--space-sm);
    background: linear-gradient(to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.72) 15%,
        rgba(0,0,0,0.50) 35%,
        rgba(0,0,0,0.28) 55%,
        rgba(0,0,0,0.10) 75%,
        rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-v2-stacked-category {
    display: inline-block;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.hero-v2-stacked-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Sidebar lista (kolumna 3) ── */
.hero-v2-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-column: 3;
    grid-row: 1;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 6px var(--space-md);
    overflow: hidden;
    min-height: 0;
}

.hero-v2-sidebar-heading {
    margin: 0 0 var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-primary);
}

/* Tabs */
.hero-v2-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
    position: relative;
}

.hero-v2-tab {
    flex: 1;
    padding: 6px 4px;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-align: center;
}

.hero-v2-tab:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.03);
}

.hero-v2-tab--active {
    color: #fff;
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    box-shadow: none;
    position: relative;
}

.hero-v2-tab--active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-secondary-dark);
}

.hero-v2-tab:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.hero-v2-tab-panel {
    display: none;
}

.hero-v2-tab-panel--active {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    overflow: hidden;
    min-height: 0;
    margin-top: 6px;
    padding-top: 4px;
    border-top: 2px solid var(--color-secondary-dark);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-v2-tab-panel--active::-webkit-scrollbar {
    display: none;
}

.hero-v2-list-item {
    position: relative;
    display: grid;
    grid-template-columns: 16px 46px 1fr;
    align-items: center;
    gap: 5px;
    padding: 3px 0;
    border-bottom: 1px solid var(--border-color-light);
    transition: background-color var(--transition-fast);
}

.hero-v2-list-item:last-child {
    border-bottom: none;
}

.hero-v2-list-item:hover {
    background: rgba(0,0,0,0.03);
}

.hero-v2-list-item.no-thumb {
    grid-template-columns: 16px 1fr;
}

.hero-v2-list-item.no-thumb .hero-v2-list-title {
    grid-column: 2;
}

.hero-v2-list-number {
    grid-column: 1;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    opacity: 0.4;
    line-height: 1;
    text-align: center;
}

.hero-v2-list-thumbnail {
    grid-column: 2;
    width: 46px;
    height: 32px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.hero-v2-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.hero-v2-list-item:hover .hero-v2-list-thumbnail img {
    transform: scale(1.1);
}

.hero-v2-list-title {
    grid-column: 3;
    margin: 0;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-primary);
}

/* Text-only list items (Najnowsze tab) — MUSI być po bazowych regułach */
.hero-v2-list-item.hero-v2-list-item--text {
    grid-template-columns: 16px 1fr;
}

.hero-v2-list-item--text .hero-v2-list-number {
    font-size: 12px;
}

.hero-v2-list-text {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    overflow: hidden;
}

.hero-v2-list-text .hero-v2-list-title {
    grid-column: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
}

.hero-v2-list-date {
    font-size: 10px;
    color: var(--text-tertiary);
    line-height: 1.2;
}

/* ── Per-tab overrides ── */

/* Nie przegap: większe miniaturki, więcej przestrzeni na zdjęcie */
#tab-nieprzegap .hero-v2-list-item {
    grid-template-columns: 16px 64px 1fr;
    gap: 6px;
    padding: 4px 0;
}

#tab-nieprzegap .hero-v2-list-thumbnail {
    width: 64px;
    height: 44px;
}

#tab-nieprzegap .hero-v2-list-item.no-thumb {
    grid-template-columns: 16px 1fr;
}

/* Najnowsze: kompaktowy tekst, więcej pozycji */
#tab-najnowsze .hero-v2-list-item {
    padding: 3px 0;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .hero-v2-wrapper {
        grid-template-columns: 55% 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .hero-v2-featured {
        min-height: 360px;
    }

    .hero-v2-stacked {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-v2-sidebar {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-sm);
        padding: var(--space-sm) var(--space-md);
    }

    .hero-v2-sidebar-heading {
        width: 100%;
        margin-bottom: var(--space-sm);
        padding-bottom: var(--space-sm);
    }

    .hero-v2-list-item {
        flex: 1 1 calc(50% - var(--space-md));
        border-bottom: none;
        padding: var(--space-sm);
        border-radius: var(--radius-sm);
    }

    .hero-v2-list-item:hover {
        background: rgba(0,0,0,0.04);
    }
}

@media (max-width: 768px) {
    .hero-section-v2 {
        margin-top: -10px;
        margin-bottom: var(--space-sm);
    }

    .hero-v2-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
        padding: 0;
    }

    /* Featured — duży, full-width, pod menu */
    .hero-v2-featured {
        position: relative;
        grid-column: 1;
        grid-row: 1;
        min-height: 0;
        aspect-ratio: 1 / 1;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .hero-v2-featured .hero-v2-thumbnail,
    .hero-v2-featured .hero-v2-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-v2-title {
        font-size: 22px;
    }

    /* Stacked — mniejsze */
    .hero-v2-stacked {
        grid-column: 1;
        grid-row: 2;
        flex-direction: column;
        gap: 14px;
    }

    .hero-v2-stacked-item {
        min-height: 0;
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-md);
        box-shadow: none;
    }

    .hero-v2-stacked-item:hover {
        transform: none;
        box-shadow: none;
    }

    .hero-v2-stacked-title {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }

    .hero-v2-stacked-category {
        font-size: 11px;
    }

    .hero-v2-stacked-content {
        padding: var(--space-md) var(--space-md) var(--space-sm);
    }

    .hero-v2-sidebar {
        grid-column: 1;
        grid-row: 3;
        flex-direction: column;
        gap: 0;
    }

    .hero-v2-list-item {
        flex: unset;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--border-color-light);
        border-radius: 0;
    }

    .hero-v2-list-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero-v2-featured {
        aspect-ratio: 3 / 2.9;
    }

    .hero-v2-stacked-item {
        aspect-ratio: 16 / 9;
    }

    .hero-v2-title {
        font-size: 18px;
    }

    .hero-v2-badge {
        top: var(--space-sm);
        left: var(--space-sm);
        padding: 4px 10px;
        font-size: 10px;
    }

    .hero-v2-stacked {
        flex-direction: column;
    }

    .hero-v2-list-number {
        font-size: 16px;
    }

    .hero-v2-list-thumbnail {
        width: 60px;
        height: 42px;
    }
}
