/* Shared Hero Section Styles */

.speakers-hero {
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    min-height: 600px; /* Default for speakers, can be overridden */
}

.speakers-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(62, 53, 96, 0.1) 0%, transparent 60%),
        url('../assets/images/speakers-hero-bg2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(1.4);
    opacity: 1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

.badge-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px; /* Default for speakers */
}

.main-badge {
    width: 65%;
    height: auto;
}

/* Responsiveness for Hero */

@media (max-width: 1024px) {
    .speakers-hero {
        padding-top: 130px;
        min-height: 400px;
        padding-bottom: 20px;
    }

    .badge-container {
        margin-bottom: 40px;
    }

    .main-badge {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .speakers-hero {
        padding-top: 130px;
        min-height: 300px;
        padding-bottom: 0;
    }

    .badge-container {
        margin-bottom: 20px;
    }

    .main-badge {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .speakers-hero {
        padding-top: 120px;
        min-height: 250px;
    }

    .badge-container {
        margin-bottom: 60px;
    }

    .main-badge {
        width: 140%;
        height: auto;
    }
}
