.author-card {
    margin: 24px 0;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.author-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.author-card__profile {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.author-card__photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.author-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-card__name {
    margin: 0 0 4px !important;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none !important;
}

p.author-card__name {
    text-decoration: none;
}

.author-card__job {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #64748b;
}

.author-card__social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.author-card__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none !important;
}

.author-card__social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.author-card__fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #eef3ff;
    border-radius: 12px;
    min-height: 100%;
}

.author-card__fact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #1e3a5f;
}

.author-card__fact-title {
    margin: 0 0 4px !important;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #1e3a5f;
}

.author-card__fact-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #475569;
}

.author-card__bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.author-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
}

.author-card__text p {
    margin: 0 0 12px !important;
}

.author-card__text p:last-child {
    margin-bottom: 0 !important;
}

.author-card__more {
    align-self: flex-start;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none !important;
}

.author-card__more:hover {
    color: #2563eb;
}

.author-card__date {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #94a3b8;
}

@media (max-width: 990px) {
    .author-card {
        padding: 20px 16px;
    }

    .author-card__header {
        flex-direction: column;
        align-items: stretch;
    }

    .author-card__social {
        justify-content: flex-start;
    }

    .author-card__facts {
        grid-template-columns: 1fr;
    }

    .author-card__name {
        font-size: 22px;
    }
}
