/* ============================================================================
   Kabuki Fundraising — VDK Campaign Design (v3 – pure PHP template)
   ============================================================================ */

/* Hide default WooCommerce markup on VDK campaign pages so the page reads as
   a single narrative instead of a product listing. */
.vdk-campaign .cart,
.vdk-campaign .single_add_to_cart_button,
.vdk-campaign form.cart,
.vdk-campaign .woocommerce-tabs,
.vdk-campaign .related.products,
.vdk-campaign .product_meta {
    display: none !important;
}

:root {
    /* Brand-aligned palette: primary is the saturated mid-green used for CTAs,
       the hero wash and the milestone band; secondary is a slightly deeper
       shade for hover/border depth. */
    --kabuki-primary: #3aaa35;
    --kabuki-primary-deep: #2d8a2a;
    --kabuki-secondary: #1a5940;
    --kabuki-accent: #F2C94C;
    --kabuki-accent-light: #FFD966;
    --kabuki-success: #28a745;
    --kabuki-green-bright: #5a9e3c;
    --progress-gradient: linear-gradient(90deg, #3aaa35 0%, #F2C94C 100%);

    --text-primary: #1a202c;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --border-color: #E2E8F0;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;

    --font-primary: 'Lexend', system-ui, -apple-system, sans-serif;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 30px;
    --font-size-3xl: 42px;
    --line-height-base: 1.65;
    --line-height-tight: 1.25;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 24px -4px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 8px 30px rgba(2, 6, 23, 0.07);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

/* ============================================================================
   GLOBAL VDK PAGE
   ============================================================================ */

.vdk-campaign {
    font-family: var(--font-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    background: var(--bg-white);
    padding-bottom: 64px;
}

.vdk-campaign *,
.vdk-campaign *::before,
.vdk-campaign *::after {
    font-family: inherit;
}

.vdk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ============================================================================
   GREEN BAND — hero + milestone share a continuous green background
   ============================================================================ */

.vdk-band {
    padding: 32px 0 0;
    background: transparent;
}

.vdk-band .vdk-container {
    /* Let the hero + milestone feel like one stacked card. The hero has
       rounded top corners and the milestone has rounded bottom corners, so
       together they create the rounded green block from the mockup. */
    display: block;
}

/* ============================================================================
   CONTENT — white story card overlapping the green band
   ============================================================================ */

.vdk-content {
    padding: 0 0 24px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

/* ============================================================================
   SECTIONS — 2-column body: tabs + panels on the left, sidebar on the right
   ============================================================================ */

.vdk-sections {
    padding: 24px 0 48px;
}

.vdk-sections__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}

.vdk-sections__main {
    min-width: 0;
}

.vdk-sections__sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vdk-tab-panel {
    margin-top: 24px;
}

.vdk-tab-hidden {
    display: none !important;
}

.vdk-panel__intro {
    margin: 20px 0 16px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.vdk-story-full {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.7;
}

.vdk-story-full h2,
.vdk-story-full h3 {
    font-family: 'Cardo', 'Playfair Display', Georgia, serif;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 28px 0 12px;
}

.vdk-story-full h2 { font-size: clamp(26px, 2vw, 34px); font-weight: 700; }
.vdk-story-full h3 { font-size: clamp(20px, 1.5vw, 24px); font-weight: 700; }

.vdk-story-full p,
.vdk-story-full ul,
.vdk-story-full ol { margin: 0 0 14px; }

.vdk-empty {
    color: var(--text-muted);
    font-size: 15px;
    margin: 16px 0 0;
}

/* ============================================================================
   HERO — full-width banner with featured image + title overlay
   ============================================================================ */

.vdk-hero--banner {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    /* Flat bottom so the hero merges into the green milestone band below. */
    border-radius: 18px 18px 0 0;
    background-size: cover;
    background-position: right center;
    background-color: var(--kabuki-primary);
    display: block;
}

.vdk-hero__overlay {
    position: absolute;
    inset: 0;
    /* Strong green wash on the left 40% only; sharp falloff so the subject
       on the right stays crisp and visible. */
    background:
        linear-gradient(90deg, rgba(58, 170, 53, 0.95) 0%, rgba(58, 170, 53, 0.82) 28%, rgba(58, 170, 53, 0.28) 46%, rgba(58, 170, 53, 0.00) 62%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.00) 50%);
    pointer-events: none;
}

.vdk-hero__content {
    position: absolute;
    left: 0;
    top: 0;
    width: min(46%, 520px);
    padding: 58px 40px 28px;
    z-index: 1;
}

.vdk-hero__title {
    font-family: 'Cardo', 'Playfair Display', Georgia, serif;
    color: #e6ec7a;
    font-size: clamp(38px, 3vw, 58px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,.45);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Legacy .vdk-hero class compatibility */
.vdk-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.vdk-hero iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

.vdk-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================================
   MILESTONE PROGRESS BAR
   ============================================================================ */

/* The milestone sits inside the hero's green band. The hero has only top-side
   rounded corners, the milestone wrapper closes the band with bottom-side
   rounded corners, so together they read as one stacked green card. */
.vdk-band .vdk-milestone {
    background: var(--kabuki-primary);
    border: 0;
    box-shadow: none;
    border-radius: 0 0 18px 18px;
    padding: 26px 32px 34px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.vdk-milestone__labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 0;
}

.vdk-milestone__label {
    font-size: 13px;
    font-weight: 600;
    color: #0f3821;
    white-space: nowrap;
    text-align: left;
    flex: 1;
    letter-spacing: 0;
    position: relative;
    padding-left: 10px;
}

.vdk-milestone__label::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 1px;
    width: 1px;
    height: 11px;
    background: #0f3821;
}

.vdk-milestone__track {
    position: relative;
    width: 100%;
    height: 26px;
    background: #fbf3bf;
    border: 2px solid #c7b64e;
    border-radius: var(--radius-full);
    overflow: visible;
    margin-bottom: 14px;
}

.vdk-milestone__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1a5940 0%, #4BB543 100%);
    border-radius: var(--radius-full);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vdk-milestone__handle {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 3px solid #4BB543;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    flex-shrink: 0;
    margin-right: -11px;
    position: relative;
    z-index: 1;
}

.vdk-milestone__raised {
    font-size: 16px;
    color: #0f3821;
    font-weight: 600;
    margin-top: 10px;
}

.vdk-milestone__raised strong {
    color: #0f3821;
    font-weight: 800;
    font-size: 18px;
}

/* ============================================================================
   STORY CARD — white card with video thumbnail + CTA
   ============================================================================ */

.vdk-story {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.vdk-story--card {
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.10);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 44px 48px;
    position: relative;
    z-index: 3;
    background: var(--bg-white);
}

.vdk-story__body {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.vdk-story__text {
    flex: 1;
    min-width: 0;
}

.vdk-story__text h2 {
    font-family: 'Cardo', 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 2.6vw, 46px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.vdk-story__text h3 {
    font-family: 'Cardo', 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 1.6vw, 28px);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.005em;
}

.vdk-story__text p,
.vdk-story p {
    font-size: 17px;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 16px;
}

.vdk-story blockquote {
    border-left: 3px solid var(--kabuki-primary);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--bg-light);
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.vdk-story ul { list-style: none; padding: 0; margin: var(--space-md) 0; }
.vdk-story ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-secondary);
}
.vdk-story ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--kabuki-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / 10px;
}

/* Video thumbnail circle */
.vdk-story__media {
    flex-shrink: 0;
    align-self: center;
}

.vdk-story__video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 0;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15);
    background: var(--bg-light);
    padding: 0;
}

