/* The Tuna Can — about */
body.tc-page.tc-about-page main { flex:1; display:flex; flex-direction:column; align-items:center; padding:72px 20px 60px; }
body.tc-page.tc-about-page main > * { background: var(--tc-bg); }
body.tc-page.tc-about-page main .breadcrumb { position: relative; top: auto; left: auto; z-index: 10; margin: 0 0 16px; align-self: flex-start; }

body.tc-page.tc-about-page .breadcrumb { color: var(--dim); }
body.tc-page.tc-about-page .breadcrumb a { color: var(--tc-khaki); }
body.tc-page.tc-about-page .breadcrumb a:hover { color: var(--tc-cream); }
body.tc-page.tc-about-page .breadcrumb .sep { color: var(--tc-khaki); opacity: 0.6; }
body.tc-page.tc-about-page .breadcrumb .current { color: var(--tc-khaki); }

body.tc-page.tc-about-page .page-header { width: 100%; max-width: 960px; margin-top: 16px; margin-bottom: 32px; animation: fadeUp 0.5s ease both; }
body.tc-page.tc-about-page .place-label { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--tc-khaki); letter-spacing: 0.2em; margin-bottom: 8px; opacity: 0.9; }
body.tc-page.tc-about-page .page-title { font-family: 'Press Start 2P', monospace; font-size: clamp(12px, 2.5vw, 20px); color: var(--tc-khaki); letter-spacing: 0.08em; line-height: 1.6; margin-bottom: 20px; text-shadow: 0 0 20px rgba(168, 168, 112, 0.45); }

/* Current page: about (c-about active — back button) */
body.tc-page.tc-about-page .nav-card.c-about {
    background: var(--tc-bg);
    color: var(--tc-khaki);
    border-color: var(--tc-khaki);
}
body.tc-page.tc-about-page .nav-card.c-about:hover {
    background: transparent;
    color: var(--tc-khaki);
}

/* Place body content */
body.tc-page.tc-about-page .place-body {
    max-width: 960px;
    width: 100%;
    padding: 0 20px;
    color: var(--tc-body);
    font-size: 15px;
    line-height: 1.8;
}
body.tc-page.tc-about-page .place-body p {
    font-family: 'Courier Prime', monospace;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}
body.tc-page.tc-about-page .place-body a {
    color: var(--tc-khaki);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
body.tc-page.tc-about-page .place-body a:hover { color: var(--tc-cream); border-bottom-color: var(--tc-cream); }
body.tc-page.tc-about-page .place-body a[target="_blank"] { color: var(--tc-copper); border-bottom-color: transparent; }
body.tc-page.tc-about-page .place-body a[target="_blank"]:hover { color: var(--tc-wheat); border-bottom-color: var(--tc-wheat); }
body.tc-page.tc-about-page .place-body a[target="_blank"]::after { content: ' ↗'; font-size: 0.8em; opacity: 0.7; }

body.tc-page.tc-about-page .place-body p:first-of-type::first-letter {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.2em;
    float: left;
    line-height: 0.85;
    margin-right: 8px;
    margin-top: 4px;
    color: var(--tc-khaki);
    text-shadow: 0 0 10px rgba(168,168,112,0.4);
}

body.tc-page.tc-about-page .section-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--tc-khaki);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--tc-khaki);
    opacity: 0.9;
}

body.tc-page.tc-about-page .place-photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
}
body.tc-page.tc-about-page .place-photo-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

body.tc-page.tc-about-page .place-figure {
    margin: 40px auto;
    max-width: 960px;
}
body.tc-page.tc-about-page .place-figure img {
    width: 95%;
    border-radius: 8px;
}
body.tc-page.tc-about-page .place-figure figcaption {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--tc-muted);
    text-align: center;
}
body.tc-page.tc-about-page .place-figure figcaption::before { content: '— '; }
body.tc-page.tc-about-page .place-figure figcaption::after { content: ' —'; }

body.tc-page.tc-about-page .divider {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tc-khaki), var(--tc-wheat), var(--tc-khaki), transparent);
    margin: 8px 0 40px;
    opacity: 0.4;
}

body.tc-page.tc-about-page .mb-link-wrap { width:100%; max-width:700px; padding:0 20px; margin-top:40px; animation:fadeUp 0.5s 0.15s ease both; }
body.tc-page.tc-about-page .mb-link { font-family:'Press Start 2P',monospace; font-size:6px; color:var(--tc-muted); text-decoration:none; border:1px solid var(--tc-deep); padding:6px 12px; letter-spacing:0.08em; transition:color 0.15s,border-color 0.15s; display:inline-block; }
body.tc-page.tc-about-page .mb-link:hover { color:var(--tc-khaki); border-color:var(--tc-khaki); }

@media (max-width: 700px) {
    body.tc-page.tc-about-page .place-photo-row { grid-template-columns: 1fr; }
}