/* ── SECTION ── */
.ch-section {
    padding: 82px 0;
    background: #000;
}

/* ── HEADER ── */
.ch-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-bottom: 53px;
    text-align: center;
}

/* ── EYEBROW ── */
.ch-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 19.2px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #03cfff;
    display: block;
}

/* ── HEADING ── */
.ch-heading {
    font-family: var(--font-main);
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.86px;
    color: #fff;
    margin-bottom: 0;
    max-width: 1200px;
}

/* ── DIVIDER ── */
.ch-divider {
    display: block;
    width: 48px;
    height: 3px;
    background: #03cfff;
    border-radius: 2px;
}

/* ── GRID ── */
.ch-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 67px;
    margin-bottom: 53px;
}

/* ── CARD ── */
.ch-card {
    width: calc(50% - 24px);
    display: flex;
    flex-direction: column;
}

/* ── CARD HEADER (title) ── */
.ch-card-header {
    padding-bottom: 18px;
    margin-bottom: 8px;
}

.ch-card-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #03cfff;
    text-transform: uppercase;
    margin-bottom: 0;
    max-width: 310px;
}

/* ── CARD IMAGE ── */
.ch-card-image {
    margin-bottom: 31px;
}

.ch-card-image img {
    display: block;
    max-width: 310px;
    height: auto;
}

/* ── CARD DESCRIPTION ── */
.ch-card-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    margin-bottom: 31px;
    max-width: 310px;
}

/* ── CARD BUTTON ── */
.ch-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #03cfff;
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.ch-card-btn:hover {
    opacity: 0.85;
    color: #000;
    text-decoration: none;
}

.ch-card-btn i{
	font-size: 20px;
	transform: rotate(-45deg) scale(0.85);
}

/* ── FOOTER CTA ── */
.ch-footer {
    display: flex;
    justify-content: center;
}

.ch-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f9db0f;
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.ch-cta-btn:hover {
    opacity: 0.85;
    color: #000;
    text-decoration: none;
}

/* ── RESPONSIVE ── */

/* LG → MD */
@media (max-width: 991.98px) {
    .ch-section { padding: 72px 0; }
    .ch-header { margin-bottom: 48px; gap: 20px; }
    .ch-heading { font-size: 38px; line-height: 1.1; letter-spacing: -1px; }
    .ch-card { width: calc(50% - 16px); }
    .ch-card-title { font-size: 18px; }
    .ch-card-desc { font-size: 18px; line-height: 28px; }
    .ch-card-btn,
    .ch-cta-btn { font-size: 18px; }
}

/* MD → SM: single column */
@media (max-width: 767.98px) {
    .ch-section { padding: 56px 0; }
    .ch-header { margin-bottom: 40px; }
    .ch-heading { font-size: 30px; letter-spacing: -0.5px; }
    .ch-grid { row-gap: 40px; margin-bottom: 40px; }
    .ch-card { width: 100%; }
    .ch-card-image img { max-width: 260px; }
    .ch-card-title { font-size: 17px; max-width: 260px; }
    .ch-card-desc { font-size: 17px; line-height: 26px; max-width: 260px; }
    .ch-card-btn,
    .ch-cta-btn { font-size: 17px; }
}

/* XS */
@media (max-width: 575.98px) {
    .ch-section { padding: 40px 0; }
    .ch-header { margin-bottom: 32px; }
    .ch-heading { font-size: 26px; }
    .ch-card-title { font-size: 16px; line-height: 24px; }
    .ch-card-desc { font-size: 16px; line-height: 24px; }
    .ch-card-btn,
    .ch-cta-btn { font-size: 15px; padding: 12px 20px; }
}
