.guide-section {
    background: #f7f4f1;
    padding-top: 0;
}

.guide-section__container {
    border-top: 1px solid #e7e2da;
    padding-top: 88px;
    width: 71%;
}

.guide-section__heading {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.guide-section__heading h2 {
    font-size: calc(24px + (48 - 24) * ((100vw - 320px) / (1920 - 320)));
    color: var(--tertiary);
    line-height: 1.05;
    margin-bottom: 16px;
}

.guide-section__heading p:last-child {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: var(--text-soft);
    line-height: 1.75rem;
}

.guide-section__block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    align-items: stretch;
}

.guide-section__block:last-child {
    margin-bottom: 0;
}

.guide-section__card {
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(25, 48, 95, 0.08);
}

.guide-section__card--text {
    padding: 40px;
}

.guide-section__card--media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.guide-section__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.guide-section__title-row--small {
    margin-bottom: 16px;
}

.guide-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-family: var(--typo-primary);
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.guide-section__card h3,
.guide-section__card h4 {
    margin: 0;
    color: var(--secondary);
}

.guide-section__card h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.guide-section__card h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.guide-section__body {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
}

.guide-section__body--strong {
    font-weight: 700;
}
.guide-section__body span {
    font-weight: 700;
}

.guide-section__meta {
    margin-bottom: 12px;
    color: var(--text-soft);
    font-size: 0.875rem;
}

.guide-section__meta--plain {
    font-style: normal;
}

.guide-section__meta--long {
    line-height: 1.7;
}

.guide-section__lead {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 700;
}

.guide-section__list {
    display: grid;
    gap: 6px;
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 0.875rem;
    line-height: 1.6;
}

.guide-section__list li::marker {
    /*color: var(--primary);*/
}

.guide-section__split {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.guide-section__warning {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid rgba(217, 63, 50, 0.3);
    border-radius: 0.75rem;
    background: rgba(217, 63, 50, 0.08);
}

.guide-section__warning-label {
    margin-bottom: 4px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .875rem;
    line-height: 1.25rem;
}

.guide-section__warning-text {
    color: #ef4444;
    font-size: 1rem;
    font-weight: 700;
}

.guide-section__tip {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 4px solid var(--primary);
    border-radius: 0 0.75rem 0.75rem 0;
    background: rgba(41, 59, 121, 0.05);
}

.guide-section__tip-label {
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 700;
}

.guide-section__tip p:last-child {
    color: var(--text-soft);
    font-size: 0.875rem;
    font-style: italic;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .guide-section__block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .guide-section__container {
        width: min(94%, 1400px);
    }

    .guide-section__heading {
        margin-bottom: 48px;
    }

    .guide-section__card--text {
        padding: 24px;
    }

    .guide-section__card--order-mobile-first {
        order: -1;
    }

    .guide-section__card--media img {
        min-height: 280px;
    }

    .guide-section__card h3 {
        font-size: 1.125rem;
    }

    .guide-section__heading h2 br {
        display: none;
    }
}
