.ad-slot-wrap {
    margin: 1.25rem 0 1.75rem;
}

.ad-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 110px;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ad-slot:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.ad-slot--placeholder {
    flex-direction: column;
    gap: .35rem;
    padding: 1.4rem 1.25rem;
    border: 1.5px dashed #94a3b8;
    background:
        linear-gradient(135deg, rgba(241, 245, 249, .95), rgba(226, 232, 240, .75)),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(148, 163, 184, .08) 8px,
            rgba(148, 163, 184, .08) 16px
        );
    color: #334155;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.ad-slot--placeholder:hover {
    border-color: #0284c7;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
    color: #0f172a;
}

.ad-slot__badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}

.ad-slot__title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #0f172a;
    line-height: 1.2;
}

.ad-slot__hint {
    font-size: .88rem;
    color: #64748b;
    text-align: center;
    max-width: 28rem;
}

.ad-slot--image {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    min-height: 0;
}

.ad-slot--image:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, .1);
}

.ad-slot--image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .ad-slot {
        min-height: 96px;
        border-radius: .85rem;
    }

    .ad-slot__title {
        font-size: 1.15rem;
    }

    .ad-slot__hint {
        font-size: .8rem;
    }

    .ad-slot--image img {
        max-height: 160px;
    }
}
