

/* Start:/local/components/hrcode/socials.cards/templates/.default/style.css?17829281462711*/
.socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 700px;
    margin-bottom: 56px;

    .socials__item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 22px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(201, 168, 76, 0.12);
        text-decoration: none;
        color: inherit;
        transition: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
        transform: none;
        box-shadow: none;
        cursor: pointer;
        animation: cs-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .socials__item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .socials__item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .socials__item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .socials__item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .socials__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: rgba(201, 168, 76, 0.08);
        border: 1px solid rgba(201, 168, 76, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: rgb(201, 168, 76);
        transition: 0.22s;
    }

    .socials__content {
        flex: 1 1 0%;
        min-width: 0px;
    }

    .socials__name {
        font-size: 15px;
        font-weight: 600;
        color: rgba(245, 236, 215, 0.85);
        margin-bottom: 2px;
        transition: color 0.2s;
    }

    .socials__code {
        font-size: 12px;
        color: rgb(139, 122, 96);
        font-weight: 500;
        letter-spacing: 0.02em;
        margin-bottom: 4px;
        transition: color 0.2s;
    }

    .socials__description {
        font-size: 11px;
        color: rgba(139, 122, 96, 0.6);
        line-height: 1.4;
        letter-spacing: 0.01em;
    }

    .socials__arrow {
        flex-shrink: 0;
        transition: 0.2s;
        transform: none;
        stroke: rgba(139,122,96,0.4);
    }

    .socials__item:hover {
        background: rgba(201, 168, 76, 0.1);
        border: 1px solid rgba(201, 168, 76, 0.45);
        transform: translateY(-3px);
        box-shadow: rgba(0, 0, 0, 0.4) 0px 16px 40px;

        .socials__name {
            color: rgb(245, 236, 215);
        }

        .socials__code {
            color: rgb(201, 168, 76);
        }

        .socials__arrow {
            transform: translate(2px, -2px);
            stroke: rgb(201, 168, 76);
        }
    }
}
/* End */
/* /local/components/hrcode/socials.cards/templates/.default/style.css?17829281462711 */
