.speaker-main-container {
    background: var(--theme-color);
    font-family: 'Arial', sans-serif;
    color: white;
    padding: 40px 20px 0px 0;
}

.speaker-card {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.about-speakers {
    padding: 30px 30px 0px 80px;
}

.about-speakers p {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    letter-spacing: -1px;
    line-height: 1;
}

.speaker-info {
    background: var(--theme-color);
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    border-left: none;
    /* hilangkan border kiri */
    border-radius: 5px;
    padding: 10px 10px 10px 80px;
    margin-bottom: 40px;
    margin-left: -10px;
    position: relative;
    width: 95%;
    z-index: 2;
}


.speaker-name {
    font-size: 1.5rem;
    font-weight: bold;
    /* margin-bottom: 5px; */
}

.speaker-title {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    /* margin-bottom: 5px; */
}

.speaker-company {
    font-size: 13px;
    opacity: 0.8;
}

.content-section {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    height: fit-content;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    /* shadow fokus di bawah */
}


.section-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.work-experience-item {
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.work-experience-item strong {
    color: white;
}

.expertise-list {
    columns: 2;
    column-gap: 20px;
    font-size: 0.85rem;
}

.expertise-item {
    margin-bottom: 8px;
    break-inside: avoid;
}



.awards-list {
    font-size: 0.85rem;
    line-height: 1.4;
}

.award-item {
    margin-bottom: 8px;
}

.certification-list {
    font-size: 0.85rem;
    line-height: 1.4;
}

.cert-item {
    margin-bottom: 8px;
}

.speaker-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* border-radius: 15px;
                                                border: 3px solid white; */
}

.header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.bridge-logo {
    position: relative;
    color: #1e3a8a;
    padding: 8px 30px 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    /* pastikan ::after muncul */
}

.bridge-logo:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 40px;
    background-color: var(--white-color);
}


/* Desktop */
.event-title {
    font-weight: 900;
    font-size: 25px;
    margin-left: 20px;
    margin-bottom: 0;
    flex: 1;
    max-width: min(70%, 650px);
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
    color: white;
}

h5.event-title {
    font-size: 25px !important;
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .event-title {
        font-size: 15px;
        margin-left: 10px;
        max-width: 70%;
        line-height: 1.2;
    }

    h5.event-title {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    .event-title {
        font-size: 13px;
        margin-left: 8px;
        max-width: 75%;
    }

    h5.event-title {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .about-speakers p {
        font-size: 1.5rem;
    }

    .expertise-list {
        columns: 1;
    }

    .header-logos {
        flex-direction: column;
        gap: 15px;
    }

    .speaker-image-wrapper::before {
        height: 140% !important;
    }

    .row-responsive{
        padding-left: 20px;
    }

    .about-speakers {
        padding: 30px 30px 0px 20px;
    }

}

.speaker-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%
}

.speaker-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 130%;
    background: linear-gradient(to top, rgba(255, 193, 7, 0.9), rgba(255, 193, 7, 0));
    border-radius: 8px;
    /* jika ingin sedikit rounded */
    pointer-events: none;
}

.speaker-image {
    display: block;
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}
