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

.author-recent-posts__title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin: 0 0 24px;
    color: #4d5c81;
    position: relative;
    padding-bottom: 12px;
}

.author-recent-posts__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #4d5c81;
}

.author-recent-posts__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.author-recent-posts__item {
    display: block;
    text-decoration: none;
    color: #000000;
    transition: color 0.2s ease;
}

.author-recent-posts__item:hover {
    color: #4d5c81;
}

.author-recent-posts__post-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #000000;
    transition: color 0.2s ease;
}

.author-recent-posts__item:hover .author-recent-posts__post-title {
    color: #4d5c81;
}

.author-recent-posts__button {
    display: block;
    width: 100%;
    padding: 12px;
    border: 2px solid #000000;
    background: transparent;
    color: #000000;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.author-recent-posts__button:hover {
    background: #000000;
    color: #ffffff;
}

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

    .author-recent-posts__list {
        gap: 20px;
        margin-bottom: 24px;
    }
}