
  .yjd-2story-page {
    --yjd-yellow: #F5B418;
    --yjd-dark: #111827;
    --yjd-text: #374151;
    --yjd-gray: #6B7280;
    --yjd-light: #F8F9FA;
    --yjd-border: #E5E7EB;
    --yjd-soft: #FFF8E8;

    font-family: Arial, Helvetica, sans-serif;
    color: var(--yjd-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  .yjd-2story-page * {
    box-sizing: border-box;
  }

  .yjd-2story-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .yjd-2story-section {
    padding: 48px 0;
  }

  .yjd-2story-light {
    background: var(--yjd-light);
  }

  .yjd-2story-page h2 {
    margin: 0 0 18px;
    color: var(--yjd-yellow);
    font-size: 29px;
    line-height: 1.3;
    font-weight: 700;
  }

  .yjd-2story-page h3 {
    margin: 0 0 9px;
    color: var(--yjd-dark);
    font-size: 19px;
    line-height: 1.4;
  }

  .yjd-2story-page p {
    margin: 0 0 16px;
    color: var(--yjd-text);
  }

  .yjd-2story-page a {
    color: var(--yjd-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--yjd-yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  /* Individual image width can be adjusted inline */
  .yjd-2story-page img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .yjd-img-center {
    margin-left: auto;
    margin-right: auto;
  }

  .yjd-intro {
    max-width: 1040px;
    font-size: 18px;
    line-height: 1.75;
  }

  .yjd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
  }

  .yjd-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .yjd-gallery-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 25px;
  }

  .yjd-gallery-2 figure {
    margin: 0;
  }

  .yjd-gallery-2 img {
    width: 100%;
  }

  .yjd-gallery-2 figcaption {
    margin-top: 7px;
    color: var(--yjd-gray);
    font-size: 14px;
    line-height: 1.5;
  }

  .yjd-summary {
    margin-top: 26px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--yjd-border);
    border-top: 4px solid var(--yjd-yellow);
    border-radius: 8px;
  }

  .yjd-list {
    margin: 12px 0;
    padding-left: 21px;
    color: var(--yjd-text);
  }

  .yjd-list li {
    margin-bottom: 7px;
  }

  .yjd-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
  }

  .yjd-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: #fff;
  }

  .yjd-table th,
  .yjd-table td {
    padding: 13px 15px;
    border: 1px solid var(--yjd-border);
    text-align: left;
    vertical-align: top;
  }

  .yjd-table th {
    width: 32%;
    background: var(--yjd-soft);
    color: var(--yjd-dark);
    font-weight: 700;
  }

  .yjd-card {
    height: 100%;
    padding: 19px;
    background: #fff;
    border: 1px solid var(--yjd-border);
    border-radius: 8px;
  }

  .yjd-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 22px;
  }

  .yjd-option {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--yjd-border);
    border-radius: 7px;
  }

  .yjd-option strong {
    display: block;
    margin-bottom: 6px;
    color: var(--yjd-dark);
  }

  .yjd-option span {
    color: var(--yjd-text);
    font-size: 15px;
  }

  .yjd-note {
    margin-top: 20px;
    padding: 17px 19px;
    background: var(--yjd-soft);
    border-left: 4px solid var(--yjd-yellow);
    border-radius: 4px;
    color: var(--yjd-text);
  }

  .yjd-faq-item {
    padding: 19px 0;
    border-bottom: 1px solid var(--yjd-border);
  }

  .yjd-faq-item:first-child {
    border-top: 1px solid var(--yjd-border);
  }

  .yjd-faq-item p {
    margin: 0;
  }

  @media (max-width: 900px) {
    .yjd-grid-2,
    .yjd-grid-3,
    .yjd-gallery-2,
    .yjd-option-grid {
      grid-template-columns: 1fr;
    }

    .yjd-2story-section {
      padding: 38px 0;
    }

    .yjd-2story-page h2 {
      font-size: 25px;
    }

    .yjd-intro {
      font-size: 17px;
    }
  }
