.child-pages-grid-wrapper-eff646ca {
    padding-top: 20px;
    padding-bottom: 40px; /* Especially below */
}

.child-pages-grid-eff646ca {
    display: grid;
    grid-template-columns: 1fr; /* 1 across on mobile */
    gap: 20px;
}

@media (min-width: 768px) {
    .child-pages-grid-eff646ca {
        grid-template-columns: repeat(2, 1fr); /* 2 across on desktop */
    }
}

.child-page-card-eff646ca {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 16px; /* 2x what it was (8px) */
    text-decoration: none !important; /* Remove underline */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.child-page-card-eff646ca:hover,
.child-page-card-eff646ca:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none; /* Ensure no underline on hover */
}

.child-page-icon-eff646ca {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.child-page-icon-eff646ca i {
    font-size: 30px;
    width: 30px;
    text-align: center;
}

.child-page-content-eff646ca h3 {
    margin: 0 0 5px 0;
    font-size: 2.2em; /* 2x previous 1.1em */
    font-weight: 700; /* Slightly more bold */
    line-height: 1.2;
}

.child-page-content-eff646ca p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}
