.hero {
    background: linear-gradient(135deg, #0a3d62 0%, #2f9e44 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 24px;
    margin: 8px 0 20px 0;
}

.hero h1 {
    margin: 0 0 8px 0;
    font-size: 1.8rem;
}

.hero p {
    margin: 0 0 6px 0;
}

.hero-tags {
    font-weight: 600;
    opacity: 0.95;
}

.author-stack {
    margin: 12px 0;
    padding: 4px 0 10px;
    border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

.author-stack__title {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--md-default-fg-color--light);
    margin-bottom: 8px;
}

.author-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.author-card:last-child {
    margin-bottom: 0;
}

.author-card__photo {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--md-default-fg-color--lightest);
}

.author-card__name {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 5px;
}

.author-card__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-link--icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--md-default-fg-color--light);
    text-decoration: none;
    transition: color 120ms ease, transform 120ms ease;
}

.author-link--icon:hover {
    color: var(--md-primary-fg-color);
    transform: translateY(-1px);
}

.author-link--icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}