/* Socials */

html.socials-wrapper .socials-hero {
    border-bottom: 4px solid var(--mckl-highlight);
    border-radius: .25rem;
    padding-bottom: 1rem;
}

html.socials-wrapper .socials-hero-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

html.socials-wrapper .socials-title {
    margin: 0;
    /* font-variation-settings: "wdth" 130;
    font-weight: normal; */
}

html.socials-wrapper .socials-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--mckl-muted);
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .9rem;
    white-space: nowrap;
}

html.socials-wrapper .socials-subtitle {
    max-width: 78ch;
    margin-top: .5rem;
    font-size: 1rem;
}

html.socials-wrapper .socials-controls .socials-search,
html.socials-wrapper .socials-controls .socials-select {
    background-color: var(--mckl-background);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--mckl-font-color);
}

html.socials-wrapper .socials-controls .socials-search:focus,
html.socials-wrapper .socials-controls .socials-select:focus {
    border-color: rgba(253, 218, 13, 0.35);
    box-shadow: 0 0 0 .25rem rgba(253, 218, 13, 0.08);
}

html.socials-wrapper .socials-group-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .5rem;
}

html.socials-wrapper .socials-group-title {
    margin: 0;
    font-size: 1.25rem;
    font-variation-settings: "wdth" 130;
    font-weight: normal;
}

html.socials-wrapper .socials-group-hint {
    font-size: .95rem;
}

html.socials-wrapper .socials-list {
    background-color: var(--mckl-background-alt);
    padding: .5rem !important;
}

html.socials-wrapper a.social-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .65rem;
    border-radius: .55rem;
    text-decoration: none;
    color: var(--mckl-font-color);
    transition: color 0.5s ease-in-out,
                background-color 0.5s ease-in-out,
                border-color 0.5s ease-in-out;
}

html.socials-wrapper a.social-row + a.social-row {
    margin-top: .35rem;
}

html.socials-wrapper a.social-row:hover {
    background-color: rgba(255,255,255,0.04);
}

html.socials-wrapper .social-row-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--mckl-highlight);
    flex: 0 0 36px;
    font-size: 18px;
}

html.socials-wrapper .social-svg {
    width: 18px;
    height: 18px;
    display: block;
}

html.socials-wrapper .social-row-main {
    min-width: 0;
    flex: 1;
}

html.socials-wrapper .social-row-title {
    font-size: 0.98rem;
    line-height: 1.05;
    margin: 0;
}

html.socials-wrapper .social-row-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .15rem;
    margin-top: .1rem;
    font-size: 0.9rem;
    line-height: 1.1;
}

html.socials-wrapper .social-handle {
    color: var(--mckl-font-color);
    opacity: 0.95;
}

html.socials-wrapper .social-row-action {
    flex: 0 0 auto;
}

html.socials-wrapper .social-pill {
    background: rgba(253, 218, 13, 0.10);
    border: 1px solid rgba(253, 218, 13, 0.25);
    color: var(--mckl-highlight);
    padding: .15rem .5rem;
    border-radius: 999px;
    font-size: .82rem;
}

html.socials-wrapper .social-pill-muted {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--mckl-muted);
}

html.socials-wrapper a.social-row.social-row-warning .social-row-icon {
    color: var(--mckl-muted);
}

@media (max-width: 576px) {
    html.socials-wrapper .socials-hero-top {
        align-items: flex-start;
        flex-direction: column;
    }

    html.socials-wrapper .social-row-action {
        display: none;
    }
}