.article-download-module {
    padding: 0 0 clamp(2.5rem, 5vw, 4.5rem);
}

.article-download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 34rem;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(43, 171, 212, 0.28);
    border-top: 5px solid #2babd4;
    background: #fff;
    color: #464646;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0.8rem 2.2rem rgba(4, 55, 124, 0.09);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.article-download-card:hover,
.article-download-card:focus-visible {
    border-color: #2babd4;
    color: #464646;
    text-decoration: none;
    box-shadow: 0 1.1rem 2.8rem rgba(4, 55, 124, 0.15);
    transform: translateY(-0.2rem);
}

.article-download-card:focus-visible {
    outline: 3px solid rgba(43, 171, 212, 0.35);
    outline-offset: 4px;
}

.article-download-card__title {
    margin: 0;
    color: #464646;
    font-family: var(--secondary-font-family);
    font-size: 24px;
    font-weight: bold;
    line-height: 1.35;
}

.article-download-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 18rem;
    padding: 1.25rem;
    background: #f5f7f8;
}

.article-download-card__visual img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 25rem;
    height: auto;
    box-shadow: 0 0.45rem 1.2rem rgba(36, 50, 74, 0.14);
}

.article-download-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.75rem 1.4rem;
    background: #04377c;
    color: #fff;
    font-family: var(--secondary-font-family);
    font-size: 1rem;
    font-weight: 700;
}

.article-download-card:hover .article-download-card__button,
.article-download-card:focus-visible .article-download-card__button {
    background: #2babd4;
}

@media (max-width: 575.98px) {
    .article-download-card {
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .article-download-card__visual {
        min-height: 14rem;
        padding: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-download-card {
        transition: none;
    }

    .article-download-card:hover,
    .article-download-card:focus-visible {
        transform: none;
    }
}
