.header-avatar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ffffff;
    border: 3px solid var(--color-yellow);
    box-shadow: 0 8px 22px rgba(21, 21, 21, 0.16);
    overflow: hidden;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.header-avatar-link:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: var(--color-red);
    box-shadow: 0 12px 30px rgba(224, 0, 27, 0.22);
}

.header-avatar-link:focus-visible {
    outline: 4px solid rgba(255, 210, 0, 0.55);
    outline-offset: 4px;
}

.header-avatar-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 999px;
}

.home-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-banner-link:hover .home-banner-image {
    transform: scale(1.01);
}

.home-banner-image {
    transition: transform 180ms ease;
}

.home-engagement-banner-section {
    padding-top: 18px;
    padding-bottom: 18px;
}

.home-engagement-banner {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    background: #ffffff;
}

.home-intro-grid-single {
    grid-template-columns: 1fr;
}

.home-intro-grid-single .home-intro-card {
    max-width: none;
}

.home-engagement-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.home-engagement-list li {
    position: relative;
    padding-left: 30px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--color-black);
}

.home-engagement-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--color-red);
    box-shadow: 0 0 0 5px rgba(224, 0, 27, 0.12);
}

@media (max-width: 820px) {
    .header-inner {
        justify-content: space-between;
    }

    .header-avatar-link {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .home-engagement-banner {
        border-radius: 20px;
    }

    .home-engagement-list li {
        padding-left: 26px;
    }
}

@media (max-width: 460px) {
    .header-avatar-link {
        width: 46px;
        height: 46px;
    }

    .home-engagement-banner-section {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .home-engagement-banner {
        border-radius: 16px;
    }
}