.education-page {
    overflow: hidden;
}

.education-page__intro {
    padding-block: clamp(68px, 8vw, 112px);
}

.education-page h1 {
    max-width: 840px;
    margin-bottom: 24px;
    font-size: clamp(46px, 5.2vw, 72px);
    font-weight: 800;
}

.education-page__lead {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.5vw, 19px);
}

.education-page__heading {
    max-width: 900px;
    margin-bottom: 38px;
}

.education-page__heading .eyebrow {
    margin-bottom: 16px;
}

.education-page__documents-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.education-page__documents-grid--teachers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-placeholder {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 148px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(63, 45, 86, 0.05);
    cursor: not-allowed;
    text-align: left;
}

.document-placeholder__body {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.document-placeholder__type {
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.document-placeholder__title {
    overflow-wrap: anywhere;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.28;
}

.document-placeholder__notice {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.document-placeholder__arrow {
    flex: 0 0 auto;
    color: var(--purple);
    font-size: 25px;
    line-height: 1;
}

.education-page__directions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.education-direction {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}

.education-direction h3 {
    margin-bottom: 14px;
    font-size: 21px;
    overflow-wrap: anywhere;
}

.education-direction p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1099px) {
    .education-page__documents-grid--teachers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .education-page__directions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .education-page__intro {
        padding-block: 54px 58px;
    }

    .education-page h1 {
        margin-bottom: 18px;
        font-size: clamp(34px, 9.5vw, 42px);
    }

    .education-page__lead {
        font-size: 15px;
    }

    .education-page__heading {
        margin-bottom: 28px;
    }

    .education-page__documents-grid,
    .education-page__documents-grid--teachers,
    .education-page__directions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .document-placeholder {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 16px;
        gap: 16px;
    }

    .document-placeholder__title {
        font-size: 17px;
    }

    .document-placeholder__notice {
        font-size: 12px;
    }

    .document-placeholder__arrow {
        font-size: 22px;
    }

    .education-direction {
        padding: 22px 20px;
        border-radius: 16px;
    }

    .education-direction h3 {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .education-direction p {
        font-size: 13px;
    }
}
