/**
 * /descargas · F33 · estilo editorial premium
 * Header centrado + 4 bloques con lista de items. Sin border-radius.
 * Coherente con paleta del sitio (navy #0f1d2f + cyan #f59e0b).
 */

.dl-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 8px 24px 140px;
}

/* === HEADER === */
.dl-head {
    text-align: center;
    margin-bottom: 80px;
}
.dl-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 18px;
}
.dl-h1 {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f1d2f;
    margin: 0 0 24px;
}
.dl-lead {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 560px;
    margin: 0 auto;
}

/* === BLOQUE === */
.dl-block {
    margin-bottom: 64px;
}
.dl-block__head {
    border-top: 1px solid #e5e7eb;
    padding-top: 28px;
    margin-bottom: 24px;
}
.dl-block__h2 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0f1d2f;
    margin: 0 0 8px;
}
.dl-block__lead {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    max-width: 720px;
}

/* === LISTA === */
.dl-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.dl-item {
    border-bottom: 1px solid #e5e7eb;
}
.dl-item:first-child {
    border-top: 1px solid #e5e7eb;
}
.dl-item__link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: inherit;
    transition: padding 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.dl-item__link:hover {
    background: rgba(245, 158, 11, 0.04);
    padding-left: 12px;
    padding-right: 12px;
}
.dl-item__icon {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: #0f1d2f;
    padding: 6px 8px;
    line-height: 1;
}
.dl-item__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.dl-item__title {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    color: #0f1d2f;
    line-height: 1.35;
}
.dl-item__meta {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.dl-item__action {
    font-size: 22px;
    color: #f59e0b;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: border-color 0.22s ease, background 0.22s ease;
}
.dl-item__link:hover .dl-item__action {
    border-color: #f59e0b;
    background: #fff;
}

/* === Responsive === */
@media (max-width: 720px) {
    .dl-wrap { padding: 4px 20px 90px; }
    .dl-head { margin-bottom: 56px; }
    .dl-h1 { font-size: 30px; }
    .dl-lead { font-size: 15px; }
    .dl-block { margin-bottom: 48px; }
    .dl-block__h2 { font-size: 19px; }
    .dl-item__link { gap: 14px; padding: 16px 0; }
    .dl-item__link:hover { padding-left: 8px; padding-right: 8px; }
    .dl-item__title { font-size: 14.5px; }
}
