/* =========================
 PAGE BANNER (SAFE)
========================= */
.page-banner {
    height: 260px;
    background: url('../img/banner.jpg') center center / cover no-repeat;
    position: relative;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

/* =========================
 COMING TALKS SECTION
========================= */
.coming-talks {
    background: #ffffff;
    padding: 100px 0;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.coming-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    position: relative;
}

/* LEFT CONTENT */
.coming-content {
    width: 45%;
    padding-right: 40px;
    z-index: 2;
}

.coming-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.coming-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 30px;
}

/* FORM */
.coming-form {
    display: flex;
    max-width: 420px;
    gap: 10px;
}

.coming-form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #000;
    font-size: 14px;
    outline: none;
}

.coming-form button {
    padding: 14px 22px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.coming-form button:hover {
    background: #333;
}

/* RIGHT IMAGE */
.coming-image {
    width: 55%;
    position: relative;
}

.coming-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* DIAGONAL EFFECT */
.coming-image::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    width: 120px;
    height: 100%;
    background: #ffffff;
    transform: skewX(-10deg);
}

/* =========================
 RESPONSIVE
========================= */
@media (max-width: 992px) {
    .coming-wrapper {
        flex-direction: column;
    }

    .coming-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: left;
    }

    .coming-image {
        width: 100%;
    }

    .coming-image img {
        height: 300px;
    }

    .coming-image::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .coming-content h2 {
        font-size: 30px;
    }
}
