.angie-activity-calendar {
    font-family: inherit;
    width: 100%;
}

.ac-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.ac-section-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ac-view-all {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ac-view-all:hover {
    text-decoration: underline;
}

.ac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.ac-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.ac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.ac-card-img-link {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #2b4f3b; /* Dark green fallback matching screenshot */
}

.ac-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ac-card:hover .ac-card-img {
    transform: scale(1.05);
}

.ac-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b4f3b;
    color: rgba(255,255,255,0.4);
    font-size: 3rem;
}

.ac-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ac-card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
    align-self: flex-start;
}

.ac-card-title {
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
}

.ac-card-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.ac-card-title a:hover {
    color: var(--e-global-color-primary, #007bff);
}

.ac-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ac-card-date {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ac-read-more {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.ac-read-more:hover {
    color: var(--e-global-color-primary, #007bff);
}

@media (max-width: 768px) {
    .ac-grid {
        grid-template-columns: 1fr;
    }
    .ac-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
