*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f7f7f4;
    color:#111;
}

a{
    color:inherit;
}

.pj-header{
    height:82px;
    padding:0 48px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(247,247,244,.9);
    backdrop-filter:blur(16px);
    position:sticky;
    top:0;
    z-index:10;
    border-bottom:1px solid rgba(0,0,0,.06);
}

.pj-logo{
    font-size:28px;
    font-weight:900;
    text-decoration:none;
    letter-spacing:-.04em;
}

.pj-logo span{
    color:#8b5cf6;
}

.pj-header nav{
    display:flex;
    gap:26px;
}

.pj-header nav a{
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    color:#555;
}

.pj-header nav a.active,
.pj-header nav a:hover{
    color:#111;
}

.journal-hero{
    max-width:1180px;
    margin:0 auto;
    padding:110px 32px 80px;
}

.journal-kicker{
    margin:0 0 18px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:#8b5cf6;
}

.journal-hero h1{
    max-width:980px;
    margin:0;
    font-size:72px;
    line-height:.96;
    letter-spacing:-.07em;
}

.journal-hero > p:last-child{
    max-width:680px;
    margin:32px 0 0;
    font-size:21px;
    line-height:1.55;
    color:#555;
}

.journal-featured{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px 80px;
}

.featured-card{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    min-height:520px;
    overflow:hidden;
    background:#111;
    color:#fff;
    border-radius:34px;
    text-decoration:none;
}

.featured-img{
    min-height:520px;
    background:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.featured-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.featured-content{
    padding:56px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.featured-content h2{
    margin:0;
    font-size:48px;
    line-height:1;
    letter-spacing:-.05em;
}

.featured-content p:not(.journal-kicker){
    margin:24px 0 0;
    font-size:18px;
    line-height:1.6;
    color:#d1d5db;
}

.read-link{
    display:inline-block;
    margin-top:28px;
    font-weight:900;
}

.journal-list{
    max-width:1180px;
    margin:0 auto;
    padding:20px 32px 80px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:30px;
}

.section-head h2{
    margin:0;
    font-size:42px;
    letter-spacing:-.05em;
}

.section-head p{
    max-width:420px;
    margin:0;
    color:#666;
    line-height:1.55;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.article-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.2s ease;
}

.article-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 70px rgba(0,0,0,.1);
}

.article-img{
    height:230px;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.article-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.article-content{
    padding:26px;
}

.article-meta{
    display:flex;
    gap:10px;
    margin-bottom:14px;
    color:#777;
    font-size:12px;
    font-weight:800;
}

.article-content h3{
    margin:0;
    font-size:24px;
    line-height:1.12;
    letter-spacing:-.04em;
}

.article-content p{
    margin:16px 0 0;
    color:#666;
    line-height:1.6;
}

.journal-empty{
    padding:60px;
    background:#fff;
    border-radius:28px;
    text-align:center;
}

.journal-quote{
    padding:90px 32px;
    background:#111;
    color:#fff;
    text-align:center;
}

.journal-quote blockquote{
    max-width:900px;
    margin:0 auto;
    font-size:48px;
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.05em;
}

.journal-cta{
    max-width:900px;
    margin:0 auto;
    padding:90px 32px;
    text-align:center;
}

.journal-cta h2{
    margin:0;
    font-size:52px;
    letter-spacing:-.06em;
}

.journal-cta p{
    margin:18px 0 30px;
    color:#666;
    font-size:19px;
}

.journal-cta a{
    display:inline-flex;
    padding:16px 24px;
    border-radius:999px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-weight:900;
}

@media(max-width:900px){
    .pj-header{
        padding:0 22px;
    }

    .pj-header nav{
        gap:14px;
    }

    .journal-hero{
        padding:70px 22px 50px;
    }

    .journal-hero h1{
        font-size:46px;
    }

    .featured-card{
        grid-template-columns:1fr;
    }

    .featured-img{
        min-height:260px;
    }

    .featured-content{
        padding:34px;
    }

    .featured-content h2{
        font-size:34px;
    }

    .section-head{
        display:block;
    }

    .section-head p{
        margin-top:12px;
    }

    .article-grid{
        grid-template-columns:1fr;
    }

    .journal-quote blockquote{
        font-size:32px;
    }

    .journal-cta h2{
        font-size:36px;
    }
}


.article-page{
    max-width:1180px;
    margin:0 auto;
    padding:70px 32px 0;
}

.article-hero{
    max-width:920px;
    margin:0 auto 48px;
}

.back-link{
    display:inline-flex;
    margin-bottom:34px;
    color:#666;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
}

.back-link:hover{
    color:#111;
}

.article-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:18px;
}

.article-tags span{
    display:inline-flex;
    padding:7px 11px;
    border-radius:999px;
    background:#fff;
    color:#555;
    font-size:12px;
    font-weight:900;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.article-hero h1{
    margin:0;
    font-size:76px;
    line-height:.95;
    letter-spacing:-.075em;
}

.article-subtitle{
    max-width:760px;
    margin:28px 0 0;
    color:#555;
    font-size:24px;
    line-height:1.45;
}

.article-info{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
    color:#777;
    font-size:13px;
    font-weight:900;
}

.article-cover{
    margin:0 auto 62px;
    max-width:1080px;
    height:560px;
    border-radius:36px;
    overflow:hidden;
    background:#111;
}

.article-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.article-body{
    max-width:780px;
    margin:0 auto;
}

.article-box{
    margin:36px 0;
    padding:26px;
    border-radius:24px;
    background:#111;
    color:#fff;
}

.article-box.light{
    background:#fff;
    color:#111;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.article-box strong{
    display:block;
    margin-bottom:10px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.14em;
}

.article-box p{
    margin:0;
    font-size:18px;
    line-height:1.65;
}

.article-body blockquote{
    margin:54px 0;
    padding:0;
    border:0;
    font-size:42px;
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.055em;
    color:#111;
}

.article-content{
    color:#222;
    font-size:19px;
    line-height:1.85;
}

.article-content p{
    margin:0 0 26px;
}

.article-content h2{
    margin:56px 0 18px;
    font-size:38px;
    line-height:1.08;
    letter-spacing:-.05em;
}

.article-content h3{
    margin:42px 0 14px;
    font-size:28px;
    line-height:1.15;
    letter-spacing:-.04em;
}

.article-content ul,
.article-content ol{
    margin:0 0 28px 24px;
    padding:0;
}

.article-content li{
    margin-bottom:10px;
}

.article-content a{
    font-weight:900;
    text-decoration-thickness:2px;
}

.article-content img{
    max-width:100%;
    height:auto;
    border-radius:24px;
    margin:30px 0;
}

.article-conclusion{
    margin-top:60px;
    padding:36px;
    border-radius:28px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.article-conclusion h2{
    margin:0 0 14px;
    font-size:30px;
    letter-spacing:-.04em;
}

.article-conclusion p{
    margin:0;
    color:#444;
    font-size:18px;
    line-height:1.75;
}

@media(max-width:900px){
    .article-page{
        padding:42px 22px 0;
    }

    .article-hero h1{
        font-size:44px;
    }

    .article-subtitle{
        font-size:20px;
    }

    .article-cover{
        height:280px;
        border-radius:24px;
        margin-bottom:38px;
    }

    .article-body blockquote{
        font-size:30px;
    }

    .article-content{
        font-size:17px;
    }

    .article-content h2{
        font-size:30px;
    }
}