.vdk-story__video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bright white play button, centered over the thumbnail, with the play
   triangle in the primary brand green — matches the mockup. */
.vdk-story__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.vdk-story__play svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
    fill: var(--kabuki-primary);
}

.vdk-story__video-thumb:hover .vdk-story__play {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.3);
}

/* Story footer with CTA */
.vdk-story__footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-sm);
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* CTA button */
.vdk-story__cta {
    display: inline-block;
    padding: 12px 34px;
    background: var(--kabuki-green-bright);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background var(--transition-base), transform var(--transition-base);
    box-shadow: 0 4px 14px rgba(90,158,60,.25);
}

.vdk-story__cta:hover {
    background: #4a8e2c;
    transform: translateY(-1px);
    color: #fff;
}

/* Story gallery */
.vdk-story-gallery { margin-top: 40px; }
.vdk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.vdk-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Lightbox */
.vdk-story__lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0,0,0,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.vdk-story__lightbox[hidden] { display: none; }

.vdk-story__lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.vdk-story__lightbox-close {
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================================
   DONOR PODIUM — top-3 colored cards
   ============================================================================ */

.vdk-podium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: end;
    margin-bottom: var(--space-lg);
}

.vdk-podium__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    padding: 16px 12px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: var(--kabuki-green-bright);
    transition: transform var(--transition-fast);
}

