/* p03.css — 폐업휴게소철거 · 버건디 · 지그재그 교차(섹션마다 좌우반전) 아키타입 */
:root{
  --accent:#5B2E4A;
  --sub:#C99BAF;
  --bg:#F9F4F7;
  --surface:#FFFFFF;
  --line:#EBDDE4;
  --display-font:'Nanum Myeongjo',var(--font-fallback);
  --body-font:'Noto Sans KR',var(--font-fallback);
  --label-font:'Playfair Display',var(--font-fallback);
}
.hero-eyebrow{font-family:var(--label-font);}

/* 지그재그 교차: main 안의 .section이 홀/짝마다 좌우 정렬을 반전 */
@media (min-width:900px){
  main .section:nth-of-type(odd) .section-head{text-align:left;margin-left:0;margin-right:auto;}
  main .section:nth-of-type(odd) > .container > div > .lead,
  main .section:nth-of-type(odd) .table-wrap{margin-left:0;margin-right:auto;}

  main .section:nth-of-type(even) .section-head{text-align:right;margin-right:0;margin-left:auto;}
  main .section:nth-of-type(even) > .container > div > .lead,
  main .section:nth-of-type(even) .table-wrap{margin-right:0;margin-left:auto;}
  main .section:nth-of-type(even) .section-eyebrow{text-align:right;}
}
