       /* ── Reset & Base ── */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background: #FFFFFF; font-family: Georgia, serif; }

        /* ── Outer wrapper ── */
        .page-wrap {
            max-width: 804px;
            margin: 0 auto;
            background: #224466;
        }

        /* -- Inner wrapper -- */
        .inner-wrap {
            max-width: 800px;
            margin: 0 auto;
            background: #FFFFFF;
        }


        /* ── Header ── */
        .site-header {
            background: #224466;
            padding: 10px 12px 0 12px;
        }
        .header-top {
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }
        .header-top img {
            width: 50px;
            height: auto;
            flex-shrink: 0;
        }
        .site-title {
            flex: 1;
            text-align: center;
            color: #FFFFFF;
            font-size: clamp(1.6rem, 5vw, 2.6rem);
            font-style: italic;
        }

        /* ── Page label + last modified row ── */
        .header-meta {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 6px 0 4px 0;
            flex-wrap: wrap;
            gap: 4px;
        }
        .page-label {
            color: #AAAAAA;
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            font-weight: bold;
        }
        .last-modified {
            color: #AAAAAA;
            font-size: 0.85rem;
            text-align: right;
        }
        .last-modified span { color: #AAAAAA; }

        /* ── Navigation ── */
        .site-nav {
            display: flex;
            background: #224466;
            margin-bottom: 0;
        }
        .site-nav a, .site-nav span {
            flex: 1;
            text-align: center;
            padding: 8px 4px;
            font-size: clamp(0.8rem, 3vw, 1rem);
            text-decoration: none;
            color: #BBBBBB;
        }
        .site-nav .nav-active {
            background: #335577;
            color: #FFFFFF;
        }

        /* ── Content area ── */
        .content-area {
            background: #FFFFFF;
            padding: 6px;
        }
        
       /* --- Photo area --- */
       
       /* OPTION 1 — If you control the HTML: restructure into flex cards */

.photo-grid {
  background: #224466;
  display: flex;
  flex-wrap: wrap;          /* wraps to next line on small screens */
  gap: 12px;
  align-items: flex-start;
}

.photo-card {
  background: #224466;
  display: flex;
  flex-direction: column;   /* label on top, photo below — always together */
  flex: 1 1 200px;          /* grow/shrink, min 200px before wrapping */
  overflow: hidden;
  border: 2px solid #224466;
  border-radius: 4px;
}

.photo-card .label {
  background: #224466;
  text-align: center;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 6px;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}


        /* ── Footer ── */
        .site-footer {
            background: #FFFFFF;
            text-align: right;
            padding: 8px 12px;
            font-size: 0.78rem;
            font-style: italic;
            border-top: 1px solid #DDDDDD;
            border-bottom: 4px solid #224466;
        }
