.ac-grid-f97cea08 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ac-card-f97cea08 {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ac-card-img-wrap-f97cea08 {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Aspect ratio */
    overflow: hidden;
    /* Removed background: #f0f0f0; to allow full card background to show */
    background: transparent;
}

.ac-card-img-wrap-f97cea08 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-tags-wrap-f97cea08 {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.ac-tag-f97cea08 {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ac-card-content-f97cea08 {
    padding: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.ac-card-title-f97cea08 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
    color: #222;
}

.ac-card-excerpt-f97cea08 {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px; /* space for CTA */
}

.ac-card-cta-f97cea08 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: #115c3d; /* Dark green */
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 12px;
    z-index: 2;
}

.ac-cta-icon-f97cea08 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
