.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* MATCHES CALENDAR STYLE */
.resource-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 16px 18px;
    min-height: 88px;

    display: flex;
    align-items: center;
    gap: 14px;

    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all 0.18s ease;
}

/* Hover now matches calendar feel */
.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
    border-color: #dcdcdc;
}

/* Icon refinement */
.card-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 44px;
    opacity: 0.9;
}

/* Title now matches event titles */
.card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f1f1f;
}

/* Optional: subtle secondary text style if needed later */
.card-subtitle {
    font-size: 13px;
    color: #666;
}