/* BILLBOARD Placeholders */
.ad-container {
    width: 100%;
    min-height: 120px;
    margin: 40px 0 24px 0;
    /* Extra top margin for the label */
    display: flex;
    align-items: center;
    justify-content: center;

    /* The Ad Space itself (Empty inside) */
    background: rgba(0, 0, 0, 0.3);
    /* Very dark/empty */
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

/* "BILL BOARD" Label - OUTSIDE the container */
.ad-container::before {
    content: 'BILL BOARD';
    position: absolute;
    top: -24px;
    /* Positioned ABOVE the box */
    left: 0;

    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;

    /* Optional: Make it look like a small tag */
    background: #222;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Specific Sizes - Flexible */
.ad-banner {
    min-height: 120px;
    height: auto;
}

.ad-rectangle {
    min-height: 250px;
    height: auto;
}