/* ── Social Media ── */
.social-section {
    position: relative;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.social-wave-top,
.social-wave-bottom {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.social-wave-top svg,
.social-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.social-inner {
    background-color: #f5f500;
    padding: 40px 20px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.social-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.social-icon-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: scale(1.15);
}

.social-icon-link img {
    width: 56px;
    height: 56px;
    display: block;
}

/* Social – Mobile */
@media (max-width: 576px) {
    .social-wave-top svg,
    .social-wave-bottom svg {
        height: 50px;
    }

    .social-label {
        font-size: 0.9rem;
    }

    .social-icon-link img {
        width: 48px;
        height: 48px;
    }
}
