.custom-attachment-card-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    @media screen and (min-width: 1001px) {
        flex-direction: row;
    }
}
.custom-attachment-card {
    border: 1px solid #E8E9EA;
    border-radius: 8px;
    width: 100%;
    /*height: 100px;*/
    margin-bottom: 20px;

    @media screen and (min-width: 1001px) {
        width: 48%;
    }
}

.custom-attachment-card-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
}

.custom-attachment-card-content {
    padding: 20px;
}

.custom-attachment-card-description {
    font-weight: bold;
}

.custom-attachment-card-language {
    background-color: #EB6909;
    border-radius: 10px;
    display: flex;
    min-width: 100px;
    height: 35px;
    color: white;
    font-weight: 400;
    text-align: center;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .custom-attachment-card-language {
        min-width: unset;
        padding: 10px;
    }
}

.custom-attachment-card-link {
    color: black;
    text-transform: uppercase;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: #EB6909 !important;
    font-weight: 500 !important;
}