/* ===== SPEAKER SECTION ===== */
.speaker-section {
    background: url("../images/back-speaker.jpg") center center / cover no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* ORNAMENT PNG */
.speaker-ornament {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    pointer-events: none;
}

/* CONTENT LAYER */
.speaker-section .container {
    position: relative;
    z-index: 5;
}

/* ===== TEXT STYLE ===== */
.speaker-topic {
    background: #6bb7e6;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 36px;
    line-height: 36px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 30px;
}

.speaker-photo {
    max-height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 20px;
}

.speaker-job {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
}

/* ===== CAROUSEL CONTROL ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 3%;
    background: transparent;
    border: 0;
    z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .speaker-section {
        padding: 40px 0;
        min-height: 420px;
    }

    .speaker-ornament {
        top: -20px;
        width: 140%;
        max-width: none;
        transform: translateX(-50%) scale(1.1);
        opacity: 0.9;
    }

    .speaker-topic {
        font-size: 22px;
        line-height: 26px;
    }

    .speaker-name {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .speaker-job {
        font-size: 18px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .speaker-ornament {
        width: 170%;
        top: -40px;
        opacity: 0.8;
    }
}