.philosophy-detail-page {
    background: #f8f4ee;
    color: #000;
}

.philosophy-detail-box-container {
    max-width: var(--site-max-width, 1440px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(var(--site-px, 0px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--site-px, 0px), env(safe-area-inset-right, 0px));
}

.philosophy-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 35.375rem;
    background-color: transparent;
    background-image: url('/images/philoshophy/nose_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding: 0;
}

.philosophy-detail-hero-copy {
    max-width: 500px;
    color: #1d1a16;
}

.philosophy-detail-hero-copy h1 {
    font-family: var(--pd-font-brand);
    font-size: var(--banner-title-size-desktop);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 0.9rem;
}

.philosophy-detail-hero-subtitle {
    font-family: var(--pd-font-body);
    font-size: clamp(1.15rem, 1.04rem + 0.3vw, 1.35rem);
    font-weight: var(--fw-medium, 500);
    line-height: 1.35;
    margin: 0 0 1.1rem;
}

.philosophy-detail-hero-description {
    font-family: var(--pd-font-body);
    font-size: var(--text-lede);
    font-weight: var(--fw-light, 300);
    line-height: 1.45;
    margin: 0;
    max-width: 70%;
}

.philosophy-detail-content {
    width: 100%;
    margin: 2.5rem 0 3.5rem;
}

.philosophy-detail-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.25rem;
    margin-bottom: 5rem;
}

.philosophy-detail-section-left h2 {
    margin: 0 0 0.25rem;
    font-family: var(--pd-font-brand);
    font-size: clamp(2.6rem, 2.2rem + 1.05vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.philosophy-detail-subheading {
    margin: 0;
    font-family: var(--pd-font-brand);
    font-size: clamp(1.15rem, 1.04rem + 0.3vw, 1.35rem);
    font-weight: var(--fw-regular, 400);
    line-height: 1.35;
}

.philosophy-detail-section-right img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6.5;
    object-fit: cover;
    margin-bottom: 1rem;
}

.philosophy-detail-section-right p {
    margin: 0 0 0.375rem;
    font-family: var(--pd-font-body);
    font-size: var(--text-lede);
    font-weight: var(--fw-light, 300);
    line-height: 1.45;
    max-width: 70%;
}

.philosophy-detail-section .philosophy-detail-section-right p + p {
    margin-top: 1.35rem;
}

.philosophy-detail-section-right.no-image {
    padding-top: 0;
}

.philosophy-recommended {
    width: 100%;
    margin: 0;
    background: #fff;
    padding: 3.25rem 0 3.5rem;
}

.philosophy-recommended h3 {
    margin: 0 0 1.6rem;
    font-family: var(--pd-font-brand);
    font-size: clamp(2rem, 1.8rem + 0.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
}

.philosophy-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.philosophy-recommended-card {
    color: #000;
}

.philosophy-recommended-link {
    color: #000;
    display: block;
    text-decoration: none;
}

.philosophy-recommended-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin-bottom: 0.6rem;
}

.philosophy-recommended-card h4 {
    display: block;
    margin: 0 0 0.5rem;
    font-family: var(--pd-font-body);
    font-size: 1rem;
    font-weight: var(--fw-bold, 700);
    line-height: 1.35;
}

.philosophy-recommended .read-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.95rem;
    font-family: var(--pd-font-body);
    font-weight: var(--fw-light, 300);
    color: #000;
    border-bottom: 1px solid #000;
    padding: 0 0 6px;
    line-height: 1;
    text-decoration: none;
}

.philosophy-recommended .read-more-arrow {
    margin-left: auto;
    padding-left: 16px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 64rem) {
    .philosophy-detail-hero {
        height: auto;
        min-height: 360px;
        padding: 64px 0;
        align-items: flex-start;
        background-position-x: 58%;
        background-position-y: center;
    }

    .philosophy-detail-section {
        grid-template-columns: 1fr;
    }

    .philosophy-recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48rem) {
    .philosophy-detail-hero {
        --philosophy-detail-hero-bg-x: 45%;
        --philosophy-detail-hero-bg-y: 20%;
        background-size: auto 118%;
        background-position-x: var(--philosophy-detail-hero-bg-x);
        background-position-y: var(--philosophy-detail-hero-bg-y);
        height: 50vh;
        min-height: 0;
        box-sizing: border-box;
        padding: 0;
        align-items: center;
        overflow: hidden;
    }

    @supports (height: 50dvh) {
        .philosophy-detail-hero {
            height: 50dvh;
        }
    }

    .philosophy-detail-hero .philosophy-detail-box-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .philosophy-detail-hero-copy {
        max-width: min(22rem, 80vw);
    }

    .philosophy-detail-hero-copy h1 {
        font-size: var(--banner-title-size-tablet);
        line-height: 1.12;
        margin-bottom: clamp(0.8rem, 3vw, 1.2rem);
    }

    .philosophy-detail-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .philosophy-detail-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .philosophy-detail-content {
        margin: 1.5rem 0 2.5rem;
    }

    .philosophy-detail-section {
        gap: 1.5rem;
        margin-bottom: 3.25rem;
    }

    .philosophy-detail-section-conclusion {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-bottom: 0;
        background: #e6e6de;
        padding: 2rem 1.5rem 2.2rem;
    }

    .philosophy-detail-section-conclusion .philosophy-detail-section-left h2 {
        font-size: clamp(2rem, 1.5rem + 2.6vw, 2.5rem);
        margin: 0;
    }

    .philosophy-detail-section-conclusion .philosophy-detail-section-right p {
        max-width: 100%;
        margin: 0;
    }

    .philosophy-detail-section-left h2 {
        font-size: 1.25rem;
    }

    .philosophy-detail-section-right img {
        aspect-ratio: 16 / 9;
    }

    .philosophy-recommended-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.9rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .philosophy-recommended-card {
        display: block;
        flex: 0 0 86%;
        scroll-snap-align: start;
    }

    .philosophy-recommended {
        padding: 2.2rem 0 2.5rem;
    }
}

@media (max-width: 36rem) {
    .philosophy-detail-hero-copy {
        max-width: min(20rem, 78vw);
    }

    .philosophy-detail-hero-copy h1 {
        font-size: var(--banner-title-size-mobile);
        line-height: 1.12;
        margin-bottom: clamp(0.75rem, 2.8vw, 1.1rem);
    }

    .philosophy-detail-hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
    }

    .philosophy-detail-hero-description {
        font-size: 0.88rem;
        line-height: 1.62;
    }
}
