.author-contact {
    background: #ffffff;
    color: #000000;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(77, 92, 129, 0.25);
}

.author-contact__title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin: 0 0 20px;
    color: #4d5c81;
}

.author-contact__text {
    font-size: 13px;
    color: #7a869f;
}

.author-contact__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-contact__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(77, 92, 129, 0.05);
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.author-contact__link:hover {
    background: rgba(77, 92, 129, 0.1);
    color: #000000;
}

.author-contact__link-icon {
    width: 20px;
    text-align: center;
    color: #4d5c81;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-contact__link-icon-img {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 767px) {
    .author-contact {
        padding: 24px;
    }
}