/* =========================================================
   CUSTOM TOPICS
   ========================================================= */

.custom-topics-section {
    margin-top: 30px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.custom-topics-section .section-heading {
    margin-bottom: 22px;
}

.custom-topics-section .section-heading h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.custom-topics-section .section-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}


/* =========================================================
   COMING SOON CARD
   ========================================================= */

.custom-topics-coming-soon {
    display: flex;
    align-items: center;
    gap: 24px;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.05);

    max-width: 900px;
}


/* =========================================================
   ICON
   ========================================================= */

.custom-topics-coming-soon .coming-soon-icon {
    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ff;

    border-radius: 14px;

    color: #2563eb;

    font-size: 30px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.custom-topics-coming-soon .coming-soon-content {
    flex: 1;
}

.custom-topics-coming-soon .coming-soon-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    margin-bottom: 10px;

    background: #fff7ed;
    color: #c2410c;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.custom-topics-coming-soon h3 {
    margin: 0 0 10px;

    font-size: 20px;
    font-weight: 700;

    color: #111827;
}

.custom-topics-coming-soon p {
    margin: 0 0 8px;

    max-width: 720px;

    font-size: 14px;
    line-height: 1.7;

    color: #6b7280;
}

.custom-topics-coming-soon p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .custom-topics-coming-soon {
        align-items: flex-start;
        gap: 18px;
        padding: 24px;
    }

    .custom-topics-coming-soon .coming-soon-icon {
        flex: 0 0 58px;

        width: 58px;
        height: 58px;

        font-size: 24px;
    }

    .custom-topics-coming-soon h3 {
        font-size: 18px;
    }

}


@media (max-width: 520px) {

    .custom-topics-coming-soon {
        flex-direction: column;
    }

    .custom-topics-coming-soon .coming-soon-icon {
        width: 58px;
        height: 58px;
    }

}