.socials-container {
    text-align: center;
    margin-top: 2rem;
    min-height: calc(100vh - var(--header-height, 150px) - var(--nav-height, 80px) - 4rem);
}

.socials-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #f8bbd0;
}

.socials-list-wrapper {
    padding: 30px;
    padding-bottom: 60px;
}

.socials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: stretch;
}

.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 16px;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-box:hover {
    transform: translateY(-5px);
    background-color: #2c2c2e;
}

.social-icon {
    font-size: 3rem;
    color: #f8bbd0;
    margin-bottom: 10px;
}

.social-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.social-description {
    font-size: 0.875rem;
    color: #a0a0a0;
    text-align: center;
}

@media (max-width: 600px) {
    .socials-list {
        grid-template-columns: 1fr;
    }
}
