/* assets/style.css – Serif gray + soft red */
:root{
  --brand:#A23B3B;
  --brand-dark:#7E2F2F;
  --accent:#8C6A5D;
  --bg:#F7F7F7;
  --text:#2B2B2B;
  --muted:#6A6A6A;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Merriweather', Georgia, 'Times New Roman', serif;background:var(--bg);color:var(--text);}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:24px 16px}
.header{display:flex;align-items:center;gap:12px;padding:16px 0}
.logo{font-weight:700;font-size:22px;letter-spacing:0.2px}
.badge{background:var(--brand);color:#fff;padding:2px 8px;border-radius:12px;font-size:12px}
.card{background:#fff;border:1px solid #E0E0E0;border-radius:14px;padding:16px;box-shadow:0 1px 4px rgba(0,0,0,0.05)}
.grid{display:grid;grid-template-columns:1fr;gap:12px}
@media(min-width:900px){.grid{grid-template-columns:repeat(2,1fr)}}
.section-title{font-weight:700;margin:24px 0 8px 0;border-left:5px solid var(--brand);padding-left:10px;text-transform:uppercase;color:var(--brand-dark)}
.item{display:flex;gap:14px;align-items:flex-start;padding:12px 8px;border-bottom:1px dashed #E6E6E6}
.item:last-child{border-bottom:none}
.item .photo{width:64px;height:64px;border-radius:8px;background:#F1F1F1;border:1px solid #E6E6E6;flex:0 0 auto;object-fit:cover}
.item .name{font-weight:700}
.footer-cta{background:#FFFFFF;border:1px solid #E0E0E0;border-radius:14px;margin:24px 0;text-align:center;padding:22px 16px}
.btn{display:inline-block;background:var(--brand);color:#fff;padding:10px 14px;border-radius:10px;font-weight:700}
small.muted{color:var(--muted)}
.detail-hero{display:flex;gap:18px;align-items:flex-start}
.detail-hero img{width:112px;height:112px;object-fit:cover;border-radius:10px;border:1px solid #E6E6E6}
.detail body{line-height:1.7}
.meta{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:12px 0}
.meta div{background:#FAFAFA;border:1px solid #E6E6E6;border-radius:10px;padding:8px}
.hr{height:1px;background:#E6E6E6;margin:16px 0}
.notice-date-label{font-size:13px;color:var(--muted);font-weight:700;letter-spacing:0.02em}
.brand-stripe{height:4px;background:linear-gradient(90deg,var(--brand) 0%,var(--brand-dark) 60%, var(--accent) 100%)}
