.cyac-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.cyac-tabs button {
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.cyac-tabs button.active {
    background: #000;
    color: #fff;
}

.cyac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.cyac-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #eef1ef;
    text-decoration: none;
    transition: 0.3s ease;
}

/* FIX IMAGE RATIO */
.cyac-card img {
    width: 100%;
    height: 280px; /* 👈 control height */
    object-fit: cover; /* 👈 VERY IMPORTANT */
    display: block;
}

/* Title bar */
.cyac-title { 
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: 95%;
    background: rgba(240,240,240,0.95);
    padding: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #000;
}

/* Hover effect */
.cyac-card:hover {
    transform: translateY(-6px);
}