.work_info-line_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- 4. Work Intro Section --- */
.work_intro-section {
    margin-top: 100px;
}
.work_intro-img-wr {
    width: 100%;
    overflow: hidden;
}
.work_intro-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    transform: translate(0px, 0px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- 6. Hero & Info Sections --- */
.work_info-line {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.work_info-line_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}
.work_label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--subtitle-color);
    letter-spacing: 0.05em;
}
.collection-card-tag {
    background-color: var(--pill-bg-color);
    color: var(--pill-text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
}

/* --- 7. Main Content Section --- */
.work_hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
}
.work_hero_right-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 2rem;
    border-radius: 1rem;
    background-color: var(--pill-bg-color);
    height: fit-content;
}

.carrot-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--subtitle-color);
}
.carrot-link:hover { color: var(--text-color); }

.work_hero_layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}
.project-stats-rich-2024 h2 {
    font-family: 'Overused', sans-serif;
    font-size: 4rem;
    font-weight: 600;
}
.project-stats-rich-2024 p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--subtitle-color);
}
.project-stats-rich-2024 h6 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--subtitle-color);
}

/* --- 8. Project Details & Parallax --- */
.work_project-details { padding-bottom: 4rem; }
.work_project-details_layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}
.work_project-context .rich-left {
    font-style: italic;
    color: var(--subtitle-color);
}
.rich-left p, .project-details-rich p {
     margin-bottom: 1.5em;
}
.rich-left a, .project-details-rich a {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.project-details-rich h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 2rem 0;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.w-richtext-figure-type-image {
    margin: 2rem 0;
}
.w-richtext-figure-type-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.work_parallax { padding: 4rem 0; }
.work_parallax-wr {
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 100vh;
    overflow: hidden;
}
.work_parallax_img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(-10%);
}
.works_image-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--subtitle-color);
    font-style: italic;
}

/* --- 9. Testimonial Section --- */
.work_testimonial {
    padding: 5rem 0;
    background-color: var(--pill-bg-color);
}
.work_testimonial-text {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}
.work_testimonial_person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.work_testimonial-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.work_testimonial_name-wr {
    text-align: center;
}
.work_testimonal-name { 
    font-weight: 600;
    text-align: center;
}
.work_person-title { 
    color: var(--subtitle-color);
    text-align: center;
}

/* --- 10. Related Work --- */
.work_related { padding: 5rem 0; }
.work_related-title-wr {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.related-title {
    font-size: 1.2rem;
    color: var(--subtitle-color);
}
.grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* --- 12. Responsive Adjustments --- */
@media (max-width: 991px) {
    .work_hero_layout, .work_project-details_layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .work_hero_right-column {
        padding: 1.5rem;
    }
}