.la-stage {
    display: grid;
    grid-template-columns: 28px 1fr 2.4fr 1.8fr;
    gap: 0 24px;
    align-items: end;
}

/* Vertical rotated section label */
.la-vert-label {
    grid-column: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.28);
    font-family: 'Manrope', sans-serif;
    align-self: center;
    user-select: none;
}

/* Left: previous person thumbnail */
.la-thumb-prev {
    grid-column: 2;
    align-self: end;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.la-thumb-prev img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.la-thumb-prev::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.52);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.la-thumb-prev:hover::after {
    opacity: 0.15;
}

.la-thumb-prev:hover img {
    transform: scale(1.06);
}

/* Center: main photo */
.la-main-wrap {
    grid-column: 3;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
    background: rgba(26, 26, 26, 0.06);
}

.la-main-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Right panel: info text + 3 thumbnails */
.la-right-panel {
    grid-column: 4;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Right thumbnails row + arrows */
.la-right-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-shrink: 0;
}

.la-right-thumbs {
    display: flex;
    gap: 8px;
    flex: 1;
}

.la-right-thumb {
    flex: 1;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.la-right-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.52);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.la-right-thumb:hover::after {
    opacity: 0.1;
}

.la-right-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.la-right-thumb:hover img {
    transform: scale(1.06);
}

/* Arrow buttons */
.la-arrows {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-shrink: 0;
}

.la-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(26, 26, 26, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s, border-color 0.22s, transform 0.12s;
    flex-shrink: 0;
    color: var(--text);
    padding: 0px;
}

.la-arrow-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

.la-arrow-btn:hover {
    background: var(--dark, #1a1a1a);
    border-color: var(--dark, #1a1a1a);
    color: #fff;
}

.la-arrow-btn:active {
    transform: scale(0.92);
}

/* (Legacy/alt) generic thumb + active states */
.la-thumb {
    flex: 1;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.la-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.la-thumb.is-active::after {
    opacity: 0;
}

.la-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.la-thumb:hover img {
    transform: scale(1.06);
}

/* Gold bar under active thumb */
.la-thumb.is-active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    z-index: 1;
}

/* Info column (inside .la-right-panel) */
.la-info-col {
    padding-top: 8px;
}

.la-person-number {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--light-muted);
    margin-bottom: 24px;
    font-family: 'Manrope', sans-serif;
}

.la-person-name {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(32px, 3vw, 52px);
    font-weight: 300;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.1;
}

.la-person-title {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.la-person-bio {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin: 28px 0 0;
}

/* new Css */

.la-award-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px 32px;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.la-award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* background: linear-gradient(90deg, var(--gold) 13%, rgba(255, 204, 2, 0.2) 100%) !important; */
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.la-award-item:hover {
    border-color: rgba(26, 26, 26, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.la-award-item:hover::before {
    transform: scaleX(1);
}

.la-award-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.04);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.la-award-item:hover .la-award-icon {
    background: var(--text);
    color: #ffffff;
    transform: rotate(12deg) scale(1.1);
}

.la-award-icon svg {
    width: 22px;
    height: 22px;
}


/* Mobile */
@media (max-width: 768px) {
    .la-stage {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .la-vert-label {
        display: none;
    }

    .la-thumb-prev {
        display: none;
    }

    .la-main-wrap {
        grid-column: 1;
        aspect-ratio: 4 / 5;
    }

    .la-right-panel {
        grid-column: 1;
        margin-top: 28px;
    }

    .la-right-thumbs-wrap {
        margin-top: 20px;
    }

    .la-arrows {
        flex-direction: row;
    }
}