/*
Theme Name: Side By Side Theme — Fixed 10 (Full)
Author: ChatGPT
Description: Couple's blog theme with side-by-side author columns, archive split by author, AJAX "Show More" without duplicates (offset + exclude IDs), logo + tagline center aligned, middle widgets, comments, consistent truncation, faint blue left + faint pink right columns, Simplified Chinese font fallback.
Version: 4.0
*/

@font-face {
  font-family: 'SourceHanSansSubset';
  src: url('fonts/SourceHanSansSC-Subset.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --pink:#fff7fb;
  --blue:#f7fbff;   /* faint blue */
  --brand:#b02a37;
  --text:#222;
  --muted:#777;
  --shadow:0 6px 18px rgba(0,0,0,0.05);
  --shadow-lg:0 12px 26px rgba(6,10,15,0.08);
}

*{box-sizing:border-box}
body{
  font-family:'Inter','SourceHanSansSubset','PingFang SC','Microsoft YaHei',sans-serif;
  color:var(--text);
  background:#fafafa;
  margin:0;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

/* Header / Branding */
.site-header{
  background:linear-gradient(90deg,#0f2437,#1a6b91);
  color:#fff;
  padding:28px 20px;
  text-align:center;
}
.site-branding{max-width:1100px;margin:0 auto}
.site-branding img.custom-logo{max-height:80px;height:auto;width:auto}
.site-title{font-family:'Playfair Display',serif;font-size:32px;margin:0}
.site-description{margin-top:6px;color:rgba(255,255,255,0.85);font-size:14px}

/* Tagline under logo */
.site-branding-logo{display:flex;flex-direction:column;align-items:center}
.site-branding-logo .site-description{margin-top:6px;color:rgba(255,255,255,0.85);font-size:14px;text-align:center}

/* Layout */
.container-wrap{max-width:1200px;margin:28px auto;padding:0 20px}
.grid{display:grid;grid-template-columns:1fr 240px 1fr;gap:20px;align-items:start}

.left,.right{
  border-radius:10px;
  padding:22px;
  box-shadow:var(--shadow);
}

.left{background:var(--blue);}   /* faint blue */
.right{background:var(--pink);}  /* faint pink */

.middle{
  background:#fff;
  border-radius:8px;
  padding:16px;
  font-size:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.heart-top{text-align:center;margin-bottom:20px}
.heart-top svg{width:48px;height:48px;fill:#e94b61}

/* Posts */
.post-list{display:flex;flex-direction:column;gap:16px}
.post-card{
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  transition:transform .18s ease, box-shadow .18s ease;
  overflow:hidden;
}
.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.post-card .thumb img{width:100%;height:auto;display:block}
.post-card .card-body{padding:14px}
.post-title{font-family:'Playfair Display',serif;font-size:18px;margin:0 0 6px}
.post-meta{font-size:12px;color:var(--muted);margin-bottom:8px}
.post-excerpt{color:#333}

/* Buttons */
.load-more{margin-top:12px;padding:8px 16px;border-radius:999px;background:#d33;color:#fff;border:none;cursor:pointer;font-size:14px}
.load-more[disabled]{opacity:0.6;cursor:default}

.widget{margin-bottom:18px}
.widget-title{font-size:15px;margin-bottom:6px;border-bottom:1px solid #eee}

.site-footer{text-align:center;padding:24px 12px;color:#666;font-size:14px;margin-top:34px}

@media(max-width:900px){
  .grid{grid-template-columns:1fr}
  .middle{order:3}
}
