/* Online Media Kit Channel Live Online Forum Page Styles */

/* Leaderboard Ad Container */
.leaderboard-ad-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero-section {
    max-width: 1440px !important;
    margin: 60px auto !important;
    /* padding: 0 40px !important; */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 38px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 20px 0;
}

.hero-description {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 20px 0;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-image img {
    width: 538px;
    height: 358px;
    object-fit: cover;
}

/* Why Webinars Section */
.why-webinars-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: #F0F4FF;
    padding: 60px 0;
}

.why-webinars-content {
    max-width: 1440px !important;
    margin: 0 auto !important;
    /* padding: 0 40px !important; */
}

.why-webinars-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 40px 0;
    text-align: left;
}

.webinars-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

/* Engagement Section */
.engagement-section {
    max-width: 1440px !important;
    margin: 60px auto !important;
    /* padding: 0 40px !important; */
}

.engagement-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 40px 0;
    text-align: center;
}

.feature-boxes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

/* Value for Advertisers Section */
.value-section {
    max-width: 1440px !important;
    margin: 60px auto !important;
    /* padding: 0 40px !important; */
}

.value-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: left;
}

.value-description {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 30px 0;
    text-align: left;
}

.what-you-get-container {
    border: 1px solid #E5E5EB;
    border-radius: 5px;
    padding: 20px;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.what-you-get-box {
    background: white;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

.what-you-get-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.what-you-get-number {
    width: 30px;
    height: 30px;
    background: #00388B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.what-you-get-number span {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -1.5%;
    color: white;
}

.what-you-get-box-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    text-align: left;
    width: 210px;
}

.what-you-get-box img {
    width: auto;
    height: 129px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .value-title {
        font-size: 34px;
    }
    
    .value-description {
        font-size: 17px;
        line-height: 24px;
    }
    
    .what-you-get-box img {
        height: 110px;
    }
}

@media (max-width: 768px) {
    .leaderboard-ad-container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 0 20px !important;
        margin: 40px auto !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
    }
    
    .why-webinars-wrapper {
        padding: 40px 0;
    }
    
    .why-webinars-content {
        padding: 0 20px !important;
    }
    
    .why-webinars-title {
        font-size: 32px;
    }
    
    .webinars-cards-grid {
        justify-content: center;
    }
    
    .engagement-section {
        padding: 0 20px !important;
        margin: 40px auto !important;
    }
    
    .engagement-title {
        font-size: 32px;
    }
    
    .value-section {
        padding: 0 20px !important;
        margin: 40px auto !important;
    }
    
    .value-title {
        font-size: 32px;
    }
    
    .value-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .what-you-get-container {
        padding: 15px;
        width: 100%;
    }
    
    .what-you-get-box img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .why-webinars-title {
        font-size: 28px;
    }
    
    .engagement-title {
        font-size: 28px;
    }
    
    .value-title {
        font-size: 28px;
    }
    
    .value-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .what-you-get-box img {
        height: 80px;
    }
    
    .what-you-get-box-title {
        font-size: 12px;
    }
    
    .what-you-get-number {
        width: 25px;
        height: 25px;
    }
    
    .what-you-get-number span {
        font-size: 14px;
    }
}

