
    .page-title {
      font-size: 22px;
      font-weight: 700;
      color: #1a3a5c;
      border-bottom: 2px solid #1a3a5c;
      padding-bottom: 10px;
      margin-bottom: 8px;
    }

    .page-lead {
      font-size: 15px;
      color: #333;
      line-height: 1.8;
      margin-bottom: 32px;
      padding-top: 12px;
    }

    .photo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin: 20px 0 8px;
    }

    .photo-grid-2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin: 20px 0 8px;
    }

    .photo-placeholder {
      background: #e8eef4;
      border: 1px solid #c8d8e8;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #888;
      border-radius: 2px;
    }

    .photo-single {
      max-width: 320px;
      margin: 20px 0 8px;
    }

    .photo-single .photo-placeholder {
      aspect-ratio: 4/3;
    }

    .photo-caption {
      font-size: 12px;
      color: #555;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .conclusion {
      background: #eef3f8;
      border-left: 4px solid #1a3a5c;
      padding: 20px 24px;
      border-radius: 0 4px 4px 0;
      font-size: 15px;
      line-height: 2.0;
      color: #333;
      margin-top: 8px;
    }
    @media (max-width: 700px) {
      .photo-grid { grid-template-columns: repeat(2, 1fr); }
      .photo-grid-2 { grid-template-columns: repeat(2, 1fr); }
    }
