/* ============================================
   VER V2 (DETAIL PAGE) - ADSENSE OPTIMIZED
   Two column layout: Sidebar left + Main content
   Based on nuevo_diseņo_propuesto.png with sidebar
   ============================================ */

:root {
    --primary-color: #2061a8;
    --primary-hover: #1a4f8a;
    --success-color: #28a745;
    --ad-orange: #ff6b35;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.2);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
}

/* ============================================
   TWO COLUMN LAYOUT (INVERTED: Content Left, Sidebar Right)
   ============================================ */
.ver-layout-v2 {
    display: grid;
    grid-template-columns: 1fr 300px; /* Content + Sidebar */
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.ver-sidebar-right {
    position: sticky;
    top: var(--spacing-md);
    height: fit-content;
}

.ver-main-column {
    min-width: 0;
}

/* ============================================
   SIDEBAR RIGHT: Promo + Search + Ad
   ============================================ */
.promo-box-v2 {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: var(--spacing-md);
}

.promo-link-v2 {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.promo-text-v2 {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333;
}

.search-container-v2 {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: var(--spacing-md);
}

.search-header-v2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-speed) ease;
}

.search-icon-v2 {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.search-form-v2 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group-v2 {
    display: flex;
    flex-direction: column;
}

.search-input-v2 {
    width: 100%;
    padding: 0.625rem;
    border: 2px solid #ddd;
    border-radius: calc(var(--border-radius) - 2px);
    font-size: 0.9375rem;
    transition: all var(--transition-speed) ease;
}

.search-input-v2:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-search-v2 {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: calc(var(--border-radius) - 2px);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: var(--spacing-sm);
    box-shadow: var(--box-shadow-sm);
}

.btn-search-v2:hover {
    background: var(--primary-hover);
}

.ad-sidebar-v2 {
    margin-top: var(--spacing-md);
}

/* ============================================
   VEHICLE HEADER (Title + Price + Location)
   Based on nuevo_diseņo_propuesto.png
   ============================================ */
.vehicle-header-v2 {
    background: white;
    padding-bottom: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--primary-color);
}

.vehicle-title-v2 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.vehicle-title-link-v2 {
    color: #333;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.vehicle-title-link-v2:hover {
    color: var(--primary-color);
}

.vehicle-meta-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: #555;
}

.vehicle-price-v2 {
    color: var(--success-color);
    font-size: 1.125rem;
}

.vehicle-price-v2 strong {
    color: #333;
    font-weight: 600;
}

.vehicle-meta-separator {
    color: #ccc;
    font-weight: 300;
}

.vehicle-location-v2 {
    color: #666;
}

.vehicle-location-v2 strong {
    color: #333;
    font-weight: 600;
}

/* ============================================
   ADSENSE CONTAINERS
   ============================================ */
.ad-container {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border: 2px dashed var(--ad-orange);
    border-radius: var(--border-radius);
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--ad-orange);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.ad-description {
    font-size: 0.65rem;
    color: #999;
    font-style: italic;
}

.ad-container-1 {
    min-height: 120px;
}

.ad-container-2 {
    min-height: 280px;
}

.ad-container-3 {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-color: #4a9eff;
    margin: var(--spacing-md) 0;
}

.ad-container-3 .ad-label {
    color: #4a9eff;
}

.ad-container-4 {
    min-height: 100px;
}

.ad-container-5 {
    min-height: 300px;
}

/* ============================================
   IMAGE GALLERY - THUMBNAILS + MAIN
   ============================================ */
.gallery-container-v2 {
    margin: var(--spacing-lg) 0;
}

.gallery-main-v2 {
    position: relative;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    margin-bottom: var(--spacing-sm);
}

.gallery-main-v2 img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
}

.gallery-thumbnails-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.gallery-thumbnail-v2 {
    position: relative;
    cursor: pointer;
    border-radius: calc(var(--border-radius) - 2px);
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all var(--transition-speed) ease;
    border: 3px solid transparent;
}

.gallery-thumbnail-v2:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-md);
}

.gallery-thumbnail-v2.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 97, 168, 0.2);
}

.gallery-thumbnail-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-controls-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.gallery-counter-v2 {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.gallery-nav-btn-v2 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.gallery-nav-btn-v2:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.gallery-nav-btn-v2 svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   VEHICLE DESCRIPTION
   ============================================ */
.vehicle-description-v2 {
    line-height: 1.8;
    color: #333;
    margin: var(--spacing-md) 0;
}

.publish-info-v2 {
    font-size: 0.875rem;
    color: #999;
    text-align: center;
    margin: var(--spacing-sm) 0;
}

/* ============================================
   CONTACT BUTTON
   ============================================ */
.contact-seller-btn-v2 {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: var(--spacing-lg) auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-sm);
}

.contact-seller-btn-v2:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

/* ============================================
   VIDEO CONTAINER
   ============================================ */
.video-container-v2 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-md);
    margin: var(--spacing-lg) 0;
}

.video-container-v2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   SELLER INFO
   ============================================ */
.seller-info-v2 {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
}

.seller-info-title-v2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid #dee2e6;
}

.seller-info-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.seller-info-item-v2 {
    display: flex;
    flex-direction: column;
}

