.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.about-hero__list li {
    background: rgba(18, 13, 38, 0.05);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font-weight: 600;
    color: var(--lnu-black);
    border: 1px solid rgba(18, 13, 38, 0.08);
}

.about-hero__actions {
    margin-top: 0.5rem;
}

.about-hero__projects-button {
    gap: 0.65rem;
    font-weight: 600;
}

.about-hero__projects-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease-in-out;
}

.about-hero__projects-button:hover svg {
    transform: translateX(4px);
}

.about-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.about-hero__image-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(18, 13, 38, 0.05);
}

.about-hero__image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-hero__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    background: linear-gradient(180deg, #fefdf8 0%, #f5f7ff 100%);
}

.about-hero__slide {
    margin: 0;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-hero__slide.is-active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.about-hero__slide img {
    height: 100%;
    object-fit: cover;
}

.about-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    color: rgba(18, 13, 38, 0.6);
    z-index: 2;
    opacity: 0.35;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.about-hero__nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    opacity: 0.75;
}

.about-hero__nav:focus-visible {
    outline: 2px solid var(--lnu-yellow);
    outline-offset: 3px;
}

.about-hero__nav--prev {
    left: 14px;
}

.about-hero__nav--next {
    right: 14px;
}

.about-hero__nav svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.about-hero__counter {
    position: absolute;
    right: 16px;
    bottom: 14px;
    background: rgba(18, 13, 38, 0.78);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
    .about-hero__list {
        grid-template-columns: 1fr;
    }

    .about-hero__slider {
        aspect-ratio: 1 / 1;
    }

    .about-hero__nav {
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .about-hero__nav--prev {
        left: 12px;
    }

    .about-hero__nav--next {
        right: 12px;
    }
}
