.documents-page {
    background: #fff;
    color: #004735;
    font-family: 'Closer Text', sans-serif;
    overflow: hidden;
    padding-top: 160px;
}

.documents-container {
    width: var(--eco-page-shell, min(1320px, calc(100vw - 120px)));
    margin: 0 auto;
}

.documents-hero .documents-container {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
    min-height: 258px;
}

.documents-hero h1 {
    color: #013026;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.04;
    margin: 0 0 22px;
}

.documents-hero p {
    color: #004735;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    max-width: 631px;
}

.documents-hero__mark {
    align-items: center;
    color: #f1f5f8;
    display: flex;
    font-size: 260px;
    font-weight: 700;
    justify-content: center;
    line-height: 0.8;
    opacity: 0.9;
}

.documents-hero__mark--image {
    justify-content: flex-end;
}

.documents-hero__mark img {
    display: block;
    height: auto;
    max-height: 380px;
    max-width: min(100%, 420px);
    opacity: 0.9;
    width: 100%;
}

.documents-section {
    padding-bottom: 64px;
}

.documents-section__heading {
    border-bottom: 1px solid rgba(0, 71, 53, 0.12);
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.documents-section h2 {
    color: #013026;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

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

.document-card {
    border-radius: 16px;
    color: #004735;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 244px;
    padding: 26px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.document-card--legal {
    background: #f6f8f1;
}

.document-card--reports {
    background: #f1f5f8;
}

.document-card:hover {
    transform: translateY(-4px);
}

.document-card__icon {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block;
    height: 60px;
    margin-bottom: 44px;
    overflow: visible;
    position: relative;
    width: 60px;
}

.document-card__icon::before,
.document-card__icon::after {
    content: none !important;
    display: none !important;
}

.document-card__icon svg {
    display: block;
    height: 100%;
    width: 100%;
}

.document-card__title {
    color: #004735;
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    min-height: 58px;
}

.document-card__footer {
    align-items: center;
    color: #004735;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.3;
    margin-top: auto;
}

.document-card__arrow {
    font-size: 28px;
    line-height: 1;
}

.documents-empty {
    background: #f1f5f8;
    border-radius: 16px;
    color: #004735;
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
    padding: 26px;
}

@media (max-width: 1180px) {
    .documents-container {
        width: calc(100vw - 40px);
    }

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

@media (max-width: 768px) {
    .documents-page {
        padding-top: 104px;
    }

    .documents-hero .documents-container {
        display: block;
        min-height: auto;
    }

    .documents-hero h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .documents-hero p {
        font-size: 18px;
    }

    .documents-hero__mark {
        display: none;
    }

    .documents-section {
        padding: 54px 0 0;
    }

    .documents-section h2 {
        font-size: 32px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .documents-container {
        width: calc(100vw - 32px);
    }

    .documents-hero h1 {
        font-size: 34px;
    }

    .document-card {
        min-height: 220px;
    }
}
