.downloadables-listing{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   
}

.document-card {
    background-color: #fff;
    border: 1px solid #024A7E36;
    border-radius: 20px 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 20px;
    flex: 0 1 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    width: 100%;
    color: #333;
}

.document-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #024A7E0D;

}
.document-card-right{
    width: 15%;
    display: flex;
    justify-content: end;
    flex-shrink: 0;
}


.document-card-left{
width: 90%

}


.card-title {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight : 500;
    color:var( --e-global-color-432d42e );
}



.document-icon {
    flex-shrink: 0;
}

.downloadable-icon {
    width: 45px;
    height: auto;
}

@media (max-width: 768px) {
    .document-card {
        flex: 0 1 100%;
    }
}
