
/**
 * Ad Card
 *
 * @deprecated
 */
.ad-container {
    --ad-card-width: 271px;
    --grid-cols: repeat(3, var(--ad-card-width));
    --grid-column-gutter: var(--spacing-base);
    --grid-rows: auto;
    justify-content: center;
    background-image: url("../Assets/HeroBannerVideosDailymotion.jpg");
    background-size: contain;
    margin-top: var(--spacing-3xl);
    padding-top: 236px;
    background-repeat: no-repeat;
    margin-bottom: calc(var(--spacing-3xl) * 2);
}

.ad-card {
    background: var(--ad-card-background);
    border-radius: var(--ad-card-border-radius);
    box-shadow: var(--ad-card-box-shadow);
    padding: var(--ad-card-padding);
    border: var(--ad-card-border);
    transition: box-shadow 0.3s ease;
}

.ad-card:hover {
    --ad-card-box-shadow: var(--ad-card-hero-box-shadow);
}

.ad-hero {
    top: -60px;
    position: relative;
}

.ad-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    text-align: center;
    font-family: var(--heading-font);
}

.ad-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #606060;
    margin: 8px 0;
    text-align: center;
}

.ad-details {
    font-size: 1rem;
    color: #a8a8a8;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.ad-features-section {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-md);
    border-top: var(--border-line);
}

.ad-features-description {
    font-weight: 700;
}

.ad-features {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.ad-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ad-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("../Assets/CheckmarkCircle.svg");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}


.ad-card .button-primary {
    --button-width: 100%;
    box-sizing: border-box;
    display: inline-table;
}

.hero-text-size {
    font-size: 4rem;
    font-weight: bold;
    color: var(--heading-color);
    line-height: 4.5rem;
    margin-bottom: var(--spacing-2xl);
    font-family: var(--heading-font);
}