:root{--fg:#2c2a25;--muted:#6f6a5d;--accent:#b5340f;--panel:#fefef6;--line:#efe6cb;--orange:#fab728}
*{box-sizing:border-box}
/* Orange page, matching the old Oriental WordPress theme: a dark-red→amber
   gradient strip anchored at the top, fading into solid #fab728 below. */
body{margin:0;color:var(--fg);
  background-color:var(--orange);
  background-image:linear-gradient(180deg,#5f1a0c 0%,#8f2a0e 16%,#c34d16 40%,#ef911e 68%,var(--orange) 100%);
  background-repeat:no-repeat;background-size:100% 580px;background-position:left top;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.65;font-size:18px}
.wrap{max-width:44rem;margin:0 auto;padding:0 1.25rem}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

/* Header sits directly on the orange, pale serif title like the old theme */
.site-header .wrap{display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;gap:.5rem;padding:1.3rem 1.25rem}
.brand{font-family:Garamond,Georgia,"Times New Roman",serif;font-size:1.9rem;font-weight:700;
  color:#faf6bb;text-shadow:0 1px 2px rgba(0,0,0,.35)}
.brand:hover{text-decoration:none}
.site-header nav a{margin-left:1rem;color:#fff4c9;font-size:.95rem;text-shadow:0 1px 1px rgba(0,0,0,.3)}

/* Cream reading panel floating on the orange page */
main.wrap{background:var(--panel);border-radius:8px;box-shadow:0 6px 26px rgba(90,25,10,.28);
  padding:2rem 2.25rem;margin-bottom:2.5rem}
@media(max-width:47rem){main.wrap{border-radius:0;padding:1.5rem 1.15rem}}

.intro{color:var(--muted);font-size:1.1rem;margin:0 0 2rem}
/* Index/list rows: thumbnail beside title + ingress; text does NOT wrap around it */
.post-list{list-style:none;padding:0;margin:0}
.post-list li{display:flex;gap:1.1rem;align-items:flex-start;padding:1.3rem 0;border-bottom:1px solid var(--line)}
.post-list li:last-child{border-bottom:0}
.post-card-thumb{flex:0 0 auto;display:block}
.post-card-thumb img{display:block;width:150px;height:112px;object-fit:cover;border-radius:6px;margin:0}
.post-card-body{flex:1 1 auto;min-width:0}
.post-list .title{font-size:1.3rem;font-weight:600}
.post-list .date{color:var(--muted);font-size:.85rem;margin-left:.5rem}
.post-list .summary{color:var(--muted);margin:.35rem 0 0}
@media(max-width:560px){
  .post-list li{flex-direction:column;gap:.55rem}
  .post-card-thumb img{width:100%;height:190px}
}
.post h1,.post-list+h1,main.wrap>h1{font-size:2rem;line-height:1.2;margin:.2rem 0 1rem}
.post .meta{color:var(--muted);font-size:.9rem;margin-top:0}
.post .content{margin-top:1.5rem}
.content h2,.content h3{margin-top:2rem;clear:both}
.content blockquote{border-left:3px solid var(--line);margin:1rem 0;padding-left:1rem;color:var(--muted)}
.tags{margin-top:2rem;color:var(--muted);font-size:.85rem;clear:both}
.tags span{display:inline-block;margin-right:.25rem}
.backlink{margin-top:2.5rem;clear:both}
.site-footer .wrap{padding-top:.5rem;padding-bottom:2rem}
.site-footer{color:rgba(60,20,5,.7);font-size:.85rem;text-shadow:0 1px 1px rgba(255,255,255,.25)}

/* Images: let body text flow around them instead of leaving a blank column.
   WordPress content images (align*/size-*/wp-image-*) float; galleries stay inline. */
.content img{max-width:100%;height:auto;border-radius:6px}
.content::after{content:"";display:table;clear:both}
.content img.alignleft,.content img.alignnone,
.content img[class*="wp-image"],.content img[class*="size-"]{
  float:left;margin:.3rem 1.3rem .7rem 0}
.content img.alignright{float:right;margin:.3rem 0 .7rem 1.3rem}
.content img.aligncenter{float:none;display:block;margin:1.2rem auto}
.content img.pie-img{float:none;display:inline;margin:3px;border-radius:3px}
.content .wp-caption{max-width:100%;margin:1rem 0}
.content .wp-caption-text{font-size:.85rem;color:var(--muted);text-align:center}
/* On phones, stack images full-width for readability */
@media(max-width:600px){
  .content img.alignleft,.content img.alignright,
  .content img.alignnone,.content img[class*="wp-image"],.content img[class*="size-"]{
    float:none;display:block;margin:1rem 0}
}
