/* ══════════════════════════════════════════
       상단 헤더
    ══════════════════════════════════════════ */
    .mct-header {
      max-width: 840px;
      margin: 35px auto 20px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-bottom: 14px;
      border-bottom: 2px solid #03A39C;
    }
    .mct-header h2 { line-height: 1; }
    .mct-title {
      font-size: 24px;
      color: #03A39C;
      letter-spacing: -0.03em;
    }

    /* ══════════════════════════════════════════
       밀착취재 — 카드 3분할
    ══════════════════════════════════════════ */
    .mct-grid {
      max-width: 840px;
      margin: 0 auto;
      display: flex;
      gap: 8px;
      container-type: inline-size;
      container-name: mct;
    }
    .mct-item {
      flex: 1 1 0;
      min-width: 0;
      background: #fff;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
    }
    .mct-thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #ddd;
      flex-shrink: 0;
    }
    .mct-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .mct-item:hover .mct-thumb img { transform: scale(1.05); }
    .mct-body {
      padding: 12px 0px;
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
    }
    .mct-tit {
      font-size: 18px;
      color: #000;
      font-weight: 500;
      line-height: 1.55;
      letter-spacing: -0.02em;
      word-break: keep-all;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .mct-item:hover .mct-tit { color: #4c5050; }


    /* ══════ 반응형 ══════ */
    @media (max-width: 600px) {
      body { padding-left: 0; padding-right: 0; }
      .mct-header {
        margin: 0 16px 20px;
        max-width: 100%;
      }
      .mct-grid {
        max-width: 100%;
        padding: 0 16px;
      }
      .mct-title { font-size: 20px; }
      .mct-tit { font-size: 15px; }
    }
    @container mct (max-width: 600px) {
      .mct-grid > :nth-child(n+3) { display: none; }
    }