/* --- PIXCY STUDIOS - IVORY & SOFT GOLD PASTEL THEME --- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
    --bg: #ffffff;
    --bg-alt: #f2f2f2; /* Clear light grey */
    --bg-pastel-1: #faf2e6; /* Soft blush/cream */
    --bg-pastel-2: #e8ece9; /* Soft grey-green */
    --bg-nav: rgba(230, 230, 230, 0.98); /* 20% grey for header tabs */
    --text: #2a2725;
    --muted: #7a7775;
    --gold: #c9a96e;
    --gold-light: rgba(201, 169, 110, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-light);
    transition: all 0.3s;
}

.logo {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
}

.logo span {
    color: var(--gold);
}

.header-socials {
    display: flex;
    gap: 1.5rem;
    border-left: 1px solid var(--gold-light);
    padding-left: 1.5rem;
}

.header-social-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.header-social-link:hover {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.admin-link {
    color: var(--gold) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 1px;
    background: var(--text);
    transition: all 0.3s;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    overflow: hidden;
    background: var(--bg);
    max-width: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 10vh;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 9vw, 7.5rem);
    font-style: italic;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--gold);
}

.hero-title span {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    display: block;
    letter-spacing: 2px;
}

.hero-sub {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, rgba(252, 251, 249, 0) 100%);
}

.btn-primary {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: .4s;
    border: 1px solid var(--text);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* --- PORTFOLIO --- */
.portfolio-wrapper {
    background: var(--bg-pastel-1);
    padding: 8rem 0;
}

.portfolio {
    padding: 0 6rem;
    max-width: 1800px;
    margin: 0 auto;
}

/* --- COMMON SECTIONS --- */
section {
    padding: 0 6rem;
    max-width: 1800px;
    margin: 0 auto;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 3rem;
}

/* --- SERVICES --- */
.services-wrapper {
    background: var(--bg-alt);
    padding: 8rem 6rem;
}

.services {
    padding: 0;
}

.svc-row {
    display: grid;
    grid-template-columns: 80px 300px 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--gold-light);
}

.svc-row:last-child {
    border-bottom: none;
}

.svc-img-container {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.svc-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s;
    filter: grayscale(15%);
}

.svc-row:hover .svc-img-container img {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.svc-row:last-child {
    border-bottom: none;
}

.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.8;
}

.svc-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-name {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

.svc-desc {
    max-width: 400px;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

/* --- PORTFOLIO & COUPLES --- */
.port-header {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.port-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-light);
}

.port-grid, .couples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 450px;
    gap: 2rem;
}

.p-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
    cursor: pointer;
}

.p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
    opacity: 0.95;
}

.p-item:hover img {
    transform: scale(1.03);
    opacity: 1;
}

.p-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: .4s;
    z-index: 10;
}

.p-item:hover::before {
    border-color: var(--gold);
    inset: 1rem;
}

.p1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.couple-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(252, 251, 249, 0.9), transparent);
    padding: 2.5rem 2rem;
    color: var(--text);
    z-index: 15;
}

.couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.couple-count {
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- TESTIMONIALS CAROUSEL --- */
.testimonials-wrapper {
    background: var(--bg-alt);
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.testimonials {
    padding: 0;
}

.testimonials .section-label,
.testimonials .section-title {
    padding: 0 6rem;
}

#testimonials-slider {
    margin-top: 3rem;
    overflow: hidden;
    cursor: grab;
}

#testimonials-slider:active {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    transition: transform 0.05s linear;
    padding: 1rem 0 2rem;
}

