.attachments-list a {
    color: orange !important;
}

.card-container {
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
}



@media (max-width: 767px) {
    .card-container {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .card {
        max-width: 95vw;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (min-width: 768px) {
    .card-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
    }
    .card {
        flex: 1 1 300px;
        max-width: 350px;
        min-width: 250px;
        margin: 1rem 0.5rem;
    }
}


.card {
    height: fit-content;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 350px;
    min-width: 250px;
    margin: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-body {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}
