/* ==========================================================================
   BANKBUGS|FX COMPONENT: THE PRIVATE SOCIAL MATRIX BLOCK
   ========================================================================== */

.follow-section-block {
    position: relative;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
}

/* Horizontal Layout Row Upgrade */
.social-channels-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 32px;
}

/* Premium Interactive Node Items */
.social-node-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Premium Hover Action Map */
.social-node-item:hover {
    border-color: rgba(226, 177, 60, 0.4);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26, 34, 42, 0.3) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Micro Icon Shield Layout Wrapper */
.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(11, 14, 17, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.25s ease-in-out;
}

/* SVG Line Transitions */
.social-node-item:hover .social-icon-wrapper {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: rgba(226, 177, 60, 0.05);
    box-shadow: 0 0 12px rgba(226, 177, 60, 0.1);
}

.social-icon-wrapper svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.social-node-item:hover .social-icon-wrapper svg {
    transform: scale(1.05);
}

/* Clean Micro Typography Track */
.social-platform-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: color 0.25s ease;
}

.social-node-item:hover .social-platform-title {
    color: var(--accent-color);
}

/* ==========================================================================
   CROSS-PLATFORM MEDIA SCALING
   ========================================================================== */

/* 📑 TABLET BREAKPOINT */
@media (max-width: 1024px) {
    .social-channels-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .social-node-item {
        padding: 20px;
    }
}

/* 📱 SMARTPHONE BREAKPOINT (Zero Content Clipping) */
@media (max-width: 480px) {
    .social-channels-horizontal {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .social-node-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px 20px;
        gap: 16px;
    }
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .social-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
}
