/* Single Post specific styles for アーキテクト・スタジオ */

/* ==== Aesthetic Enhancements ==== */
body.single{
    background:#f5f5f7;
}
.single .site-main{
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 20px;
}
.single article{
    background:#fff;
    padding:50px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}
.single .entry-header{
    margin-bottom:50px;
}
.single .entry-header h1{
    font-family:"Noto Sans JP", sans-serif;
    font-weight:700;
    font-size:2.8rem;
    color:#222;
    margin-bottom:15px;
}
.single .entry-meta{
    font-size:0.85rem;
    color:#999;
    letter-spacing:0.05em;
    text-transform:uppercase;
}
/* Featured image */
.single .post-thumbnail{
    margin-bottom:40px;
}
.single .post-thumbnail img{
    width:100%;
    height:auto;
    border-radius:8px;
}
/* Content */
.single .entry-content p{
    font-size:1.05rem;
    line-height:1.9;
    color:#333;
}
.single .entry-content h2{
    font-size:1.8rem;
    border-left:4px solid var(--color-accent,#333);
    padding-left:12px;
}
.single .entry-content h3{
    font-size:1.4rem;
    margin-top:2.2em;
}
.single .entry-content blockquote{
    margin:2em 0;
    padding:1.2em 1.6em;
    background:#fafafa;
    border-left:4px solid var(--color-accent,#333);
    font-style:italic;
    color:#555;
}
/* Navigation */
.single .post-navigation{
    margin-top:80px;
    padding-top:30px;
    border-top:1px solid #eee;
}
.single .post-navigation a{
    transition:color .2s ease;
}
.single .post-navigation a:hover{
    color:var(--color-accent,#111);
}

.single .site-main{
    max-width:none;
    width:100%;
    margin:0;
    padding:0 0 60px;
}

/* Back to home button */
.back-home{
    text-align:center;
    margin:60px 0 40px;
}
.btn-home{
    font-size:1rem;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#FFC107 0%,#FFA000 100%);
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    color:#fff;
    padding:14px 40px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
    transition:transform .2s ease,box-shadow .2s ease;
}
.btn-home:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
    background:linear-gradient(135deg,#FFB300 0%,#FB8C00 100%);
}


/* Add horizontal padding to text content */
.single .entry-content{
    padding:0 20px;
}

.single .entry-header{
    margin-bottom: 40px;
    text-align:center;
}
.single .entry-header h1{
    font-size: 2.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.single .entry-meta{
    font-size: 0.9rem;
    color:#777;
    margin-bottom:20px;
}
.single .entry-content img{
    max-width:100%;
    height:auto;
    margin:0;
    border-radius:4px;
    margin:20px 0;
}
.single .entry-content p{
    line-height:1.8;
    margin-bottom:1.6em;
}
.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4{
    margin-top:2em;
    margin-bottom:1em;
    line-height:1.4;
}
.single .post-navigation{
    display:flex;
    justify-content:space-between;
    margin-top:60px;
}
.single .post-navigation a{
    color:var(--color-primary,#333);
    font-weight:600;
}

/* Hero image overlay caption */
.single .single-hero{
    position:relative;
    overflow:hidden;
    margin:80px 0 50px;
    width:100vw;
    margin-left:calc(-50vw + 50%);
}

.single .single-hero-img{
    width:100%;
    height:auto;
    display:block;
    
    filter:brightness(0.85);
    border-radius:10px;
}

.single-title--overlay{
    position:absolute;
    bottom:20px;
    left:30px;
    margin:0;
    font-size:2.4rem;
    color:#fff;
    text-shadow:0 2px 6px rgba(0,0,0,0.6);
}

.no-thumbnail-title{
    margin:0 0 40px;
    font-size:2.4rem;
    text-align:center;
}

.single .single-hero-caption{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    padding:40px 30px 30px;
}
.single .single-title{
    color:#fff;
    font-size:2.4rem;
    line-height:1.2;
    margin:0;
}

@media (max-width: 600px) {
    .single .site-main{
        padding:0 0 30px;
    }
    /* enlarge images inside content */
    .single .entry-content img{
        width:100vw;
        max-width:none;
        height:auto;
        margin-left: calc(-50vw + 50% - 20px);
        border-radius:8px;
    }
    .single .single-hero{
        height:auto;
    }
    .single .single-hero-img{
        height:auto;
    }
    .single-title--overlay,
    .no-thumbnail-title,
    .single .single-title{
        font-size:1.6rem;
    }
    .single-title--overlay{
        left:20px;
        bottom:15px;
    }
}


