/* ─────────────────────────────────────────────
   후지필름 단편영화 제작 워크숍 — 재사용 템플릿
   Fujifilm Short Film Workshop (post body)

   All selectors scoped under .cinema-workshop
   1년 2~3회 진행되는 워크숍 공지에서 공용으로 재사용.
   기수별로 바뀌는 것은 본문(post-body)과 이미지뿐, 이 CSS는 공유.
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* break out of post__body column to span full .l-wrap width.
   !important: cross-origin CSS loaded inside .post__body loses
   layout properties (position/width/transform) in the cascade. (§5) */
.cinema-workshop{ position: relative !important; width: 100% !important; margin: 0 !important; }
@media (min-width: 60em){
  .cinema-workshop{ width: 100vw !important; max-width: 1360px !important; left: 50% !important; transform: translateX(-50%) !important; }
}
/* em 색상 site teal 강제 방지 (§3-3) */
.cinema-workshop em{ color: inherit; font-style: italic; }

.cinema-workshop{
    --bg: #ffffff;
    --bg-2: #f3f3f3;
    --beige: #f3f3f3;
    --beige-warm: #ebe3ce;
    --beige-warm-soft: #f4eede;
    --ink: #171717;
    --ink-2: #4a4a4a;
    --muted: #909090;
    --line: #d8d8d8;
    --line-soft: #ececec;
    --rust: #9a9a9a;
    --rust-deep: #1a1a1a;
    --paper: #f7f7f7;
    --accent: #5a4a2f;
    --max: 1130px;
  }

.cinema-workshop *{box-sizing:border-box;}

