.gc-7b476719-grid {
    display: grid;
    gap: 24px;
}

.gc-7b476719-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}
a.gc-7b476719-card {
    cursor: pointer;
}
a.gc-7b476719-card:hover, a.gc-7b476719-card:focus {
    text-decoration: none;
}

/* Icons */
.gc-7b476719-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    align-self: flex-start; /* Keeps bg wrapping tightly */
}

.gc-7b476719-icon {
    display: inline-flex;
}

.gc-7b476719-icon i,
.gc-7b476719-icon svg {
    transition: all 0.3s ease;
}

/* Typography */
.gc-7b476719-title {
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}
.gc-7b476719-desc {
    margin: 0;
    transition: color 0.3s ease;
}

/* Hover Animations */
.gc-7b476719-hover-lift .gc-7b476719-card:hover {
    transform: translateY(-8px);
}
.gc-7b476719-hover-scale .gc-7b476719-card:hover {
    transform: scale(1.03);
}
.gc-7b476719-hover-glow .gc-7b476719-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Force 1-column layout for viewport sizes of 450px and under */
@media (max-width: 450px) {
    .gc-7b476719-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
