.documento-single {
    width: 100% !important;
    padding: 50px 0;
}

.documentos-archive {
    width: 100%;
    padding: 20px 0;
}
.documentos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 -20px;
}

.documento-item {
    margin: 0;
}

.documento-cta {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
    padding: 20px 30px;
    border: 1px solid #4682b4;
    border-radius: 5px;
    text-decoration: none;
    background: #fff;
    color: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.documento-cta:hover {
    border-color: rgba(0, 0, 0, 0.24);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.documento-cta:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.25);
    outline-offset: 2px;
}

.documento-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.06);
    flex: 0 0 auto;
}

.documento-cta__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
}

.documento-cta__title {
    font-weight: 700;
    line-height: 1.2;
}

.documento-cta__excerpt {
    opacity: 0.75;
    font-size: 0.95em;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.documento-cta__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    white-space: nowrap;
    padding-left: 8px;
}

.documento-cta__action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.documento-download {
    margin: 0 0 16px;
}

.documento-back {
    margin: 16px 0 0;
}

.documento-download-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    background: #4682b4;
    color: #fff;
    transition: filter 160ms ease, transform 160ms ease;
}

.documento-download-btn:hover {
    filter: brightness(1.08);
}

.documento-download-btn:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.25);
    outline-offset: 2px;
}

.documento-back-btn {
    background: transparent;
    color: inherit;
    border: 2px solid currentColor;
}

.documento-back-btn:hover {
    filter: none;
    background: rgba(0, 0, 0, 0.04);
}