/* ==========================================================================
   WT Export Market Detail  ·  assets/css/widgets/export-market-detail.css
   Layout: centered heading → intro → two-column divider → CTA button
   Matches layout_type_1.png exactly.
   ========================================================================== */

.wt-emd {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 0;
    text-align: center;
}

/* ── Two-column divider block ────────────────────────────────────────────── */

.wt-emd__cols {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    justify-content: space-between;
}

.wt-emd__col {
    width: 45%;
}

.wt-emd__col-body {
    text-align: left;
}

/* ── CTA Button ──────────────────────────────────────────────────────────── */

.wt-emd__btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.wt-emd__btn {
    display: inline-block;
    padding: 13px 32px;
    background-color: #DE9829;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.wt-emd__btn:hover {
    background-color: #a87a08;
    color: #ffffff;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1399px) {

    .wt-emd__cols {
        gap: 40px;
    }

    .wt-emd {
        padding: 44px 0;
    }
}

@media (max-width: 1199px) {

    .wt-emd__cols {
        gap: 30px;
    }

    .wt-emd {
        padding: 38px 0;
    }
}

@media (max-width: 991px) {

    .wt-emd__cols {
        gap: 22px;
    }

    .wt-emd {
        padding: 34px 0;
    }
}

@media (max-width: 768px) {
    .wt-emd__cols {
        gap: 18px;
    }

    .wt-emd__col {
        width: 46%;
    }

    .wt-emd {
        padding: 24px 0;
    }

}

@media (max-width: 575px) {
    .wt-emd__cols {
        gap: 20px;
        flex-direction: column;
    }

    .wt-emd__cols .wt__col_divider {
        display: none;
    }

    .wt-emd__col {
        width: 100%;
    }

    .wt-emd {
        padding: 15px 0;
    }
}

/* ── Accessibility ───────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .wt-emd__btn {
        transition: none;
    }
}