/* --- Card Container & Media --- */
.aems-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 16px;
    height: 100%;
}

.aems-card-media-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.aems-card-media-main {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.aems-card-media-main img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* 3-Column Gallery Grid */
.aems-card-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.aems-card-gallery img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

/* Category Pill */
.aems-category {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 2;
}

/* --- Card Body & Typography --- */
.aems-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.aems-round-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.aems-card-heading h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: #1a202c;
}

.aems-card-heading h3 a {
    color: inherit;
    text-decoration: none;
}

.aems-card-excerpt {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes the link to the bottom if cards are varying heights */
}

.aems-card-link {
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

/* --- Dynamic Theme Colors based on Category Slug --- */

/* 1. Cultural Celebration (Orange) */
.aems-theme-cultural-celebration .aems-category,
.aems-theme-cultural-celebration .aems-round-icon { background-color: #d97a3c; }
.aems-theme-cultural-celebration .aems-card-link { color: #d97a3c; }

/* 2. Community Action (Pink) */
.aems-theme-community-action .aems-category,
.aems-theme-community-action .aems-round-icon { background-color: #e51e94; }
.aems-theme-community-action .aems-card-link { color: #e51e94; }

/* 3. Literature & Ideas (Blue) */
.aems-theme-literature-ideas .aems-category,
.aems-theme-literature-ideas .aems-round-icon { background-color: #55b6de; }
.aems-theme-literature-ideas .aems-card-link { color: #55b6de; }

/* 4. Community Engagement (Yellow) */
.aems-theme-community-engagement .aems-category,
.aems-theme-community-engagement .aems-round-icon { background-color: #f7e01b; }
.aems-theme-community-engagement .aems-card-link { color: #d6b300; } /* Darkened yellow for text contrast */