/* Column Wrapper */
.column-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Default Column - More than 2 Items */
.column {
    flex: 0 0 calc(25% - 20px) !important;
    padding: 10px !important;
}

/* Two Column Layout */
.column2 {
    flex: 0 0 calc(50% - 20px) !important;
    padding: 10px !important;
}

/* Center Align when 2 Items */
.column-wrapper.column2-parent {
    justify-content: center;
}

/* Card Styles */
.custom-card {
    border-width: 1px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 0 10px #ccc;
    overflow: hidden;
}

.custom-card img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.custom-card .card-body {
    padding: 1rem;
}

.column a {
    color: #00154c;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
    .column {
        flex: 0 0 100% !important;
    }

    .column2 {
        flex: 0 0 100% !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .column {
        flex: 0 0 calc(50% - 20px) !important;
    }
}