/* =========================
   SOCIAL ICONS
========================= */
.socials {
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 12px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: all 0.25s ease;
}

.socials img {
    width: 16px;
    height: 16px;
    opacity: 0.75;
}

/* Hover */
.socials a:hover {
    transform: translateY(-2px);
    border-color: #0099ff;
    box-shadow: 0 6px 16px rgba(0, 153, 255, 0.2);
}

.socials a:hover img {
    opacity: 1;
}