/* ==========================================================================
   Follow Us Section
   ========================================================================== */

.follow-section {
    padding: 3rem 0;
}

.follow-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    color: var(--primary-009);
    margin-bottom: 1rem;
}

.follow-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 4rem 0;
}

.follow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    /* Adjusted to match btn-outline */
    font-weight: 600;
    color: var(--neutral-004);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background-color: var(--primary-001);
    /* Requested BG */
    border: 2px solid var(--neutral-004);
    /* Outline style */
    border-radius: 1rem;
    padding: 0.875rem 1.5rem;
    width: 250px;
    /* Natural sizing as requested */
    transition: all 0.2s ease;
}

/* Remove custom underline */
.follow-link::after {
    display: none;
}

.follow-link i {
    font-size: 1.25rem;
    /* Adjusted to match btn-outline */
}

@media (hover: hover) {
    .follow-link:hover {
        background-color: var(--primary-003);
        opacity: 1;
    }
}

.follow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.follow-item {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.follow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .follow-buttons {
        flex-direction: column;
    }

    .follow-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .follow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide arrow icons on Mobile/Tablet */
    .follow-link i {
        display: none;
    }
}