/* ─── Legacy shortcode styles ─────────────────────────────────────────────── */

.faithco-sdg-section {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    margin-top: 20px;
}
.faithco-sdg-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}
.faithco-sdg-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.faithco-sdg-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    cursor: pointer;
}
.faithco-sdg-icon:hover { transform: scale(1.12); }
.faithco-sdg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
}
.faithco-sdg-primary {
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 4px;
    background: rgba(255,255,255,0.06);
}
.faithco-sdg-primary img { opacity: 1; }
.faithco-sdg-divider {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    margin: 0 4px;
}

/* ─── Elementor widget styles ─────────────────────────────────────────────── */

.faithco-sdg-widget-title {
    margin-bottom: 14px;
}
.faithco-sdg-widget-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.faithco-sdg-widget-icon {
    flex: 0 0 calc(33.333% - 7px); /* mobile: 3 per row */
    aspect-ratio: 1;
    transition: transform 0.2s ease;
    cursor: pointer;
}
.faithco-sdg-widget-icon:hover { transform: scale(1.1); }
.faithco-sdg-widget-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
@media (min-width: 768px) {
    .faithco-sdg-widget-icon {
        flex: 0 0 calc(20% - 8px); /* desktop: max 5 per row */
    }
}
