.downloads-list {
    display: grid;
    gap: .9rem;
}

.download-card {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.download-card__icon {
    display: flex;
    width: 4.1rem;
    height: 4.1rem;
    align-items: center;
    justify-content: center;
    border-radius: .85rem;
    background: #eef2f7;
    color: #445164;
}

.download-card__icon--pdf {
    background: #fff1f0;
    color: #b42318;
}

.download-card__icon svg,
.pdf-file-icon svg {
    display: block;
    width: 2rem;
    height: 2rem;
}

.download-card__content h3 {
    margin: .1rem 0 .45rem;
    font: 700 clamp(1.1rem, 2.5vw, 1.25rem)/1.35 Raleway, Arial, sans-serif;
}

.download-card__content h3 a {
    color: #282e3f;
    text-decoration: none;
}

.download-card__content h3 a:hover,
.download-card__content h3 a:focus-visible {
    color: #f47600;
}

.download-card__content p {
    margin: 0;
    color: #5c6673;
}

.download-card__actions {
    margin-top: .85rem;
}

.download-pdf-viewer {
    margin-top: 1.2rem;
    border: 1px solid #d9dde2;
    background: #fff;
    overflow: hidden;
}

.download-pdf-viewer__frame {
    display: block;
    width: 100%;
    min-height: 980px;
    border: 0;
    background: #fff;
}

@media (max-width: 760px) {
    .download-card {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .download-card__icon {
        width: 3.6rem;
        height: 3.6rem;
    }

    .download-card__actions .button {
        width: 100%;
        min-height: 44px;
    }

    .download-pdf-viewer__frame {
        min-height: 70vh;
    }
}
