.organization-list {
    width: 90vw;
}

.organization-list h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 50px 0 20px 0;
}
.org-description{
    font-family: "DM Sans", sans-serif;
    color:var(--e-global-color-b218b47);
}
.doc-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.document-card {
    background-color: #fff;
    border: 1px solid #024A7E36;
    border-radius: 20px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    flex: 0 1 48%;
    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;
}


.document-card-left{
width: 90%

}

.document-info {
    max-width: 80%;
}

.document-card-left h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.document-card-left p {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
}

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

.document-icon img {
    width: 32px;
    height: auto;
}

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