/* Classic podium: #1 center tallest, #2 left mid, #3 right lowest (bottoms aligned). */
.vdk-podium__card--rank-1 {
    background: #6db84e;
    min-height: 220px;
    padding-top: 28px;
    padding-bottom: 20px;
}

.vdk-podium__card--rank-2 {
    background: #5a9e3c;
    min-height: 168px;
}

.vdk-podium__card--rank-3 {
    background: #a4d080;
    min-height: 132px;
}

.vdk-podium__card--rank-1 .vdk-podium__rank {
    font-size: 40px;
}

.vdk-podium__card:hover {
    transform: translateY(-2px);
}

.vdk-podium__rank {
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 1px;
    color: var(--kabuki-accent-light, #ffd966);
}

.vdk-podium__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vdk-podium__amount {
    font-weight: 800;
    font-size: 36px;
    font-style: italic;
    white-space: nowrap;
    line-height: 1;
}

/* ============================================================================
   TABS
   ============================================================================ */

.vdk-campaign-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: baseline;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin: 32px 0 var(--space-md);
}

.vdk-campaign-tab {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.1;
    padding-bottom: 2px;
    border-bottom: 3px solid transparent;
    margin-bottom: -12px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.vdk-campaign-tab sup {
    font-size: 0.42em;
    vertical-align: super;
    margin-left: 3px;
    color: inherit;
}

.vdk-campaign-tab.is-active {
    color: #111827;
    font-weight: 700;
    border-bottom-color: #111827;
}

.vdk-campaign-tab:hover:not(.is-active) {
    color: #4a5568;
}

/* ============================================================================
   DONOR LIST — textual rows under the podium
   ============================================================================ */

.vdk-donor-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vdk-donor-list-widget__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.vdk-donor-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.vdk-donor-row__meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-shrink: 0;
}

.vdk-donor-row__date {
    font-size: 13px;
    color: var(--text-muted, #718096);
}

.vdk-donor-row:last-child {
    border-bottom: 0;
}

.vdk-donor-row__name {
    color: var(--text-primary);
    font-weight: 500;
}

.vdk-donor-row__amount {
    color: var(--kabuki-primary-deep);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.vdk-donor-empty {
    color: var(--text-muted);
    font-size: 15px;
    margin: 12px 0 0;
}

.vdk-tab-hidden {
    display: none !important;
}

/* ============================================================================
   DONATION CARD WRAPPER
   ============================================================================ */

.vdk-donation-card {
    background: #FDF6EE;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid #f0e6d9;
    position: relative;
    overflow: hidden;
    display: block;
}


.vdk-donation-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    margin-top: 4px;
}

.vdk-donation-card__description {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-base);
}

/* ============================================================================
   DONOR WALL
   ============================================================================ */

.vdk-donor-wall {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.vdk-donor-wall__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.vdk-donor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-sm);
}

.vdk-donor-card {
    padding: var(--space-sm);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.vdk-donor-card:hover {
    border-color: var(--border-color);
}

/* ============================================================================
   SOCIAL SHARING
   ============================================================================ */

.vdk-social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: var(--space-md) 0;
    flex-wrap: wrap;
}

.vdk-social-share__label {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-right: 4px;
}

.vdk-social-share__buttons {
    display: flex;
    gap: 8px;
}

.vdk-social-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.vdk-social-share__button:hover {
    background: var(--kabuki-primary);
    color: white;
    border-color: var(--kabuki-primary);
}

