.section {
    padding: 2rem 0 4rem;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contactIMG {
  display: flex;
  justify-content: center;
}

.contact-socials {
    margin-top: -60px;
}

.contact-socials h1 {
    max-width: none;
    margin-bottom: 1.2rem;
}

.socials-table {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-link {
    padding: 1.1rem 1rem;
    text-align: center;
    border-right: 1px solid var(--line);
    font-size: 1.05rem;
    transition: background-color 180ms ease, color 180ms ease;
}

.social-link:last-child {
    border-right: 0;
}

.social-link:hover,
.social-link:focus-visible {
    background: rgba(255, 255, 255, 0.05);
}

.social-twitter {
    color: #2da8f3;
}

.social-youtube {
    color: #ff2a5d;
}

.social-github {
    color: #f1f1f1bd;
}

.social-discord {
    color: #6f7dff;
}

@media (max-width: 640px) {
    .socials-table {
        grid-template-columns: 1fr;
    }

    .social-link {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .social-link:last-child {
        border-bottom: 0;
    }
}