.downloads-article {
    h2 {
        font-size: 1.5rem !important;
        font-weight: 550;
        margin-bottom: 0.75rem;
    }
}

.downloads-list {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-item {
    background-color: #EFEFEF;
    border-radius: 16px;
    overflow: hidden;
}

.download-item-link {
    width: 100%;
    height: 100%;
    padding-left: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: black;
    text-decoration: none !important; 
    position: relative;
}

.download-item-title {
    padding-block: 1rem;
    hyphens: auto;
}

.download-file-icon {
    width: 0.875rem;
    height: 1.125rem;
}

.download-item-download-banner {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1rem;
    transform: translateX(calc(100% - 3rem));
    margin-left: auto;
    transition: all 0.3s ease-out;
    color: white;
    padding-inline: 1rem;
    border-radius: 16px;
}


.download-item-link:hover .download-item-download-banner {
    transform: translateX(0);
    transition-delay: 0.1s;
    background-color: #097DB1;
}

.download-file-icon path {
    transition: all 0.3s ease-out;
}

.download-item-link:hover .download-file-icon path {
    stroke: white;
    transition-delay: 0.1s;
}

@media (max-width: 630px) {
    .download-label {
        display: none;
    }

    .download-item-download-banner {
        transform: translateX(0);
    }
}