/* Strategies article — vertical timeline layout */
.blog-article--strategies .strat-body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4rem;
}

/* Intro */
.strat-intro {
    margin-bottom: 2.5rem;
}

.strat-intro__hook {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
}

.strat-intro__highlight {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #F2BA26;
    padding: 0.5rem 1rem;
    margin: 0 0 1.75rem;
    line-height: 1.4;
}

.strat-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.strat-intro__grid p,
.strat-intro__closing {
    font-size: 1rem;
    line-height: 1.75;
    color: #555555;
    margin: 0;
}

.strat-intro__closing {
    padding-top: 0.25rem;
}

/* Timeline chapters */
.strat-chapters {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: grid;
    gap: 0;
}

.strat-chapter {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1.25rem;
    position: relative;
    padding-bottom: 2.5rem;
}

.strat-chapter:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1.7rem;
    top: 3.25rem;
    bottom: 0;
    width: 2px;
    background: #ececec;
}

.strat-chapter__marker {
    position: relative;
    z-index: 1;
}

.strat-chapter__marker span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #1a1a1a;
    color: #F2BA26;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.strat-chapter__body {
    min-width: 0;
    padding-top: 0.35rem;
}

.strat-chapter__body h2 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.strat-chapter__body p {
    font-size: 0.975rem;
    line-height: 1.75;
    color: #555555;
    margin: 0 0 1rem;
}

.strat-chapter__body p:last-child {
    margin-bottom: 0;
}

/* Strategy 1 — nested sub-chapters */
.strat-chapter--major .strat-chapter__marker span {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 0.9375rem;
    background: #F2BA26;
    color: #1a1a1a;
}

.strat-subchapters {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    counter-reset: strat-sub;
}

.strat-subchapter {
    counter-increment: strat-sub;
    padding: 1.25rem 1.25rem 1.25rem 3.6rem;
    background: #fafafa;
    border: 1px solid #ececec;
    position: relative;
}

.strat-subchapter::before {
    content: counter(strat-sub, lower-roman);
    position: absolute;
    left: 1.15rem;
    top: 1.2rem;
    font-size: .9rem;
    font-weight: 800;
    color: #F2BA26;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.strat-subchapter h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.strat-subchapter p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 0.75rem;
}

.strat-subchapter p:last-child {
    margin-bottom: 0;
}

/* Conclusion — matches owner article */
.owner-conclusion {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid #ececec;
}

.owner-conclusion__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.owner-conclusion__rule {
    flex-shrink: 0;
    width: 2.5rem;
    height: 3px;
    background: #F2BA26;
}

.owner-conclusion h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #444444;
    margin: 0;
    letter-spacing: -0.01em;
}

.owner-conclusion p {
    color: #555555;
    margin: 0 0 1rem;
    line-height: 1.75;
    font-size: 1.0625rem;
}

.owner-conclusion p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .strat-intro__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .strat-subchapters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .strat-chapter {
        grid-template-columns: 4.5rem minmax(0, 1fr);
        gap: 2rem;
    }

    .strat-chapter__marker span {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1rem;
    }

    .strat-chapter--major .strat-chapter__marker span {
        width: 4.75rem;
        height: 4.75rem;
    }

    .strat-chapter:not(:last-child)::before {
        left: 2.2rem;
        top: 4.75rem;
    }
}

@media (min-width: 1200px) {
    .strat-chapter {
        gap: 2.5rem;
    }

    .strat-subchapters {
        gap: 1.5rem;
    }
}
