  /* Container for the cards to ensure they align in a row */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Ensure every card takes up full height of the row */
.gad-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.gad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Image wrapper forces aspect ratio and keeps images consistent */
.img-wrapper {
    display: block;
    width: 100%;
    height: 200px; /* Adjust this height as needed */
    overflow: hidden;
    background-color: #f5f5f5;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents stretching by cropping slightly if needed */
}

/* Typography for readability */
.brochure-text {
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    flex-grow: 1; /* Pushes the text to fill the remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-wrap: break-word;
}