/* ── Brand tokens ── */
:root {
    --sktc-green: #1f4d3a;
    --sktc-green-dark: #163627;
    --sktc-green-mid: #2a6b50;
    --sktc-green-light: #e8f2ed;
    --sktc-gold: #c9a227;
    --sktc-gold-light: #f7eecc;
    --sktc-gold-dark: #a07f18;
    --sktc-text: #1a2e25;
    --sktc-muted: #5a7368;
    --sktc-border: #d3e4db;
    --sktc-white: #ffffff;
    --sktc-bg-soft: #f5faf7;
}

/* ── Section ── */
.sktc-overview-section {
    background: var(--sktc-bg-soft);
}

/* ── Header ── */
.sktc-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sktc-gold-dark);
    background: var(--sktc-gold-light);
    border: 1px solid var(--sktc-gold);
    border-radius: 2px;
    padding: 4px 14px;
    margin-bottom: 1rem;
}

.sktc-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--sktc-green);
    margin-bottom: 1rem;
}

.sktc-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.sktc-divider-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--sktc-gold);
}

.sktc-divider-diamond {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--sktc-gold);
    transform: rotate(45deg);
}

.sktc-section-desc {
    color: var(--sktc-muted);
    font-size: 15px;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Description Card (left) ── */
.sktc-desc-card {
    background: var(--sktc-white);
    border: 1px solid var(--sktc-border);
    border-top: 4px solid var(--sktc-green);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sktc-desc-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sktc-green);
    background: var(--sktc-green-light);
    border-radius: 2px;
    padding: 3px 10px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.sktc-desc-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sktc-green);
    margin-bottom: 1rem;
}

.sktc-desc-text {
    font-size: 16px;
    color: var(--sktc-muted);
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.sktc-desc-text strong {
    color: var(--sktc-text);
    font-weight: 600;
}

/* ── Summary Card (right) ── */
.sktc-summary-card {
    background: var(--sktc-white);
    border: 1px solid var(--sktc-border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sktc-summary-header {
    background: var(--sktc-green);
    color: var(--sktc-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sktc-summary-icon {
    font-style: normal;
    color: var(--sktc-gold);
    font-size: 0.6rem;
    opacity: 0.85;
}

.sktc-summary-body {
    padding: 0.5rem 0;
    flex: 1;
}

.sktc-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
    border-bottom: 1px solid var(--sktc-border);
    gap: 1rem;
    transition: background 0.15s;
}

.sktc-summary-row--last {
    border-bottom: none;
}

.sktc-summary-row:hover {
    background: var(--sktc-green-light);
}

.sktc-summary-label {
    font-size: 15px;
    color: var(--sktc-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sktc-label-icon {
    color: var(--sktc-gold);
    font-size: 0.5rem;
    line-height: 1;
}

.sktc-summary-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sktc-green);
    text-align: right;
}

/* ── Stat Pills ── */
.sktc-stat-pills {
    display: flex;
    align-items: stretch;
    background: var(--sktc-green);
    border-top: 3px solid var(--sktc-gold);
}

.sktc-stat-pill {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
}

.sktc-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.sktc-stat-number {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--sktc-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.sktc-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Map Section ── */
.sktc-map-section {
    background: var(--sktc-white);
}

.sktc-address-bar {
    background: var(--sktc-green-dark);
    padding: 18px 0;
}

.sktc-addr-icon-wrap {
    width: 38px;
    height: 38px;
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sktc-gold);
    flex-shrink: 0;
}

.sktc-addr-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sktc-gold);
    margin-bottom: 2px;
}

.sktc-addr-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.sktc-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--sktc-gold);
    color: var(--sktc-green-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.sktc-directions-btn:hover {
    background: #e0b52c;
    color: var(--sktc-green-dark);
    transform: translateY(-1px);
}

.sktc-map-wrapper {
    border-top: 3px solid var(--sktc-gold);
    line-height: 0;
}

.sktc-map-wrapper iframe {
    min-height: 320px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .sktc-stat-pills {
        flex-wrap: wrap;
    }

    .sktc-stat-pill {
        flex: 1 1 45%;
    }

    .sktc-stat-divider {
        display: none;
    }

    .sktc-address-bar .col-md-3:last-child {
        text-align: left !important;
    }

    .sktc-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .sktc-summary-value {
        text-align: left;
    }
}

@media (max-width: 575px) {

    .sktc-desc-card,
    .sktc-summary-card {
        border-radius: 4px;
    }

    .sktc-stat-pill {
        padding: 14px 8px;
    }
}