.cinema-workshop{
    background: var(--bg);
    color: var(--ink);
    font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

.cinema-workshop img{display:block; max-width:100%;}

.cinema-workshop a{color:inherit;}

/* ---------- hero ---------- */
  .cinema-workshop .hero{
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
  }

.cinema-workshop .hero-img{
    width:100%;
    height: auto;
    display:block;
  }

/* ---------- shared frames ---------- */
  .cinema-workshop .wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

.cinema-workshop .eyebrow{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--rust);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

.cinema-workshop .eyebrow::before{
    content:""; width: 28px; height: 1px; background: var(--rust);
    display:inline-block;
  }

.cinema-workshop .section-head{
    width: 100%;
    display:flex; align-items:flex-end; justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
  }

.cinema-workshop .section-head > div{ flex: 1 1 auto; min-width: 0; }

.cinema-workshop .section-head h2{
    margin: 14px 0 0;
    font-family: inherit;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

/* ---------- intro ---------- */
  .cinema-workshop .intro{
    padding: 96px 0 80px;
  }

.cinema-workshop .intro-grid{
    display:grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }

.cinema-workshop .intro h1{
    margin: 18px 0 0;
    font-family: inherit;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

.cinema-workshop .intro h1 .en{
    display:block;
    margin-top: 14px;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ink-2);
  }

.cinema-workshop .intro .lead{
    margin: 0 0 28px;
    font-family: inherit;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

.cinema-workshop .intro p{
    margin: 0 0 18px;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.85;
    text-align: left;
    text-wrap: pretty;
  }

.cinema-workshop .intro p:last-child{margin-bottom:0;}

.cinema-workshop .intro .tag-row{
    margin-top: 28px;
    display:flex; flex-wrap: wrap; gap: 8px;
  }

.cinema-workshop .intro .tag{
    border: 1px solid var(--line);
    padding: 6px 12px;
    font-size: 12.5px;
    color: var(--ink-2);
    letter-spacing: 0.02em;
  }

/* ---------- features (워크숍 주요 특징) ---------- */
  .cinema-workshop .features{
    padding: 96px 0;
    background: var(--beige);
    border-top: 1px solid #F2EFE6FF;
    border-bottom: 1px solid #F2EFE6FF;
  }

.cinema-workshop .feat-grid{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }

.cinema-workshop .feat-head h2{
    margin: 14px 0 14px;
    font-family: inherit;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

.cinema-workshop .feat-head p{
    margin: 16px 0 0;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.7;
  }

.cinema-workshop .feat-body{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

.cinema-workshop .feat-card{
    background: transparent;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 28px;
    align-items: start;
    border-bottom: 1px solid var(--line-soft);
  }

.cinema-workshop .feat-card:first-child{ padding-top: 8px; }

.cinema-workshop .feat-card:last-child{ border-bottom: none; padding-bottom: 8px; }

.cinema-workshop .feat-card:has(+ .feat-card.highlight){ border-bottom: none; }

.cinema-workshop .feat-card.highlight{
    background: rgba(2, 149, 117, 0.05);
    margin: 18px -16px;
    padding: 28px 16px;
    border-bottom: none;
    border-left: 2px solid #029575;
  }

.cinema-workshop .feat-card.highlight + .feat-card{ border-top: none; }

.cinema-workshop .feat-label{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--accent);
    padding-top: 6px;
  }

.cinema-workshop .feat-card.highlight .feat-label{ color: #029575; }

.cinema-workshop .feat-text{
    font-size: 15px;
    line-height: 1.78;
    color: var(--ink-2);
    text-wrap: pretty;
  }

.cinema-workshop .feat-text strong{ color: var(--ink); font-weight: 600; }

.cinema-workshop .feat-title{
    display: block;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    margin-bottom: 8px;
  }

/* ---------- at a glance (info grid) ---------- */
  .cinema-workshop .at-glance{
    padding: 88px 0;
    background: #ffffff;
  }

.cinema-workshop .info-grid{
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.cinema-workshop .info-cell{
    background: #ffffff;
    padding: 28px 28px 32px;
    display:flex;
    flex-direction: column;
    gap: 12px;
    min-height: 132px;
    text-align: left;
  }

.cinema-workshop .info-cell .label{
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 12.5px;
    color: var(--rust);
  }

.cinema-workshop .info-cell .value{
    font-family: inherit;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.45;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

.cinema-workshop .info-cell .sub{
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.6;
  }

.cinema-workshop .info-cell.span-3{grid-column: span 3;}

.cinema-workshop .info-cell.span-4{grid-column: span 4;}

.cinema-workshop .info-cell.span-6{grid-column: span 6;}

.cinema-workshop .info-cell.span-12{grid-column: span 12;}

.cinema-workshop .info-cell.feature{
    background: #e6e6e6;
  }

.cinema-workshop .info-cell.feature .value{
    font-size: 24px;
  }

.cinema-workshop .info-cell.subject-feature{
    background: #e7eeed;
    padding: 36px 32px 38px;
    min-height: auto;
  }

.cinema-workshop .info-cell.subject-feature .label{
    color: #029575;
  }

.cinema-workshop .info-cell.subject-feature .value{
    font-family: inherit;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    color: var(--ink);
  }

.cinema-workshop .info-cell.subject-feature .sub{
    color: var(--ink-2);
    font-size: 14px;
  }

/* ---------- mentor (강사) ---------- */
  .cinema-workshop .mentor{
    padding: 96px 0;
    background: #ffffff;
  }

.cinema-workshop .mentor-grid{
    display:grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }

.cinema-workshop .mentor-photo{
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 24px 48px -28px rgba(0,0,0,0.25);
  }

.cinema-workshop .mentor-photo img{
    width:100%; height:100%; object-fit: cover; display:block;
  }

.cinema-workshop .mentor h2{
    margin: 18px 0 28px;
    font-family: inherit;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

.cinema-workshop .mentor h2 .en{
    display:block;
    margin-top: 10px;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--ink-2);
  }

.cinema-workshop .mentor .bio-block{
    padding: 9px 0;
  }

.cinema-workshop .mentor .bio-block:first-child{
    padding-top: 0;
  }

.cinema-workshop .mentor .bio-label{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10.5px;
    color: var(--rust);
    margin-bottom: 5px;
  }

.cinema-workshop .mentor .bio-list{
    list-style: none;
    padding: 0; margin: 0;
    display:flex; flex-direction: column; gap: 6px;
  }

.cinema-workshop .mentor .bio-list li{
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    text-align: left;
  }

.cinema-workshop .mentor .bio-list li .sub{
    display:block;
    margin-top: 2px;
    font-size: 13.5px;
    color: var(--ink-2);
  }

/* ---------- programme / 커리큘럼 ---------- */
  .cinema-workshop .programme{
    padding: 96px 0;
    background: var(--beige);
  }

.cinema-workshop .prog-mission{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 64px;
    padding: 36px 40px;
    background: #ffffff;
    border-top: 1px solid var(--ink);
  }

.cinema-workshop .mission-block .mission-label{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10.5px;
    color: var(--rust);
    margin-bottom: 10px;
  }

.cinema-workshop .mission-block h3{
    margin: 0 0 12px;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

.cinema-workshop .mission-block p{
    margin: 0;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.78;
    text-wrap: pretty;
  }

.cinema-workshop .week-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--line);
  }

.cinema-workshop .week-card{
    background: #ffffff;
    padding: 32px 32px 32px;
    display: grid;
    grid-template-columns: 138px 1fr;
    column-gap: 28px;
    row-gap: 16px;
    text-align: left;
    min-height: 240px;
  }

.cinema-workshop .week-card .week-aside{
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-right: 1px solid var(--line-soft);
    padding-right: 20px;
  }

.cinema-workshop .week-card .step{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--rust);
  }

.cinema-workshop .week-card .theme{
    font-family: inherit;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 2px;
  }

.cinema-workshop .week-card .date{
    font-family: inherit;
    font-weight: 400;
    font-size: 12.5px;
    letter-spacing: 0.01em;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 1px;
  }

.cinema-workshop .week-card .week-body{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.cinema-workshop .week-field{
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    align-items: start;
  }

.cinema-workshop .week-field .field-label{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 9.5px;
    color: var(--rust);
    padding-top: 3px;
  }

.cinema-workshop .week-field .field-text{
    font-size: 14px;
    color: var(--ink);
    line-height: 1.6;
    text-wrap: pretty;
  }

.cinema-workshop .week-field .field-text .sub{
    display: block;
    margin-top: 2px;
    color: var(--ink-2);
    font-size: 12.5px;
  }

.cinema-workshop .week-card.finale{
    background: #ffffff;
  }

/* ---------- notice ---------- */
  .cinema-workshop .notice-sec{
    padding: 96px 0 110px;
    background: var(--beige);
  }

.cinema-workshop .notice-intro{
    margin: 0 0 48px;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.75;
  }

.cinema-workshop .notice-cols{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }

.cinema-workshop .notice-col{
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

.cinema-workshop .notice-block{
    border-top: 1px dashed #b8b8b8;
    padding-top: 36px;
  }

.cinema-workshop .notice-sec strong{
    color: #029570;
    font-weight: 600;
  }

.cinema-workshop .notice-sec a{
    color: #029570;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

.cinema-workshop .notice-sec a:hover{
    text-decoration-thickness: 2px;
  }

.cinema-workshop .notice-block .block-label{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--rust);
    margin-bottom: 10px;
  }

.cinema-workshop .notice-block h3{
    margin: 0 0 16px;
    font-family: inherit;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.005em;
    color: var(--ink);
  }

.cinema-workshop .notice-list{
    list-style: none;
    padding: 0; margin: 0;
    display:flex; flex-direction: column; gap: 10px;
  }

.cinema-workshop .notice-list li{
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink-2);
    text-align: left;
    text-wrap: pretty;
  }

.cinema-workshop .notice-list li::before{
    content: "—";
    position: absolute;
    left: 0;
    color: var(--rust);
  }

.cinema-workshop .notice-block .ref{
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
  }

.cinema-workshop .notice-block .ref a{ color: var(--ink-2); }

.cinema-workshop .contact-row{
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.cinema-workshop .contact-cell{
    background: #ffffff;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.cinema-workshop .contact-cell .clabel{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10.5px;
    color: var(--rust);
  }

.cinema-workshop .contact-cell .cvalue{
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
  }

.cinema-workshop .contact-cell .csub{
    font-size: 13px;
    color: var(--ink-2);
  }

/* ---------- responsive ---------- */
  @media (max-width: 980px){
  .cinema-workshop .week-grid{ grid-template-columns: 1fr; }
  .cinema-workshop .prog-mission{ grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .cinema-workshop .week-card[aria-hidden="true"]{ display: none; }
}

@media (max-width: 880px){
  .cinema-workshop .intro-grid, .cinema-workshop .mentor-grid, .cinema-workshop .feat-grid{
      grid-template-columns: 1fr;
      gap: 36px;
    }
  .cinema-workshop .notice-cols{
      grid-template-columns: 1fr;
      gap: 40px;
    }
  .cinema-workshop .mentor-photo{
      max-width: 320px;
    }
  .cinema-workshop .section-head{ flex-direction: column; align-items: flex-start; gap: 8px; }
  .cinema-workshop .info-cell.span-3, .cinema-workshop .info-cell.span-4, .cinema-workshop .info-cell.span-6{ grid-column: span 6; }
  .cinema-workshop .contact-row{ grid-template-columns: 1fr; }
  .cinema-workshop .feat-card{ grid-template-columns: 1fr; gap: 8px; }
  .cinema-workshop .feat-card.highlight{ margin-left: 0; margin-right: 0; padding-left: 16px; padding-right: 16px; }
  .cinema-workshop .week-card{ grid-template-columns: 1fr; }
  .cinema-workshop .week-card .week-aside{
      border-right: none;
      border-bottom: 1px solid var(--line-soft);
      padding-right: 0;
      padding-bottom: 14px;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  .cinema-workshop .week-card .week-aside .step{ margin-bottom: 2px; }
}

@media (max-width: 560px){
  .cinema-workshop{ font-size: 15px; }
  .cinema-workshop .wrap{ padding: 0 18px; }
  .cinema-workshop .intro{ padding: 60px 0 56px; }
  .cinema-workshop .intro h1{ font-size: 28px; }
  .cinema-workshop .intro h1 .en{ font-size: 12px; }
  .cinema-workshop .intro .lead{ font-size: 18px; }
  .cinema-workshop .intro p{ font-size: 14.5px; }
  .cinema-workshop .at-glance, .cinema-workshop .mentor, .cinema-workshop .programme, .cinema-workshop .features{ padding: 60px 0; }
  .cinema-workshop .notice-sec{ padding: 60px 0 80px; }
  .cinema-workshop .section-head h2{ font-size: 24px; }
  .cinema-workshop .feat-head h2{ font-size: 24px; }
  .cinema-workshop .info-grid{ grid-template-columns: 1fr; }
  .cinema-workshop .info-cell.span-3, .cinema-workshop .info-cell.span-4, .cinema-workshop .info-cell.span-6, .cinema-workshop .info-cell.span-12{ grid-column: span 1; }
  .cinema-workshop .info-cell{ padding: 22px 20px 24px; min-height: 0; }
  .cinema-workshop .info-cell .value{ font-size: 17px; }
  .cinema-workshop .info-cell.feature .value{ font-size: 20px; }
  .cinema-workshop .info-cell.subject-feature{ padding: 26px 20px 28px; }
  .cinema-workshop .info-cell.subject-feature .value{ font-size: 22px; }
  .cinema-workshop .week-card{ min-height: 0; padding: 24px 20px 26px; }
  .cinema-workshop .week-field{ grid-template-columns: 56px 1fr; column-gap: 12px; }
  .cinema-workshop .mentor h2{ font-size: 24px; }
  .cinema-workshop .notice-block h3{ font-size: 17px; }
}
