:root {
      --primary: #1f6feb;
      --bg: #f5f7fb;
      --card-bg: #ffffff;
      --text: #111827;
      --muted: #6b7280;
      --border: #e5e7eb;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      background: linear-gradient(135deg, #0f172a, #1f6feb);
      color: #fff;
      padding: 16px 24px;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .nav-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    nav a {
      color: #e5e7eb;
      text-decoration: none;
      margin-left: 16px;
      font-size: 0.95rem;
    }

    nav a:hover {
      color: #ffffff;
    }

    nav a.primary-link {
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    main {
      max-width: 1080px;
      margin: 24px auto 40px;
      padding: 0 16px;
    }

    h1 {
      margin-bottom: 6px;
      font-size: 1.7rem;
    }

    .subtitle {
      margin-top: 0;
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .photo-card {
      background: var(--card-bg);
      border-radius: 14px;
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    }

    .photo-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      background: #e5e7eb;
    }

    .photo-body {
      padding: 10px 12px 12px;
    }

    .photo-body h2 {
      font-size: 0.98rem;
      margin: 0 0 4px;
    }

    .photo-body p {
      font-size: 0.83rem;
      margin: 0;
      color: var(--muted);
    }

    .notice {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 18px;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 16px;
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
      background: #ffffff;
      margin-top: 30px;
    }

    @media (max-width: 900px) {
      .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      nav {
        display: none;
      }
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }