/* =========================================================
   VIRALDADA HOMEPAGE
   Version 1.1 — IMAGE CROPPING FIX
   ========================================================= */

.vd-homepage {
    --vd-black: #111111;
    --vd-dark: #181818;
    --vd-white: #ffffff;
    --vd-text: #222222;
    --vd-muted: #777777;
    --vd-border: #e9e9e9;
    --vd-soft: #f7f7f8;
    --vd-accent: #ff3150;
    --vd-accent-dark: #e51f3d;
    --vd-radius: 16px;
    --vd-shadow: 0 10px 35px rgba(0,0,0,.08);

    background: #ffffff;
    color: var(--vd-text);
    overflow: hidden;
}

.vd-homepage *,
.vd-homepage *::before,
.vd-homepage *::after {
    box-sizing: border-box;
}

.vd-homepage img {
    max-width: 100%;
    height: auto;
}

.vd-homepage a {
    text-decoration: none;
}

.vd-homepage .container {
    position: relative;
}


/* =========================================================
   HERO
   ========================================================= */

.vd-hero {
    padding: 48px 0 55px;

    background:
        radial-gradient(circle at 85% 15%, rgba(255,49,80,.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.vd-hero-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.vd-kicker {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;

    color: var(--vd-accent);

    text-transform: uppercase;
}

.vd-hero-heading h1 {
    margin: 0;

    color: var(--vd-black);

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.8px;
}

.vd-hero-heading p {
    max-width: 600px;

    margin: 12px 0 0;

    color: var(--vd-muted);

    font-size: 16px;
}

.vd-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    flex-shrink: 0;

    padding: 9px 13px;

    border: 1px solid var(--vd-border);
    border-radius: 50px;

    background: #fff;
    color: #555;

    font-size: 12px;
    font-weight: 700;
}

.vd-live-badge > span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #28c76f;

    box-shadow: 0 0 0 5px rgba(40,199,111,.12);

    animation: vd-pulse 2s infinite;
}

@keyframes vd-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(.85);
    }
}


/* =========================================================
   HERO GRID
   ========================================================= */

.vd-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(320px, .95fr);

    gap: 18px;
}

.vd-hero-main {
    min-width: 0;
}


/* =========================================================
   HERO MAIN IMAGE
   NO CROPPING
   ========================================================= */

.vd-hero-image {
    position: relative;

    display: block;

    width: 100%;
    height: auto;

    min-height: 0;

    overflow: hidden;

    border-radius: var(--vd-radius);

    background: #1c1c1c;

    box-shadow: var(--vd-shadow);
}

.vd-hero-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    object-position: center;

    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.vd-hero-image:hover img {
    transform: scale(1.02);
}


/* HERO OVERLAY */

.vd-hero-gradient {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 25%,
            rgba(0,0,0,.12) 42%,
            rgba(0,0,0,.84) 100%
        );

    pointer-events: none;
}

.vd-trending-pill {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 9px 13px;

    border-radius: 50px;

    background: var(--vd-accent);
    color: #fff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;

    box-shadow: 0 8px 20px rgba(255,49,80,.25);
}

.vd-hero-arrow {
    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(255,255,255,.92);
    color: #111;

    font-size: 22px;

    opacity: 0;

    transform: translateY(6px);

    transition: all .3s ease;
}

.vd-hero-image:hover .vd-hero-arrow {
    opacity: 1;
    transform: translateY(0);
}

.vd-hero-content {
    position: absolute;

    right: 30px;
    bottom: 27px;
    left: 30px;

    color: #fff;
}

.vd-category {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--vd-accent);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;

    text-transform: uppercase;
}

.vd-category-light {
    color: #fff;
    opacity: .9;
}

.vd-hero-content h2 {
    max-width: 850px;

    margin: 0;

    color: #fff;

    font-size: clamp(25px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.8px;
}

.vd-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
}

.vd-dot {
    color: #aaa;
}


/* =========================================================
   HERO SECONDARY STORIES
   ========================================================= */

.vd-hero-side {
    display: grid;

    grid-template-rows: repeat(4, 1fr);

    gap: 18px;
}

.vd-hero-small {
    display: grid;

    grid-template-columns:
        145px
        minmax(0, 1fr);

    gap: 15px;

    min-width: 0;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--vd-border);
}

.vd-hero-small:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/* SECONDARY IMAGE — NO CROPPING */

.vd-hero-small-image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: auto;

    min-height: 100px;

    overflow: hidden;

    border-radius: 12px;

    background: #eee;
}

.vd-hero-small-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .45s ease;
}

.vd-hero-small:hover .vd-hero-small-image img {
    transform: scale(1.03);
}

.vd-hero-small-content {
    min-width: 0;
}

.vd-hero-small-content h3 {
    margin: 2px 0 9px;

    font-size: 17px;
    font-weight: 750;
    line-height: 1.25;
}

.vd-hero-small-content h3 a {
    color: #161616;

    transition: color .2s ease;
}

.vd-hero-small:hover h3 a {
    color: var(--vd-accent);
}

.vd-small-date {
    color: #999;
    font-size: 11px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.vd-section {
    padding: 72px 0;
}

.vd-section-soft {
    background: var(--vd-soft);
}

.vd-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;

    padding-bottom: 16px;

    border-bottom: 1px solid var(--vd-border);
}

.vd-section-heading {
    display: flex;
    align-items: center;

    gap: 0;
}

.vd-section-icon {
    display: none;
}

.vd-section-heading h2 {
    position: relative;

    margin: 0;

    padding-left: 15px;

    color: var(--vd-black);

    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.7px;
}

.vd-section-heading h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;
    bottom: 4px;

    width: 4px;

    border-radius: 10px;

    background: var(--vd-accent);
}

.vd-section-line {
    display: none;
}

.vd-view-all {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #333;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        color .2s ease,
        transform .2s ease;
}

.vd-view-all:hover {
    color: var(--vd-accent);

    transform: translateX(3px);
}


/* =========================================================
   CARDS
   ========================================================= */

.vd-grid {
    display: grid;

    gap: 22px;
}

.vd-grid-4 {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.vd-card {
    min-width: 0;
}


/* CARD IMAGE — NO CROPPING */

.vd-card-media {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: auto;

    min-height: 150px;

    overflow: hidden;

    border-radius: 13px;

    background: #eee;
}

.vd-card-media img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.vd-card:hover .vd-card-media img {
    transform: scale(1.025);
}

.vd-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.2)
        );

    opacity: 0;

    transition: opacity .3s ease;

    pointer-events: none;
}

.vd-card:hover .vd-card-overlay {
    opacity: 1;
}

.vd-card-body {
    padding: 15px 2px 0;
}

.vd-card-title {
    margin: 0;

    font-size: 18px;
    font-weight: 750;
    line-height: 1.3;
}

.vd-card-title a {
    color: #171717;

    transition: color .2s ease;
}

.vd-card-title a:hover {
    color: var(--vd-accent);
}

.vd-card-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 10px;

    color: #999;

    font-size: 11px;
}

.vd-read-label {
    position: absolute;

    right: 15px;
    bottom: 15px;

    z-index: 2;

    padding: 8px 12px;

    border-radius: 50px;

    background: #fff;
    color: #111;

    font-size: 11px;
    font-weight: 800;

    opacity: 0;

    transform: translateY(5px);

    transition: all .3s ease;
}

.vd-card-media:hover .vd-read-label {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   NO IMAGE
   ========================================================= */

.vd-no-image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    min-height: 100px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,49,80,.4),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #171717,
            #343434
        );

    color: #fff;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1px;
}

.vd-no-image-large {
    min-height: 400px;

    font-size: 30px;
}


/* =========================================================
   QUIZZES
   ========================================================= */

.vd-quiz-section {
    background: #111;

    color: #fff;
}

.vd-quiz-section .vd-section-heading h2 {
    color: #fff;
}

.vd-quiz-section .vd-section-icon {
    background: #222;
}

.vd-quiz-section .vd-view-all {
    color: #fff;
}

.vd-quiz-section .vd-view-all:hover {
    color: #ff5470;
}

.vd-quiz-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.vd-quiz-card {
    overflow: hidden;

    border-radius: 15px;

    background: #1b1b1b;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.vd-quiz-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.3);
}


/* QUIZ IMAGE — NO CROPPING */

.vd-quiz-image {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: auto;

    min-height: 180px;

    overflow: hidden;

    background: #222;
}

.vd-quiz-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .55s ease;
}

.vd-quiz-card:hover .vd-quiz-image img {
    transform: scale(1.025);
}

.vd-quiz-play {
    position: absolute;

    right: 15px;
    bottom: 15px;

    padding: 9px 13px;

    border-radius: 50px;

    background: var(--vd-accent);
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.vd-quiz-body {
    padding: 18px;
}

.vd-quiz-body h3 {
    margin: 0;

    font-size: 20px;
    line-height: 1.3;
}

.vd-quiz-body h3 a {
    color: #fff;
}

.vd-quiz-body h3 a:hover {
    color: #ff5470;
}


/* =========================================================
   LATEST STORIES
   ========================================================= */

.vd-latest-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.vd-latest-item {
    display: grid;

    grid-template-columns:
        190px
        minmax(0, 1fr);

    gap: 18px;

    min-width: 0;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--vd-border);
}


/* LATEST IMAGE — NO CROPPING */

.vd-latest-image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: auto;

    min-height: 100px;

    overflow: hidden;

    border-radius: 12px;

    background: #eee;
}

.vd-latest-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition: transform .45s ease;
}

.vd-latest-item:hover .vd-latest-image img {
    transform: scale(1.025);
}

.vd-latest-content h3 {
    margin: 2px 0 8px;

    font-size: 19px;
    line-height: 1.3;
}

.vd-latest-content h3 a {
    color: #171717;
}

.vd-latest-content h3 a:hover {
    color: var(--vd-accent);
}

.vd-latest-content p {
    margin: 0;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   BRAND CTA
   ========================================================= */

.vd-brand-cta {
    padding: 30px 0 75px;
}

.vd-brand-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 42px 45px;

    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255,49,80,.35),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #111 0%,
            #202020 100%
        );
}

.vd-brand-cta-inner .vd-kicker {
    color: #ff5470;
}

.vd-brand-cta-inner h2 {
    max-width: 700px;

    margin: 0;

    color: #fff;

    font-size: clamp(25px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.8px;
}

.vd-brand-cta-inner p {
    margin: 12px 0 0;

    color: rgba(255,255,255,.65);
}

.vd-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 14px 20px;

    border-radius: 50px;

    background: var(--vd-accent);
    color: #fff;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(255,49,80,.25);

    transition:
        transform .25s ease,
        background .25s ease;
}

