/* ABOUTME: Catalog grid cards for [wsllc_catalog_grid] — one link card per PDF. */
/* ABOUTME: Matches the brand-grid card language (12px radius, lift on hover). */

.wsllc-catalog-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.wsllc-catalog-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.wsllc-catalog-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(26, 26, 46, 0.10);
    border-color: #ca511d;
}

.wsllc-catalog-card__cover {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fdf0ea;
    color: #ca511d;
}
.wsllc-catalog-card__cover svg {
    width: 26px;
    height: 26px;
}

.wsllc-catalog-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.wsllc-catalog-card__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
    color: #1a1a2e;
}
.wsllc-catalog-card__meta {
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #8896a6;
}

@media (max-width: 600px) {
    .wsllc-catalog-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
