/* Grid Layout */
.angie-feature-grid-0a7f0a3a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1024px) {
    .angie-feature-grid-0a7f0a3a {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .angie-feature-grid-0a7f0a3a {
        grid-template-columns: 1fr;
    }
}

/* Card Styles */
.angie-fg-card-0a7f0a3a {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.angie-fg-card-0a7f0a3a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.angie-fg-image-wrap-0a7f0a3a {
    position: relative;
    width: 100%;
    padding-top: 66.66%; /* 3:2 aspect ratio */
    overflow: hidden;
    background-color: #f5f5f5;
}
.angie-fg-image-0a7f0a3a {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.angie-fg-card-0a7f0a3a:hover .angie-fg-image-0a7f0a3a {
    transform: scale(1.05);
}

/* Arrow Icon */
.angie-fg-arrow-0a7f0a3a {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translate(-15px, 15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
    color: #1a1a1a;
}
.angie-fg-arrow-0a7f0a3a svg {
    width: 20px;
    height: 20px;
}
.angie-fg-card-0a7f0a3a:hover .angie-fg-arrow-0a7f0a3a {
    opacity: 1;
    transform: translate(0, 0);
}

/* Content Area */
.angie-fg-content-0a7f0a3a {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.angie-fg-title-0a7f0a3a {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.angie-fg-desc-0a7f0a3a {
    margin: 0;
    color: #666666;
    line-height: 1.6;
    flex-grow: 1;
}
