/* Default style for .card_column */
 .card-box-a p{
     line-height: 1.2;
}
 .cards_col .card-row .card-box-a {
     border: 1px solid rgba(0, 0, 0, 0.175);
     box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
     border-radius: 0.2rem;
}
 .card_column .card-box-a .card-image img {
     border-top-left-radius: 0.2rem;
     border-top-right-radius: 0.2rem;
}
 .cards_col .card-row .card-box-a .card-title {
     margin: 1rem 1rem 0 1rem;
     border-bottom: 3px solid #cb4900;
}
 .cards_col .card-box-a .card-description {
     padding: 1rem;
}
 .cards_col .card-box-a .card-description a{
     text-decoration: underline;
     overflow-wrap: break-word;
}
 .card_column {
     margin-left: 0;
    /* Adjust margin as needed */
}
 .card_column {
     width: 50%;
}
 .card_column .card-box-a .card-image img{
     width: 100%;
     max-height: 320px;
}
/* Media query for small screens (up to 576px) */
 @media only screen and (max-width: 576px) {
     .card_column {
         width: 100%;
        /* Full width for small screens (e.g., smartphones) */
    }
     .card_column .card-box-a .card-image img{
         width: 100%;
         max-height: 100%;
    }
}
/* Media query for desktops (992px and above) */
 @media only screen and (min-width: 992px) {
     .card_column {
         width: 40%;
        /* One-fourth width for desktops */
    }
     .card_column .card-box-a .card-image img{
         width: 100%;
         max-height: 500px;
    }
}