.gmr-inline-socials,
.gmr-inline-socials * {
    box-sizing: border-box;
}

.gmr-inline-socials {
    width: min(100%, 820px);
    margin: 34px auto 28px;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--gmr-social-gold, #c5a15a) 32%, transparent);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,250,241,.96)),
        var(--gmr-social-card, #fffaf1);
    box-shadow: 0 16px 36px rgba(52, 24, 15, .10);
    color: var(--gmr-social-text, #2d241d);
    clear: both;
}

.gmr-inline-socials__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 18px;
}

.gmr-inline-socials__block + .gmr-inline-socials__block {
    margin-top: 8px;
    border-top: 1px solid rgba(197, 161, 90, .18);
    padding-top: 16px;
}

.gmr-inline-socials__text {
    min-width: 0;
}

.gmr-inline-socials__eyebrow {
    display: block;
    font-family: inherit;
    font-weight: 800;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.18;
    color: var(--gmr-social-dark, #34180f);
    letter-spacing: .01em;
}

.gmr-inline-socials__hint {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(45, 36, 29, .72);
}

.gmr-inline-socials__icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.gmr-social-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(197, 161, 90, .42);
    background: rgba(255, 255, 255, .72);
    color: var(--gmr-social-dark, #34180f) !important;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(52, 24, 15, .06);
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    cursor: pointer;
    padding: 0;
}

.gmr-social-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.gmr-social-icon:hover,
.gmr-social-icon:focus-visible {
    transform: translateY(-1px);
    background: var(--gmr-social-dark, #34180f);
    color: var(--gmr-social-gold, #c5a15a) !important;
    border-color: color-mix(in srgb, var(--gmr-social-gold, #c5a15a) 72%, #fff);
    box-shadow: 0 12px 24px rgba(52, 24, 15, .16);
    outline: none;
}

.gmr-social-icon--button {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
}

.gmr-inline-socials__status {
    display: block;
    min-height: 16px;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(45, 36, 29, .72);
}

@media (max-width: 700px) {
    .gmr-inline-socials {
        margin: 28px 0 24px;
        padding: 12px;
        border-radius: 20px;
    }

    .gmr-inline-socials__block {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .gmr-inline-socials__icons {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 7px;
    }

    .gmr-social-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .gmr-social-icon svg {
        width: 15px;
        height: 15px;
    }
}

@media print {
    .gmr-inline-socials {
        display: none !important;
    }
}
