.ad-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.ad-card__hero {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.ad-card__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-card__hero-fallback {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}

.ad-card__body {
    padding: 20px 22px 24px;
}

.ad-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.ad-card__text {
    font-size: .85rem;
    color: rgba(15, 23, 42, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.ad-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    text-decoration: none;
}

.ad-card--glass {
    background: rgba(255, 255, 255, 0.85);
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.ad-card__hero--glass::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 20, 0.75) 0%, transparent 55%);
}

.ad-card__glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .35;
    pointer-events: none;
}

.ad-card__glow--cyan {
    background: #06b6d4;
    top: 10px;
    right: -20px;
}

.ad-card__glow--purple {
    background: #a855f7;
    bottom: 10px;
    left: 10px;
}

.ad-card__body--glass {
    padding: 22px 24px 26px;
}

.ad-card__body--glass .ad-card__text {
    color: rgba(15, 23, 42, 0.65);
}

.ad-card__kicker {
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
    margin-bottom: .6rem;
}

.ad-card__cta--neon {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    color: #111827;
    background: rgba(15, 23, 42, 0.06);
}

.ad-card--dark {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    color: #111827;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ad-card__hero--dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
}

.ad-card__body--dark .ad-card__title {
    font-family: "Sora", sans-serif;
    color: #111827;
}

.ad-card__body--dark .ad-card__text {
    color: rgba(17, 24, 39, 0.7);
}

.ad-card__cta--dark {
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    font-size: .8rem;
}

.ad-card--brutalist {
    border-radius: 0;
    border: 2px solid #111;
    background: #fffef5;
    box-shadow: 6px 6px 0 #111;
}

.ad-card__hero--brutalist {
    height: 190px;
    border-bottom: 2px solid #111;
    filter: grayscale(0.4) contrast(1.1);
}

.ad-card__hero-text {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #facc15;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #111;
}

.ad-card__body--brutalist {
    padding: 18px 20px 22px;
}

.ad-card__body--brutalist .ad-card__text {
    font-size: .78rem;
    color: rgba(17, 24, 39, 0.75);
    margin-bottom: .85rem;
}

.ad-card__cta--brutalist {
    padding: 10px 18px;
    border: 2px solid #111;
    background: #facc15;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .7rem;
}

.ad-card--deco {
    background: linear-gradient(170deg, #1a1610 0%, #0d0b08 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #f5e6b8;
}

.ad-card__hero--deco::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 11, 8, 0.8) 0%, rgba(13, 11, 8, 0.2) 50%, transparent 75%);
}

.ad-card__body--deco .ad-card__title {
    font-size: 1.35rem;
    color: #d4af37;
}

.ad-card__divider {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .6rem 0 .8rem;
}

.ad-card__divider-line {
    height: 1px;
    flex: 1;
    background: rgba(212, 175, 55, 0.3);
}

.ad-card__divider-diamond {
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.5);
    transform: rotate(45deg);
}

.ad-card__cta--deco {
    padding: 9px 18px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .65rem;
}

.ad-card--pastel {
    background: linear-gradient(145deg, #fef7f0, #fdf2f8, #f5f0ff);
    border-radius: 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.ad-card__hero--pastel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(254, 247, 240, 1) 0%, rgba(254, 247, 240, 0.3) 30%, transparent 60%);
}

.ad-card__badge {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    margin-top: -32px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ad-card__body--pastel .ad-card__title {
    font-size: 1.2rem;
    color: #3b1f5c;
}

.ad-card__body--pastel .ad-card__text {
    color: rgba(95, 64, 156, 0.75);
}

.ad-card__cta-row {
    display: flex;
    gap: 10px;
}

.ad-card__cta--pastel {
    flex: 1;
    justify-content: center;
    padding: 10px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #fb923c, #f472b6);
    color: #fff;
}

.ad-card__cta--pastel-ghost {
    flex: 1;
    justify-content: center;
    padding: 10px 0;
    border-radius: 12px;
    border: 1.5px solid rgba(196, 181, 253, 0.5);
    background: rgba(255, 255, 255, 0.6);
    color: #7c3aed;
}
