.page-hero {
    border-left: 5px solid var(--accent);
}

.card-section {
    border-left: 3px solid rgba(30, 132, 194, 0.45);
}

.docs-section p {
    margin-top: 0.35rem;
}

.docs-grid {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.8rem;
}

.doc-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(231, 238, 244, 0.9));
    padding: 0.95rem;
    box-shadow: 0 8px 20px rgba(44, 65, 86, 0.08);
}

.doc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: "Barlow Condensed", "Segoe UI", sans-serif;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    padding: 0.24rem 0.56rem;
}

.doc-chip-icon {
    flex: 0 0 auto;
}

.doc-card h3 {
    margin-top: 0.55rem;
    font-family: "Barlow Condensed", "Segoe UI", sans-serif;
    font-size: 1.25rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.doc-card p {
    margin-top: 0.35rem;
    color: var(--muted);
}

.doc-download {
    margin-top: 0.75rem;
    display: inline-block;
    text-decoration: none;
    font-family: "Barlow Condensed", "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: 10px;
    padding: 0.55rem 0.72rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.doc-download:hover,
.doc-download:focus-visible {
    transform: translateY(-1px);
    opacity: 0.92;
}

@media (min-width: 768px) {
    .docs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