.vd-cta-button:hover {
    color: #fff;

    background: var(--vd-accent-dark);

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .vd-hero-grid {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(300px, .9fr);
    }

    .vd-hero-small {
        grid-template-columns:
            125px
            minmax(0, 1fr);
    }

    .vd-hero-small-image {
        min-height: 90px;
    }

    .vd-hero-small-content h3 {
        font-size: 15px;
    }

    .vd-latest-item {
        grid-template-columns:
            160px
            minmax(0, 1fr);
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 991px) {

    .vd-hero {
        padding-top: 35px;
    }

    .vd-hero-grid {
        grid-template-columns: 1fr;
    }

    .vd-hero-side {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows: auto;

        gap: 20px;
    }

    .vd-hero-small {
        grid-template-columns:
            120px
            minmax(0, 1fr);

        padding-bottom: 20px;
    }

    .vd-grid-4 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vd-latest-list {
        grid-template-columns: 1fr;
    }

    .vd-quiz-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .vd-hero {
        padding: 28px 0 40px;
    }

    .vd-hero-heading {
        display: block;

        margin-bottom: 20px;
    }

    .vd-hero-heading h1 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .vd-hero-heading p {
        font-size: 14px;
    }

    .vd-live-badge {
        margin-top: 15px;
    }


    /* HERO IMAGE */

    .vd-hero-image {
        height: auto;

        min-height: 0;

        border-radius: 13px;
    }

    .vd-hero-image img {
        height: auto;

        object-fit: contain;
    }

    .vd-hero-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .vd-hero-content h2 {
        font-size: 26px;

        line-height: 1.12;
    }

    .vd-hero-arrow {
        display: none;
    }


    /* HERO SIDE */

    .vd-hero-side {
        display: block;

        margin-top: 18px;
    }

    .vd-hero-small {
        grid-template-columns:
            105px
            minmax(0, 1fr);

        gap: 13px;

        padding: 14px 0;
    }

    .vd-hero-small:first-child {
        padding-top: 0;
    }

    .vd-hero-small-image {
        min-height: 80px;

        border-radius: 10px;
    }


    /* SECTIONS */

    .vd-section {
        padding: 48px 0;
    }

    .vd-section-header {
        margin-bottom: 22px;
    }

    .vd-section-heading {
        gap: 10px;
    }

    .vd-section-heading h2 {
        font-size: 24px;
    }

    .vd-section-heading h2::before {
        top: 3px;
        bottom: 3px;
    }

    .vd-view-all {
        font-size: 11px;
    }


    /* CARDS */

    .vd-grid-4 {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .vd-card-media {
        height: auto;

        min-height: 0;

        border-radius: 12px;
    }

    .vd-card-media img {
        height: auto;

        object-fit: contain;
    }

    .vd-card-title {
        font-size: 19px;
    }


    /* QUIZZES */

    .vd-quiz-grid {
        grid-template-columns: 1fr;
    }

    .vd-quiz-image {
        height: auto;

        min-height: 0;
    }

    .vd-quiz-image img {
        height: auto;

        object-fit: contain;
    }


    /* LATEST */

    .vd-latest-item {
        grid-template-columns:
            105px
            minmax(0, 1fr);

        gap: 13px;
    }

    .vd-latest-image {
        height: auto;

        min-height: 0;

        border-radius: 10px;
    }

    .vd-latest-image img {
        height: auto;

        object-fit: contain;
    }

    .vd-latest-content p {
        display: none;
    }

    .vd-latest-content h3 {
        font-size: 16px;

        margin-top: 0;
    }

    .vd-latest-content .vd-card-meta {
        margin-top: 7px;
    }


    /* CTA */

    .vd-brand-cta {
        padding: 15px 0 50px;
    }

    .vd-brand-cta-inner {
        display: block;

        padding: 30px 25px;

        border-radius: 15px;
    }

    .vd-brand-cta-inner h2 {
        font-size: 27px;
    }

    .vd-brand-cta-inner p {
        font-size: 13px;
    }

    .vd-cta-button {
        margin-top: 20px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .vd-hero-heading h1 {
        font-size: 30px;
    }

    .vd-hero-image {
        height: auto;

        min-height: 0;
    }

    .vd-hero-content h2 {
        font-size: 23px;
    }

    .vd-hero-meta {
        font-size: 10px;
    }

    .vd-section {
        padding: 40px 0;
    }

    .vd-section-heading h2 {
        font-size: 21px;
    }

    .vd-view-all {
        font-size: 10px;
    }

    .vd-card-media {
        height: auto;

        min-height: 0;
    }

    .vd-card-title {
        font-size: 18px;
    }

    .vd-latest-item {
        grid-template-columns:
            90px
            minmax(0, 1fr);
    }

    .vd-latest-image {
        height: auto;

        min-height: 0;
    }

    .vd-latest-content h3 {
        font-size: 15px;
    }

    .vd-latest-content .vd-card-meta {
        font-size: 9px;
    }

    .vd-brand-cta-inner h2 {
        font-size: 24px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .vd-homepage *,
    .vd-homepage *::before,
    .vd-homepage *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    .vd-homepage {
        background: #fff;
    }

    .vd-hero,
    .vd-section,
    .vd-brand-cta {
        padding: 20px 0;
    }

    .vd-hero-grid,
    .vd-grid-4,
    .vd-quiz-grid {
        display: block;
    }
}