/* ─── ABOUT PREVIEW ──────────────────────────────────────────────────────────*/
.ch-about {
    padding: var(--section-padding);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-bg-dark);
    position: relative;
}

.ch-about__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 15, 22, 0.96) 0%,
        rgba(13, 27, 42, 0.92) 50%,
        rgba(8, 15, 22, 0.88) 100%
    );
    z-index: 0;
}

.ch-about__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ─── IMAGE ──────────────────────────────────────────────────────────────────*/
.ch-about__image-wrap {
    position: relative;
}

.ch-about__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    display: block;
    border: 3px solid rgba(255,255,255,0.08);
}

.ch-about__image-placeholder {
    width: 100%;
    height: 520px;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 60px;
}

.ch-about__years-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    padding: 20px 24px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.ch-about__years-number {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-button-text, #ffffff);
    line-height: 1;
    letter-spacing: 0.02em;
}

.ch-about__years-label {
    font-size: 11px;
    color: var(--color-button-text, #ffffff);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}


/* ─── CONTENT ────────────────────────────────────────────────────────────────*/
.ch-about__content {
    padding-right: 20px;
}

.ch-about__content .section-badge {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.05);
}

.ch-about__content .section-title {
    color: #ffffff;
    margin-bottom: 8px;
}

.ch-about__text {
    font-size: 15px;
    color: rgba(248,250,252,0.75);
    line-height: 1.8;
    margin-bottom: 28px;
    font-family: var(--font-body);
}

.ch-about__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0;
}

.ch-about__bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(248,250,252,0.85);
    font-family: var(--font-body);
    font-weight: 500;
}

.ch-about__bullet i {
    color: var(--color-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.ch-about__cta {
    color: #ffffff;
    border-color: rgba(255,255,255,0.35);
}

.ch-about__cta:hover {
    background: #ffffff;
    color: var(--color-bg-dark);
    border-color: #ffffff;
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────*/
@media ( max-width: 1024px ) {
    .ch-about__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ch-about__content {
        padding-right: 0;
    }

    .ch-about__image-wrap {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .ch-about__years-badge {
        right: 0;
    }
}

@media ( max-width: 640px ) {
    .ch-about__image {
        height: 320px;
    }

    .ch-about__image-placeholder {
        height: 320px;
    }

    .ch-about__years-badge {
        bottom: -16px;
        right: 0;
        padding: 14px 18px;
    }

    .ch-about__years-number {
        font-size: 32px;
    }

    .ch-about__content {
        padding-right: 0;
    }
}