/* ============================================================================
   REWARDS / UPDATES
   ============================================================================ */

.vdk-rewards__title,
.vdk-updates__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.vdk-rewards__list,
.vdk-updates__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vdk-reward-card,
.vdk-update-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.vdk-reward-card:hover,
.vdk-update-card:hover {
    border-color: var(--kabuki-secondary);
    box-shadow: var(--shadow-sm);
}

/* ============================================================================
   GF / DONATION FORM overrides (kept for backwards compat)
   ============================================================================ */

.vdk-donation-card .gform_wrapper,
.vdk-donation-card .gform_wrapper.gravity-theme {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    font-family: var(--font-primary) !important;
}

.vdk-donation-card .gform_heading { display: none !important; }

.vdk-donation-card input[type="text"],
.vdk-donation-card input[type="number"],
.vdk-donation-card input[type="email"],
.vdk-donation-card input[type="tel"],
.vdk-donation-card textarea,
.vdk-donation-card select {
    font-family: var(--font-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    min-height: 46px !important;
    padding: 10px 14px !important;
    font-size: var(--font-size-base) !important;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color var(--transition-fast) !important;
    color: var(--text-primary) !important;
}

.vdk-donation-card input:focus,
.vdk-donation-card textarea:focus,
.vdk-donation-card select:focus {
    border-color: var(--kabuki-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(14, 63, 43, 0.1) !important;
}

.vdk-donation-card .gform_button,
.vdk-donation-card input[type="submit"] {
    width: 100% !important;
    min-height: 52px !important;
    border: 0 !important;
    border-radius: var(--radius-full) !important;
    background: var(--kabuki-primary) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: var(--font-size-lg) !important;
    cursor: pointer !important;
    transition: all var(--transition-base) !important;
    box-shadow: 0 4px 14px rgba(14, 63, 43, 0.25) !important;
}

.vdk-donation-card .gform_button:hover,
.vdk-donation-card input[type="submit"]:hover {
    background: var(--kabuki-secondary) !important;
    transform: translateY(-1px) !important;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
    .vdk-sections__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vdk-sections__sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-3xl: 30px;
        --font-size-2xl: 24px;
        --font-size-xl: 20px;
    }

    .vdk-band { padding-top: 16px; }

    .vdk-hero--banner {
        min-height: 300px;
        border-radius: 14px 14px 0 0;
    }

    .vdk-hero__content {
        width: 100%;
        padding: 28px 24px 16px;
    }

    .vdk-hero__title {
        font-size: 34px;
    }

    .vdk-band .vdk-milestone {
        padding: 18px 16px 28px;
        border-radius: 0 0 14px 14px;
    }

    .vdk-milestone__labels { display: none; }
    .vdk-milestone__track { height: 20px; }

    .vdk-story--card { padding: var(--space-md); margin-top: -24px; }

    .vdk-story__body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vdk-story__video-thumb {
        width: 170px;
        height: 110px;
    }

    .vdk-podium {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        align-items: end;
    }

    .vdk-podium__card {
        padding: 10px 6px;
    }

    .vdk-podium__card--rank-1 {
        min-height: 148px;
        padding-top: 14px;
        padding-bottom: 12px;
    }

    .vdk-podium__card--rank-2 {
        min-height: 114px;
    }

    .vdk-podium__card--rank-3 {
        min-height: 90px;
    }

    .vdk-podium__rank {
        font-size: 26px;
    }

    .vdk-podium__card--rank-1 .vdk-podium__rank {
        font-size: 30px;
    }

    .vdk-podium__name {
        font-size: 11px;
        line-height: 1.2;
    }

    .vdk-podium__amount {
        font-size: 17px;
    }

    .vdk-campaign-tabs { gap: 18px; }
    .vdk-campaign-tab { font-size: 24px; }
}

/* ============================================================================
   UTILITY
   ============================================================================ */

.vdk-section { margin-bottom: var(--space-2xl); }
.vdk-text-center { text-align: center; }
.vdk-text-primary { color: var(--kabuki-primary); }
.vdk-text-muted { color: var(--text-muted); }
