.meet-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.meet-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.meet-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.meet-title{
    border-bottom: 1px solid #eee;

}

.meet-details {
    padding: 20px;
}



@media (max-width: 768px) {
    .meet-card-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .modal-image {
        max-height: 60vh;
    }
}