.documents-list {
    display: grid;
    gap: 28px;
}

.document-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.document-head {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--line);
}

.document-head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
}

.document-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.document-frame {
    display: block;
    width: 100%;
    height: min(820px, 82vh);
    border: 0;
    background: #f2eee7;
}

@media (max-width: 700px) {
    .document-head {
        align-items: stretch;
        flex-direction: column;
    }

    .document-frame {
        height: 620px;
    }
}
