.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 24px;
    margin-bottom: 24px;
    scroll-margin-top: 24px;
}

.hero__content,
.hero__sidebar {
    padding: 32px;
}

.hero__content {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--site__accent--dark);
    background: var(--site__accent--soft);
    border: 1px solid var(--site__accent--line);
    font-size: 12px;
    font-weight: 800;
}

.hero__title {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.10;
    letter-spacing: -0.035em;
}

.hero__text {
    max-width: 700px;
    margin-bottom: 28px;
    color: var(--site__text--soft);
    font-size: 17px;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__sidebar {
    display: grid;
    align-content: start;
    gap: 20px;
}

.profile__image {
    width: 116px;
    height: 116px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--site__surface--strong);
    border: 1px solid var(--site__border);
    box-shadow: var(--site__shadow--soft);
}

.profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__content h2 {
    margin-bottom: 8px;
    font-size: 24px;
}

.profile__content p {
    color: var(--site__text--soft);
    line-height: 1.65;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero__stat {
    padding: 16px;
    border-radius: var(--site__radius--small);
    background: var(--site__surface--soft);
    border: 1px solid var(--site__border);
}

.hero__stat strong,
.hero__stat span {
    display: block;
}

.hero__stat strong {
    margin-bottom: 4px;
    font-size: 18px;
}

.hero__stat span {
    color: var(--site__text--muted);
    font-size: 13px;
}
