body.work-detail-page {
    background: #FAFAFA;
    overflow-x: hidden;
    min-height: auto;
}

.project-intro-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.intro-slogan {
    font-family: 'AeonikPro', sans-serif;
    font-size: 3.8vw;
    font-weight: 500;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.intro-right-content {
    padding-top: 190px;
}

.intro-desc {
    font-family: 'AeonikPro', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    color: #757575;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 95%;
}

.intro-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 95%;
    gap: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-label {
    font-family: 'AeonikPro', sans-serif;
    font-size: 13px;
    color: #BDBDBD;
    font-weight: 400;
}

.meta-value {
    font-family: 'AeonikPro', sans-serif;
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    line-height: 1.4;
}

.project-hero-section {
    width: 100%;
    margin-bottom: 80px;
}

.hero-image-wrap {
    width: 100%;
    display: block;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.project-overview-section {
    background: #FAFAFA;
    padding-top: 80px;
    padding-bottom: 100px;
}

.overview-text-block {
    margin-bottom: 80px;
}

.overview-content-row {
    margin-left: -20px;
}

.overview-text {
    font-family: 'AeonikPro', sans-serif;
    font-size: clamp(16px, 1.3vw, 20px);
    color: #111111;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}

.overview-text:last-child {
    margin-bottom: 0;
}

.overview-image-wrapper {
    width: 100%;
    display: block;
}

.overview-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.project-gallery-section {
    padding-bottom: 120px;
}

.gallery-row>div {
    display: flex;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 2px;
}

.project-credits-section {
    padding-bottom: 100px;
}

.credits-list {
    display: flex;
    flex-direction: column;
}

.credit-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
}

.credit-role {
    font-family: 'AeonikPro', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    color: #111111;
    font-weight: 500;
    line-height: 1.4;
}

.credit-name {
    font-family: 'AeonikPro', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    color: #757575;
    font-weight: 400;
    line-height: 1.4;
}

.service-divider {
    border: 0;
    border-top: 1px solid #BDBDBD;
}

.explore-section {
    padding-bottom: 100px;
}

.explore-title {
    font-family: 'AeonikPro', sans-serif;
    font-size: clamp(40px, 5.5vw, 85px);
    font-weight: 500;
    color: #111111;
    margin: 0;
    letter-spacing: -0.02em;
}

.next-project-link {
    display: block;
    text-decoration: none;
}

.next-project-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.next-project-wrapper,
.next-project-wrapper * {
    cursor: none !important;
}

.next-project-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.next-project-wrapper:hover .next-project-img {
    transform: scale(1.05);
}

.btn-next-project {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    background-color: #FFFFFF;
    color: #111111;
    font-family: 'AeonikPro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.next-project-wrapper:hover .btn-next-project {
    opacity: 1;
    transform: scale(1);
}

.btn-next-project i {
    font-size: 18px;
}

.project-credits-section,
.project-credits-section .label-side,
.project-credits-section .credit-role,
.project-credits-section .credit-name,
.project-credits-section .credit-divider {
    transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.project-credits-section.dark-mode {
    background-color: #111111;
}

.project-credits-section.dark-mode .label-side {
    color: #BDBDBD;
}

.project-credits-section.dark-mode .credit-role {
    color: #BDBDBD;
}

.project-credits-section.dark-mode .credit-name {
    color: #ffffff;
}

.project-credits-section.dark-mode .credit-divider {
    border-color: #333333; 
    opacity: 1; 
}

.explore-section,
.explore-section .explore-title,
.explore-section .btn-next-project {
    transition: background-color 0.6s ease, color 0.6s ease;
}

.explore-section.dark-mode {
    background-color: #111111;
}

.explore-section.dark-mode .explore-title {
    color: #ffffff;
}

@media (max-width: 1024px) and (min-width: 768px) {

    .project-intro-section {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .intro-slogan {
        font-size: 5vw;
    }

    .intro-right-content {
        padding-top: 100px;
    }

    .intro-desc {
        max-width: 100%;
    }

    .intro-meta {
        max-width: 100%;
        gap: 16px;
    }

    .project-hero-section {
        margin-bottom: 60px;
    }

    .project-overview-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .overview-content-row {
        margin-left: 0;
    }

    .overview-text-block {
        margin-bottom: 60px;
    }

    .project-gallery-section {
        padding-bottom: 90px;
    }

    .project-credits-section {
        padding-bottom: 0;
    }

    .explore-section {
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .btn-next-project {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0) !important;
        opacity: 0 !important;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .next-project-wrapper:hover .btn-next-project {
        opacity: 0 !important;
        transform: translate(-50%, -50%) scale(0) !important;
    }

    .next-project-wrapper.show-button .btn-next-project {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1) !important;
        pointer-events: auto;
    }

    .credit-divider {
        margin-top: 80px !important;
    }
}

@media (max-width: 767px) {
    .project-intro-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .intro-slogan {
        font-size: clamp(28px, 8vw, 42px);
        letter-spacing: -0.01em;
        margin-bottom: 40px;
    }

    .intro-right-content {
        padding-top: 0;
    }

    .intro-desc {
        max-width: 100%;
        font-size: 15px;
        margin-bottom: 24px;
    }

    .intro-meta {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between; 
        width: 100% !important;
        max-width: 100% !important;
        gap: 0; 
    }

    .meta-item {
        flex: 0 0 auto; 
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }

    .meta-label {
        font-size: 10px;
    }

    .meta-value {
        font-size: 11px;
    }

    .project-hero-section {
        margin-bottom: 50px;
    }

    .project-overview-section {
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .overview-content-row {
        margin-left: 0;
    }

    .label-side {
        display: block;
        margin-bottom: 10px !important;
        font-size: 14px;
    }

    .overview-text-block {
        margin-bottom: 40px;
    }

    .overview-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .project-gallery-section {
        padding-bottom: 70px;
    }

    .gallery-row {
        gap: 12px !important;
    }

    .gallery-img {
        border-radius: 4px;
    }

    .project-credits-section {
        padding-bottom: 0;
    }

    .project-credits-section .col-md-2.offset-md-5 {
        margin-left: 0 !important;
    }

    .credit-divider {
        margin-top: 60px !important;
    }

    .credit-role,
    .credit-name {
        font-size: 14px;
    }

    .credit-item {
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

    .explore-section {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .explore-title {
        font-size: clamp(36px, 10vw, 56px);
        margin-bottom: 24px;
    }

    .next-project-wrapper {
        border-radius: 6px;
    }

    .btn-next-project {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0) !important;
        opacity: 0 !important;
        pointer-events: none;
    }

    .next-project-wrapper:hover .btn-next-project {
        opacity: 0 !important;
        transform: translate(-50%, -50%) scale(0) !important;
    }

    .next-project-wrapper.show-button .btn-next-project {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1) !important;
        pointer-events: auto;
    }
}