.home-hero__panel {
    overflow: hidden;
    padding: clamp(32px, 6vw, 72px);
}

.home-hero__title {
    max-width: 760px;
    margin: 14px 0 20px;
    color: var(--color-brown-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.home-hero__description {
    max-width: 720px;
    margin-bottom: 30px;
    color: var(--color-muted);
    font-size: 1.1rem;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero__actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-color: var(--color-green);
    border-radius: 999px;
    background: var(--color-green);
    padding: 12px 22px;
    font-weight: 600;
}

.home-hero__actions .btn-primary:hover {
    border-color: var(--color-green-dark);
    background: var(--color-green-dark);
}

.home-hero__note {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.home-hero__symbol {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(47, 107, 79, 0.95),
            rgba(36, 82, 61, 0.98)
        );
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(47, 107, 79, 0.22);
}

.home-hero__symbol i {
    font-size: 7rem;
    line-height: 1;
}

.home-hero__symbol span {
    padding: 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}

.home-features {
    padding-top: 32px;
}

.home-feature {
    height: 100%;
    padding: 28px;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.home-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(72, 54, 38, 0.12);
}

.home-feature i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(47, 107, 79, 0.1);
    color: var(--color-green);
    font-size: 1.4rem;
}

.home-feature h2 {
    margin-bottom: 10px;
    color: var(--color-brown-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.home-feature p {
    margin-bottom: 0;
    color: var(--color-muted);
}

/* =========================================
   ССЫЛКИ-КАРТОЧКИ ГЛАВНОЙ
   ========================================= */

.home-feature-link {
    display: block;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.home-feature-link:hover {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   ПОСЛЕДНИЕ ДОБАВЛЕННЫЕ ЛЮДИ
   ========================================= */

.home-feature-latest {
    overflow: hidden;
}

.home-latest-people {
    display: flex;
    flex-direction: column;
    gap: 6px;

    max-height: 112px;

    overflow: hidden;
}

.home-latest-person {
    display: block;

    overflow: hidden;

    color: var(--color-muted);
    text-decoration: none;

    font-size: 0.92rem;
    line-height: 1.25;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-latest-person:hover {
    color: var(--color-green);
    text-decoration: underline;
}

.home-latest-empty {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.home-hero__tree {
    display: block;

    width: 400px;
    height: 300px;

    margin: -10px auto -25px;

    object-fit: contain;
}

@media (max-width: 991.98px) {
    .home-hero__symbol {
        min-height: 240px;
    }
}
