/* FILE
   /public_html/assets/css/story.css
*/

:root{
  --ink: #1c2a3a;
  --muted: rgba(28,42,58,0.72);
  --ivory: #f7f5f0;
  --panel: rgba(255,255,255,0.86);
  --line: rgba(28,42,58,0.14);
  --line2: rgba(28,42,58,0.20);
  --gold: #c8a45d;
  --shadow: 0 18px 52px rgba(16,22,28,0.12);
  --shadow2: 0 10px 26px rgba(16,22,28,0.10);
  --r: 18px;
  --max: 980px;
  --pad: 18px;
}

*{ box-sizing: border-box; }

.st-shell{
  padding: 26px 0 44px 0;
}

.st-wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.st-hero{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.st-hero-main{
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  border-radius: var(--r);
  padding: 18px;
}

.st-badge{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200,164,93,0.28);
  background: rgba(200,164,93,0.14);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.st-title{
  margin: 12px 0 6px 0;
  font-size: 30px;
  font-weight: 820;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.st-sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.6px;
  max-width: 62ch;
}

.st-hero-media{
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow2);
  overflow: hidden;
  min-height: 220px;
}

.st-hero-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.st-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 18px;
}

.st-body{
  color: rgba(28,42,58,0.86);
  font-size: 15.2px;
  line-height: 1.85;
}

.st-body a{
  color: rgba(28,42,58,0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.st-empty{
  padding: 10px 2px;
}

.st-empty-title{
  font-weight: 820;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.st-empty-sub{
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px){
  .st-hero{
    grid-template-columns: 1fr;
  }
  .st-hero-media{
    min-height: 200px;
  }
}