.seller-info-label-v2 {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.seller-info-value-v2 {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* ============================================
   SOCIAL SHARE
   ============================================ */
.share-container-v2 {
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   SIMILAR VEHICLES (MINIS: 150x75px FIXED)
   ============================================ */
.similar-section-v2 {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.similar-title-v2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.similar-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--spacing-sm);
    justify-items: center;
}

.similar-item-v2 {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-sm);
    width: 160px;
    text-align: center;
}

.similar-item-v2:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.similar-link-v2 {
    text-decoration: none;
    color: #333;
    display: block;
}

.similar-image-v2 {
    width: 150px !important;
    height: 75px !important;
    object-fit: cover;
    display: block;
    margin: 5px auto 0;
    border-radius: calc(var(--border-radius) - 4px);
}

.similar-title-text-v2 {
    font-size: 0.8rem;
    padding: var(--spacing-xs);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-link-v2:hover .similar-title-text-v2 {
    color: var(--primary-color);
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-container-v2 {
    margin: var(--spacing-lg) 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .ver-layout-v2 {
        grid-template-columns: 1fr;
    }

    .ver-sidebar-right {
        position: static;
        order: 2;
    }

    .ver-main-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .ver-layout-v2 {
        padding: var(--spacing-sm);
    }

    .gallery-thumbnails-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-meta-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .vehicle-meta-separator {
        display: none;
    }

    .vehicle-title-v2 {
        font-size: 1.25rem;
    }

    .contact-seller-btn-v2 {
        width: 100%;
    }

    .similar-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .similar-item-v2 {
        width: 100%;
        max-width: 160px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-title-v2 {
    text-align: center;
    padding-bottom: 0.75rem;
    margin-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--primary-color);
}

.hero-title-v2 h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
}

.h1link-v2 {
    color: #333;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.h1link-v2:hover {
    color: var(--primary-color);
}

/* ============================================
   VEHICLE INFO COMPACT
   ============================================ */
.vehicle-info-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: var(--border-radius);
    margin: var(--spacing-md) 0;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.vehicle-price-compact {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--success-color);
}

.vehicle-location-compact {
    font-size: 1rem;
    color: #666;
}

/* ============================================
   ADSENSE CONTAINERS
   ============================================ */
.ad-container {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border: 2px dashed var(--ad-orange);
    border-radius: var(--border-radius);
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--ad-orange);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.ad-description {
    font-size: 0.65rem;
    color: #999;
    font-style: italic;
}

.ad-container-1 {
    min-height: 120px;
}

.ad-container-2 {
    min-height: 280px;
}

.ad-container-3 {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-color: #4a9eff;
    margin: var(--spacing-md) 0;
}

.ad-container-3 .ad-label {
    color: #4a9eff;
}

.ad-container-4 {
    min-height: 100px;
}

.ad-container-5 {
    min-height: 300px;
}

/* ============================================
   IMAGE GALLERY - THUMBNAILS + MAIN
   ============================================ */
.gallery-container-v2 {
    margin: var(--spacing-lg) 0;
}

.gallery-main-v2 {
    position: relative;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    margin-bottom: var(--spacing-sm);
}

.gallery-main-v2 img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
}

.gallery-thumbnails-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.gallery-thumbnail-v2 {
    position: relative;
    cursor: pointer;
    border-radius: calc(var(--border-radius) - 2px);
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all var(--transition-speed) ease;
    border: 3px solid transparent;
}

.gallery-thumbnail-v2:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-md);
}

.gallery-thumbnail-v2.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 97, 168, 0.2);
}

.gallery-thumbnail-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-controls-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.gallery-counter-v2 {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.gallery-nav-btn-v2 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.gallery-nav-btn-v2:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.gallery-nav-btn-v2 svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   VEHICLE DESCRIPTION
   ============================================ */
.vehicle-description-v2 {
    line-height: 1.8;
    color: #333;
    margin: var(--spacing-md) 0;
}

.publish-info-v2 {
    font-size: 0.875rem;
    color: #999;
    text-align: center;
    margin: var(--spacing-sm) 0;
}

/* ============================================
   CONTACT BUTTON
   ============================================ */
.contacto-box-v2 {
    background: white;
    padding: var(--spacing-md) 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: var(--spacing-md);
}

.contact-seller-btn-v2 {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: var(--spacing-xs) auto;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-sm);
}

.contact-seller-btn-v2:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

/* ============================================
   VIDEO CONTAINER
   ============================================ */
.video-container-v2 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-md);
    margin: var(--spacing-lg) 0;
}

.video-container-v2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   SELLER INFO
   ============================================ */
.seller-info-v2 {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
}

.seller-info-title-v2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid #dee2e6;
}

.seller-info-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.seller-info-item-v2 {
    display: flex;
    flex-direction: column;
}

.seller-info-label-v2 {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.seller-info-value-v2 {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* ============================================
   SOCIAL SHARE
   ============================================ */
.share-box-v2 {
    background: white;
    padding: var(--spacing-md) 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: var(--spacing-md);
}

.share-header-v2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-speed) ease;
}

.share-icon-v2 {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.st-inline-share-buttons,
.st-inline-share-buttons > div {
    display: flex !important;
    flex-wrap: wrap !important;
}

.st-btn {
    margin: 4px !important;
}

#st-1 .st-total.st-hidden {
    display: none !important;
}

/* ============================================
   SIMILAR VEHICLES
   ============================================ */
.similar-section-v2 {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.similar-title-v2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.similar-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--spacing-sm);
}

.similar-item-v2 {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-sm);
}

.similar-item-v2:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.similar-link-v2 {
    text-decoration: none;
    color: #333;
    display: block;
}

.similar-image-v2 {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.similar-title-text-v2 {
    font-size: 0.875rem;
    padding: var(--spacing-xs);
    text-align: center;
}

.similar-link-v2:hover .similar-title-text-v2 {
    color: var(--primary-color);
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-container-v2 {
    margin: var(--spacing-lg) 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .ver-single-column {
        padding: var(--spacing-sm);
    }

    .gallery-thumbnails-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-info-compact {
        flex-direction: column;
        text-align: center;
    }

    .contact-seller-btn-v2 {
        width: 100%;
    }

    .similar-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .hero-title-v2 h1 {
        font-size: 1.25rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
