/* ── 컴포넌트 래퍼 ── */
    .yn-dokdo-wrap {
      width: 100%;
      max-width: 840px;
      margin: 0 auto 30px;
      background: #fff;
      overflow: hidden;
    }

    /* ── 헤더: 시리즈 배지 + 시리즈명 ── */
    .yn-dokdo-head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 16px 5px;
      background: #111;
      text-decoration: none;
    }
    .yn-dokdo-head:hover .yn-dokdo-name {
      color: #fff;
      text-decoration: none;
    }
    .yn-dokdo-badge {
      display: inline-flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }
    .yn-dokdo-badge-inner {
      font-size: 18px;
      font-weight: 900;
      color: #FFD600;
      background: transparent;
      padding: 0 2px;
      letter-spacing: 0.03em;
      line-height: 1;
      font-family: 'Noto Serif KR', Georgia, serif;
    }
    .yn-dokdo-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      letter-spacing: -0.01em;
      font-family: 'Noto Serif KR', Georgia, serif;
    }
    .yn-dokdo-name:hover {
      color: #fff;
    }

    /* ── 사진 3단 레이아웃 ── */
    .yn-dokdo-photos {
      display: flex;
      gap: 5px;
      width: 100%;
      background: #fff;
      margin-top: 10px;
    }
    .yn-dokdo-photo-item {
      flex: 1 1 0;
      min-width: 0;
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      display: block;
      background: #111;
    }
    .yn-dokdo-photo-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .yn-dokdo-photo-item:hover img {
      transform: scale(1.04);
    }

    /* ── 하단 제목 바 ── */
    .yn-dokdo-footer {
      background: #1a1a1a;
      padding: 12px 14px 13px;
      text-align: center;
    }
    .yn-dokdo-footer .headline {
      text-align: center;
    }
    .yn-dokdo-tit {
      font-size: 35px !important;
      font-weight: 700;
      color: #fff;
      line-height: 1.45;
      letter-spacing: -0.02em;
      text-decoration: none !important;
      display: block;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .yn-dokdo-tit:hover {
      color: #009592 !important;
    }