.about-wrapper {
    width: 100%;
    max-width: 1500px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: solid .5px #44474D;
    border-right: solid .5px #44474D;
    z-index: 2;
}

@media screen and (max-width: 1500px) {
    .about-wrapper {
        overflow: hidden;
    }

}

/* divider */
.divider-container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.divider-container .divider {
    width: 100%;
    max-width: calc(400px + 50px);
    height: 100%;
    border-left: solid .5px #44474D;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .divider-container .divider {
        opacity: 0;
    }
}

/* about section */
.about-wrapper .about-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    border-top: solid .5px #44474D;
    border-bottom: solid .5px #44474D;
}

@media screen and (max-width: 1024px) {
    .about-wrapper .about-section {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
}

/* text */
.text-container {
    width: auto;
    min-width: 400px;
    max-width: 700px;
    height: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 50px 25px;
}

@media screen and (max-width: 1024px) {
    .text-container {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }
}

.text-container.row {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.text-container .section-title {
    font-family: var(--font-secondary-medium);
    font-weight: normal;
    font-size: 24px;
    color: #D5DFEF;
    text-align: left;
}

.text-container .section-title::before {
    content: "—";
    color: inherit;
    font-size: inherit;
    margin-right: 10px;
    opacity: .5;
}

.text-container .text-subcontainer {
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.text-subcontainer .section-desc {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 24px;
    color: #B6BECC;
    line-height: 1.5;
    text-align: left;
}

.text-subcontainer .section-desc-alt {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 20px;
    color: #B6BECC;
    line-height: 1.5;
    text-align: left;
    margin-top: auto;
}

/* about image */
.about-section .image-wrapper {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-left: solid .5px #44474D;
    position: relative;
    overflow: visible;
}

/* Mobile: remove left border and add top border when wrapped */
@media screen and (max-width: 1024px) {
    .about-section .image-wrapper {
        border-left: none;
        border-top: solid .5px #44474D;
        width: 100%;
    }
}

.about-section .image-wrapper::before,
.about-section .image-wrapper::after {
    content: '';
    width: 24px;
    height: 30px;
    background: url('/assets/img/artwork/decorations/sparkle.svg?v=1') no-repeat center/contain;
    position: absolute;
    bottom: -15px;
    z-index: 100;
}

.about-section .image-wrapper::before {
    left: -12px;
}

.about-section .image-wrapper::after {
    right: -12px;
}

.image-wrapper .image-container {
    width: auto;
    max-width: 400px;
    height: auto;
    max-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* .image-wrapper .image-container:hover {
    border-radius: 150px 0px 150px 0px;
} */

.image-wrapper .image-container::before,
.image-wrapper .image-container::after {
    content: '';
    width: 24px;
    height: 30px;
    background: url('/assets/img/artwork/decorations/sparkle.svg?v=1') no-repeat center/contain;
    position: absolute;
    top: -15px;
    z-index: 100;
}

.image-wrapper .image-container::before {
    left: -12px;
}

.image-wrapper .image-container::after {
    right: -12px;
}

.image-wrapper .spotlight-img {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    /* mix-blend-mode: luminosity; */
    transition: none;
}

@media screen and (max-width: 1024px) {
    .image-wrapper .spotlight-img {
        opacity: 1;
        visibility: visible;
    }
}

/* focus section */
.focus-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    border-top: solid .5px #44474D;
    border-bottom: solid .5px #44474D;
}

@media screen and (max-width: 1024px) {
    .focus-section {
        flex-direction: column;
        gap: 0;
    }
}

.focus-section .focus-items-wrapper {
    width: 100%;
    max-width: calc(400px + 50px);
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    border-left: solid .5px #44474D;
}

@media screen and (max-width: 1024px) {
    .focus-section .focus-items-wrapper {
        border-left: none;
        border-top: solid .5px #44474D;
        max-width: 100%;
        min-height: auto;
    }
}

.focus-section .focus-items-wrapper::before,
.focus-section .focus-items-wrapper::after {
    content: '';
    width: 24px;
    height: 30px;
    background: url('/assets/img/artwork/decorations/sparkle.svg?v=1') no-repeat center/contain;
    position: absolute;
    top: -15px;
    z-index: 100;
}

.focus-section .focus-items-wrapper::before {
    left: -12px;
}

.focus-section .focus-items-wrapper::after {
    right: -12px;
}

.focus-items-wrapper .focus-item {
    width: 100%;
    height: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    padding: 25px;
    position: relative;
    overflow: visible;
    border-bottom: solid .5px #44474D;
}

.focus-items-wrapper .focus-item:last-child::before,
.focus-items-wrapper .focus-item:last-child::after {
    content: '';
    width: 24px;
    height: 30px;
    background: url('/assets/img/artwork/decorations/sparkle.svg?v=1') no-repeat center/contain;
    position: absolute;
    bottom: -15px;
    z-index: 100;
}

.focus-items-wrapper .focus-item:last-child::before {
    left: -12px;
}

.focus-items-wrapper .focus-item:last-child::after {
    right: -12px;
}

.focus-items-wrapper .focus-item:last-child {
    border-bottom: none;
}

.focus-item .focus-title {
    font-family: var(--font-primary-italic);
    font-weight: normal;
    font-size: 24px;
    color: #D5DFEF;
    text-align: left;
    line-height: 1;
}

.focus-item .focus-desc {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 16px;
    color: #B6BECC;
    line-height: 1.5;
    text-align: left;
}

/* image dedcoration */
.image-decor {
    width: 100%;
    height: 100px;
    background: url('/assets/img/artwork/icons/nk-eye-alt.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    .image-decor {
        background: url('/assets/img/artwork/banners/header/header-banner-9.jpg');
        background-size: fill;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}

/* skills wrapper */
.skills-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-top: solid .5px #44474D;
    border-bottom: solid .5px #44474D;
    overflow: hidden;
    position: relative;
}

.skills-wrapper .skill-item {
    font-family: var(--font-secondary-medium);
    font-weight: normal;
    font-size: clamp(32px, 8vw, 64px);
    color: #D5DFEF;
    white-space: nowrap;
    line-height: 1;
}

.skills-wrapper .skill-divider::before {
    content: '*';
    font-family: var(--font-secondary-light);
    font-weight: normal;
    font-size: clamp(24px, 8vw, 48px);
    color: #B6BECC;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
    transform: translateY(clamp(9px, 2.5vw, 12px));
}

/* skills loop track */
.skills-track {
    display: flex;
    width: max-content;
    will-change: transform;
    user-select: none;
}

.skills-seq {
    display: flex;
    align-items: center;
}

.skills-seq .skill-item {
    margin-right: clamp(25px, 2.5vw, 35px);
}

.skills-seq .skill-divider {
    display: inline-block;
    margin-right: clamp(25px, 2.5vw, 35px);
}

.skills-seq .skill-item:last-child,
.skills-seq .skill-divider:last-child {
    margin-right: clamp(25px, 2.5vw, 35px);
}

/* fade edges for skills wrapper */
.skills-wrapper::before,
.skills-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(24px, 8%, 120px);
    pointer-events: none;
    z-index: 5;
}

.skills-wrapper::before {
    left: 0;
    background: linear-gradient(to right,
            #131313 0%,
            #00000000 100%);
}

.skills-wrapper::after {
    right: 0;
    background: linear-gradient(to left,
            #131313 0%,
            #00000000 100%);
}

/* Focus Hover Image */
.selected-project .focus-hover-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: auto;
    object-fit: cover;
    transform: translateX(-50%) translateY(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Disable cursor trail on mobile/tablet */
@media screen and (max-width: 1024px) {
    .cursor-trail-image {
        display: none;
    }
}

/* Scroll Reveal Text Effect */
.scroll-reveal-word {
    display: inline-block;
}