.cp-wyg {
    padding: 120px 0;
}

/* ----- Intro (left-aligned) ----- */
.cp-wyg__intro {
    margin-bottom: 40px;
}

.cp-wyg__label {
    display: block;
    margin-bottom: 10px;
    font-family: 'MonoBlack', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: var(--cp-accent);
}

.cp-wyg__heading {
    margin: 0;
    font-family: var(--cp-font);
    font-size: 54px;
    font-weight: 600;
    line-height: 62px;
    letter-spacing: -0.02em;
    color: var(--cp-text);
    text-transform: none;
}

/* ----- Lead (centered) ----- */
.cp-wyg__lead {
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: center;
}

.cp-wyg__subheading {
    margin: 0 0 14px;
    font-family: var(--cp-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: var(--cp-text);
}

.cp-wyg__desc {
    margin: 0 auto;
    max-width: 820px;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    color: #B9B9BA;
}

/* ----- Cards ----- */
.cp-wyg__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cp-wyg__card {
    padding: 30px 34px;
    border: 1px solid rgba(255, 150, 38, 0.55);
    border-radius: 16px;
    background: #0E0F11;
}

.cp-wyg__card-title {
    margin: 0 0 18px;
    font-family: var(--cp-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--cp-text);
    text-transform: none;
}

.cp-wyg__card-text {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #B9B9BA;
}

/* ----- Tablet / mobile ----- */
@media (max-width: 1024px) {
    .cp-wyg {
        padding: 60px 0;
    }

    .cp-wyg__heading {
        font-size: 34px;
        line-height: 42px;
    }

    .cp-wyg__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