.review-card {
    width: clamp(220px, 60vw, 280px);
    flex-shrink: 0;
    background: var(--bg);
    border: 1px solid var(--gold-light);
    border-radius: 10px;
    padding: clamp(1.2rem, 4vw, 1.5rem);
    text-align: left;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.google-review-card {
    background: var(--bg);
    border: 1px solid var(--gold-light);
    border-radius: 8px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.google-reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-avatar {
    width: 45px;
    height: 45px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 500;
}

.google-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

.google-date {
    font-size: 0.8rem;
    color: var(--muted);
}

.google-icon {
    width: 24px;
    height: 24px;
}

.google-stars {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.google-text {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    line-height: 1.5;
    color: var(--text);
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.test-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.test-dot {
    width: 8px;
    height: 8px;
    background: var(--muted);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.test-dot.active {
    background: var(--gold);
    transform: scale(1.5);
}

/* --- ABOUT --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid var(--gold-light);
}

.about-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

/* --- CONTACT --- */
.contact-wrapper {
    background: var(--bg-pastel-2);
    padding: 8rem 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1800px;
    margin: 0 auto;
}

.info-grid {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    font-size: 2rem;
}

.info-item h4 {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
    color: var(--muted);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gold-light);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--bg);
    border: 1px solid var(--gold-light);
    padding: 1.2rem;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* --- FOOTER --- */
.footer {
    background: var(--text);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--bg);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5);
}

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close, .lightbox-nav {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover, .lightbox-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- MODAL --- */
.couple-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    overflow-y: auto;
    padding: 3rem;
}

.couple-modal.active {
    display: block;
}

.modal-content {
    background: var(--bg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
    position: relative;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--muted);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.modal-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- VIDEOS SECTION --- */
.videos-wrapper {
    background: var(--bg-alt);
    padding: 8rem 0;
    overflow: hidden;
}

.videos {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.videos .section-label,
.videos .section-title {
    padding: 0 6rem;
}

.videos-grid {
    column-count: 1;
    column-gap: 1.5rem;
    padding: 2rem 6rem;
    display: block;
    overflow: visible;
}

@media (min-width: 640px) {
    .videos-grid { column-count: 2; }
}

@media (min-width: 1024px) {
    .videos-grid { column-count: 3; }
}

.videos-grid::-webkit-scrollbar {
    display: none;
}

.yt-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    width: 100%;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(201,169,110,0.15);
}

.yt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.yt-thumb {
    position: relative;
    overflow: hidden;
    background: #111;
}

.yt-card.tall .yt-thumb { aspect-ratio: 4/5; }
.yt-card.square .yt-thumb { aspect-ratio: 1/1; }
.yt-card.wide .yt-thumb { aspect-ratio: 16/9; }

.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s;
}

.yt-card:hover .yt-thumb img {
    transform: scale(1.05);
}

.yt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: 0.3s;
}

.yt-card:hover .yt-overlay {
    background: rgba(0,0,0,0.4);
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.yt-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 4px; /* visually center play triangle */
}

.yt-card:hover .yt-play-btn {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.yt-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 500;
}

.videos-placeholder {
    text-align: center;
    color: var(--muted);
    padding: 4rem 0;
    font-size: 1rem;
    grid-column: 1/-1;
}

/* --- VIDEO MODAL --- */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
}

.video-modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.video-modal-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.video-modal-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- FOOTER SOCIALS --- */
footer {
    background: var(--bg-alt);
    text-align: center;
    padding: 3rem 4rem;
    font-size: 0.85rem;
    color: var(--muted);
    border-top: 1px solid var(--gold-light);
}

.footer-socials {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer-socials a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--text);
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(252, 251, 249, 0.98);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--gold-light);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1.5rem 3rem;
        border-bottom: 1px solid var(--gold-light);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title { font-size: 4rem; }
    .hero-title span { font-size: 3rem; }

    .svc-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .svc-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .svc-desc {
        text-align: center;
    }

    .port-grid, .couples-grid, .modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p1 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    nav { padding: 1.5rem; }
    .hero { padding: 0 1.5rem; }
    section { padding: 5rem 1.5rem; }
    .services-wrapper, .testimonials-wrapper, .contact-wrapper { padding: 5rem 1.5rem; }
    
    .hero-img { width: 100%; opacity: 0.3; }
    
    .port-grid, .couples-grid, .modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .videos .section-label,
    .videos .section-title {
        padding: 0 1.5rem;
    }
    .videos-grid {
        display: flex;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 2rem 1.5rem 4rem;
        column-count: auto;
        gap: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .videos-grid::-webkit-scrollbar {
        display: none;
    }
    .yt-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        margin-bottom: 0;
    }
    /* Force uniform aspect ratio for smooth horizontal slider on mobile */
    .yt-card.tall .yt-thumb,
    .yt-card.square .yt-thumb,
    .yt-card.wide .yt-thumb {
        aspect-ratio: 16/9;
    }
}
