.listing-pdfs-section {
    padding: 48px 0 56px;
    background: #fff;
}
.listing-pdfs-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.listing-pdfs-header { margin-bottom: 20px; }
.listing-pdfs-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c9a050;
    margin-bottom: 8px;
}
.listing-pdfs-title {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    color: #103d4f;
}
.listing-pdfs-lead {
    margin: 0;
    color: #64748b;
    max-width: 62ch;
    line-height: 1.55;
}
.listing-pdfs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}
.listing-pdf-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid #dbe7ec;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdfe 0%, #f4f9fa 100%);
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.listing-pdf-card:hover {
    transform: translateY(-2px);
    border-color: #2e8da0;
    box-shadow: 0 12px 28px rgba(16, 61, 79, 0.1);
}
.listing-pdf-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fde8e8;
    color: #dc2626;
    font-size: 1.2rem;
}
.listing-pdf-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.listing-pdf-title {
    font-weight: 700;
    color: #103d4f;
    line-height: 1.3;
}
.listing-pdf-meta {
    font-size: .78rem;
    color: #64748b;
}
.listing-pdf-action {
    color: #2e8da0;
    font-size: .95rem;
}
@media (max-width: 640px) {
    .listing-pdfs-section { padding: 36px 0 44px; }
    .listing-pdfs-grid { grid-template-columns: 1fr; }
}
