/**
 * Social Block Styles
 * BEM methodology: .social-block__element--modifier
 */

.social-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    position: relative;
    overflow: visible;
}

/* ===========================
   Social Links List
   =========================== */

.social-block__list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 0;
    position: relative;
    overflow: visible;
    flex-wrap: wrap;
}

/* ===========================
   Individual Social Link
   =========================== */

.social-block__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-block__link:hover {
    opacity: 0.7;
}

/* ===========================
   Icon
   =========================== */

.social-block__icon {
    flex: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(17, 24, 39, 0.03);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.social-block__icon p {
    font-family: var(--font-family-inter);
    font-size: var(--font-size-base); /* 17px */
    font-weight: var(--font-weight-medium); /* 500 */
    line-height: var(--line-height-body); /* 1.5em */
    color: var(--color-gray-400); /* rgb(102, 102, 102) */
    margin: 0;
    padding: 0;
    text-align: center;
    white-space: pre;
    user-select: none;
}

.social-block__link:hover .social-block__icon {
    background-color: rgba(17, 24, 39, 0.05);
    border-color: rgba(17, 24, 39, 0.15);
}

/* ===========================
   Social Network Name
   =========================== */

.social-block__name {
    font-family: var(--font-family-inter);
    font-size: 13px;
    font-weight: var(--font-weight-medium); /* 500 */
    line-height: var(--line-height-body); /* 1.5em */
    color: var(--color-gray-400); /* rgb(102, 102, 102) */
    margin: 0;
    padding: 0;
    text-align: left;
    white-space: pre;
    user-select: none;
}

/* ===========================
   Responsive Styles
   =========================== */

@media (max-width: 809px) {
    .social-block__list {
        gap: 20px;
        justify-content: flex-start;
    }
    
    .social-block__icon {
        width: 28px;
        height: 28px;
    }
    
    .social-block__icon p {
        font-size: var(--font-size-md); /* 14px */
    }
    
    .social-block__name {
        font-size: var(--font-size-md); /* 14px */
    }
}

