/* CSS Document */
.sv-author-hero {
    max-width: 1040px;
    margin: 42px auto 26px;
    padding: 0 15px;
    direction: rtl;
}

.sv-author-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8e8e8;
}

.sv-author-info {
    flex: 1;
    text-align: right;
}

.sv-author-title {
    margin: 0 0 14px;
    color: #bd1d34;
    font-size: 25px;
    line-height: 1.35;
    font-weight: normal;
}

.sv-author-text {
    color: #222;
    font-size: 15px;
    line-height: 1.75;
}

.sv-author-social {
    width: 230px;
    flex: 0 0 230px;
    padding-left: 28px;
    border-left: 1px solid #e5e5e5;
}

.sv-social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-bottom: 10px;
    padding: 0 42px 0 14px;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.sv-social-btn:last-child {
    margin-bottom: 0;
}

.sv-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    opacity: 0.95;
}

.sv-facebook {
    background: #1877f2;
}

.sv-instagram {
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
}

.sv-social-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.sv-instagram .sv-social-icon {
    font-size: 21px;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 760px) {
    .sv-author-hero {
        margin: 28px auto 20px;
        padding: 0 12px;
    }

    .sv-author-content {
        display: block;
        padding-bottom: 20px;
    }

    .sv-author-info {
        text-align: center;
    }

    .sv-author-title {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .sv-author-text {
        font-size: 15px;
        line-height: 1.65;
        text-align: right;
    }

    .sv-author-social {
        width: 100%;
        max-width: 270px;
        margin: 20px auto 0;
        padding-left: 0;
        border-left: 0;
    }

    .sv-social-btn {
        min-height: 40px;
        font-size: 14px;
    }
}