﻿:root {
    --chs-bg: #f5f1e8;
    --chs-paper: #fbf8f2;
    --chs-ink: #2d2a26;
    --chs-muted: #6f675d;
    --chs-green: #64756B;
    --chs-green-dark: #4f5f56;
    --chs-line: #ddd2c3;
    --chs-card: #fffdf9;
    --chs-shadow: 0 10px 30px rgba(32, 24, 17, 0.08);
    --chs-radius: 18px;
    --chs-radius-lg: 28px;
    --chs-max: 1200px;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--chs-bg);
    color: var(--chs-ink);
    font-family: Georgia, "Times New Roman", serif;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.chs-wrap {
    max-width: var(--chs-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   Master page: top bar / navbar
   ========================================================= */
/* =========================================================
   Master page: top bar / navbar
   ========================================================= */

.chs-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(251, 248, 242, 0.95);
    border-bottom: 1px solid var(--chs-line);
}

.chs-nav-wrap {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.chs-navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

.chs-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    color: var(--chs-ink);
}

    .chs-brand:hover,
    .chs-brand:focus {
        color: var(--chs-ink);
        text-decoration: none;
    }

.chs-brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
    display: block;
}

.chs-brand-text {
    min-width: 0;
    line-height: 1.15;
}

.chs-brand-title {
    line-height: 1.1;
    font-weight: 700;
    font-size: 1.08rem;
}

.chs-brand-sub {
    display: block;
    line-height: 1.1;
    font-size: 0.78rem;
    color: var(--chs-muted);
    margin-top: 2px;
}

.chs-navbar .navbar-toggler {
    border-color: rgba(45, 42, 38, 0.18);
    background: rgba(255,255,255,0.55);
    box-shadow: none;
}

    .chs-navbar .navbar-toggler:focus {
        box-shadow: none;
        border-color: rgba(45, 42, 38, 0.35);
    }

.chs-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845,42,38,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.chs-navbar-collapse {
    min-width: 0;
}

.chs-nav-links {
    align-items: center;
    gap: 4px;
}

    .chs-nav-links .nav-link {
        color: var(--chs-muted);
        white-space: nowrap;
        font-size: 0.96rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

        .chs-nav-links .nav-link:hover,
        .chs-nav-links .nav-link:focus {
            color: var(--chs-green-dark);
        }

        .chs-nav-links .nav-link.active {
            color: var(--chs-green-dark);
            font-weight: 700;
        }

/* =========================================================
   Master page: account nav
   ========================================================= */

.chs-account-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-left: auto;
}

    .chs-account-nav > * {
        flex: 0 0 auto;
    }

.chs-account-nav-loggedin {
    gap: 8px;
}

.chs-account-identity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 2px;
    color: var(--chs-muted);
    font-size: 0.88rem;
    line-height: 1;
    white-space: nowrap;
}

    .chs-account-identity i {
        font-size: 0.95rem;
        opacity: 0.8;
    }

.chs-account-name {
    font-weight: 600;
    color: var(--chs-ink);
}

.chs-account-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid transparent;
}

.chs-account-status-pending {
    background: #fff3cd;
    border-color: #f0d98c;
    color: #856404;
}

.chs-account-status-admin {
    background: #e7f0ea;
    border-color: #c7d7cc;
    color: var(--chs-green-dark);
}

.chs-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    box-shadow: none;
}

    .chs-nav-btn:hover,
    .chs-nav-btn:focus {
        text-decoration: none;
        transform: none;
    }

.chs-nav-btn-primary {
    background: var(--chs-green-dark);
    color: #fff;
    border-color: var(--chs-green-dark);
}

    .chs-nav-btn-primary:hover,
    .chs-nav-btn-primary:focus {
        background: var(--chs-green);
        border-color: var(--chs-green);
        color: #fff;
    }

.chs-nav-btn-ghost {
    background: rgba(79, 95, 86, 0.08);
    color: var(--chs-green-dark);
    border-color: rgba(79, 95, 86, 0.18);
}

    .chs-nav-btn-ghost:hover,
    .chs-nav-btn-ghost:focus {
        background: rgba(79, 95, 86, 0.15);
        color: var(--chs-green-dark);
    }

.chs-nav-btn-admin {
    background: #fff;
    color: var(--chs-green-dark);
    border-color: rgba(79, 95, 86, 0.22);
}

    .chs-nav-btn-admin:hover,
    .chs-nav-btn-admin:focus {
        background: #f3efe6;
        color: var(--chs-green-dark);
    }

.chs-nav-btn-admin-active {
    background: #8a5b52;
    color: #fff;
    border-color: #8a5b52;
}

    .chs-nav-btn-admin-active:hover,
    .chs-nav-btn-admin-active:focus {
        background: #7b4338;
        border-color: #7b4338;
        color: #fff;
    }

/* =========================================================
   Header responsive
   ========================================================= */

@media (max-width: 1199.98px) {
    .chs-nav-wrap {
        padding: 0 18px;
    }

    .chs-navbar-collapse {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(45, 42, 38, 0.08);
    }

    .chs-nav-links {
        gap: 0;
    }

        .chs-nav-links .nav-link {
            display: block;
            padding-top: 10px;
            padding-bottom: 10px;
        }

    .chs-account-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 10px;
        gap: 8px;
    }

    .chs-account-identity,
    .chs-account-status,
    .chs-nav-btn {
        width: 100%;
    }

    .chs-account-identity {
        justify-content: flex-start;
        min-height: 32px;
        padding: 6px 2px;
    }

    .chs-nav-btn {
        justify-content: center;
        width: 100%;
        padding: 10px 14px;
    }
}

@media (max-width: 575.98px) {
    .chs-brand-logo {
        width: 44px;
        height: 44px;
    }

    .chs-brand-title {
        font-size: 0.96rem;
    }

    .chs-brand-sub {
        font-size: 0.76rem;
    }
}

/* =========================================================
   Shared buttons / cards / text treatments
   ========================================================= */

.chs-kicker {
    color: var(--chs-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    font-weight: 700;
}

.chs-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1.2;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease;
    box-shadow: var(--chs-shadow);
    text-decoration: none;
    cursor: pointer;
}

    .chs-btn:hover {
        transform: translateY(-2px);
        text-decoration: none;
    }

.chs-btn-light {
    background: #fff;
    color: var(--chs-green-dark);
}

.chs-btn-ghost {
    background: rgba(255,255,255,0.09);
    color: #fff;
    border-color: rgba(255,255,255,0.28);
}

.chs-card {
    background: var(--chs-card);
    border: 1px solid var(--chs-line);
    border-radius: var(--chs-radius);
    padding: 24px;
    box-shadow: var(--chs-shadow);
    display: block;
    text-decoration: none;
    color: inherit;
}

    .chs-card:hover {
        transform: translateY(-3px);
        text-decoration: none;
        color: inherit;
    }

/* =========================================================
   Shared breadcrumbs
   ========================================================= */

.archive-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--chs-line);
    border-radius: 12px;
    font-size: 0.92rem;
    color: var(--chs-muted);
}

    .archive-breadcrumbs a {
        color: var(--chs-green-dark);
        text-decoration: none;
    }

        .archive-breadcrumbs a:hover {
            text-decoration: underline;
        }

.archive-breadcrumb-home {
    font-weight: 700;
}

.archive-breadcrumb-sep {
    color: #a99f93;
}

/* =========================================================
   Shared panels / cards used by archive + photo
   ========================================================= */

.photo-image-panel,
.photo-info-panel,
.photo-related-panel,
.archive-side-card,
.archive-empty {
    background: var(--chs-card);
    border: 1px solid var(--chs-line);
}

.photo-image-panel,
.photo-info-panel,
.photo-related-panel {
    border-radius: var(--chs-radius-lg);
    box-shadow: var(--chs-shadow);
}

.archive-side-card,
.archive-empty {
    box-shadow: 0 6px 18px rgba(32, 24, 17, 0.05);
}

.archive-empty {
    border-radius: 16px;
    padding: 22px;
    color: var(--chs-muted);
}

/* =========================================================
   Shared browse/archive/photo card grids
   ========================================================= */

.browse-grid,
.archive-grid,
.photo-related-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.browse-card,
.archive-card,
.photo-card {
    display: block;
    background: #fff;
    border: 1px solid var(--chs-line);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    box-shadow: 0 8px 20px rgba(32, 24, 17, 0.06);
}

    .browse-card:hover,
    .archive-card:hover,
    .photo-card:hover {
        transform: translateY(-3px);
        text-decoration: none;
        color: inherit;
        box-shadow: 0 12px 24px rgba(32, 24, 17, 0.09);
    }

.browse-card-thumb,
.archive-card-thumb,
.photo-card-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #e7dfd2;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .browse-card-thumb img,
    .archive-card-thumb img,
    .photo-card-thumb img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

.browse-card-body,
.archive-card-body,
.photo-card-body {
    padding: 12px 13px 13px;
}

.browse-card-title,
.archive-card-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.28;
    color: var(--chs-ink);
}

.photo-card-title {
    margin: 0 0 6px;
    font-size: 1.02rem;
    line-height: 1.3;
    color: var(--chs-ink);
}

.archive-card-meta,
.photo-card-meta {
    margin: 6px 0 0;
    color: var(--chs-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.photo-card-subtitle {
    margin: 0 0 6px;
    color: var(--chs-muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.browse-card-count {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eef2ef;
    color: var(--chs-green-dark);
    font-size: 0.82rem;
    margin-top: 8px;
}

.photo-empty-related {
    color: var(--chs-muted);
    padding-top: 8px;
}

/* =========================================================
   Shared info pages (About / Privacy / Contact)
   ========================================================= */

.info-shell {
    padding: 24px 0 56px;
}

.info-pane {
    display: grid;
    gap: 16px;
}

.info-card {
    background: var(--chs-card);
    border: 1px solid var(--chs-line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--chs-shadow);
}

.info-card-soft {
    background: linear-gradient(to bottom, #fbf8f2, #f3ece1);
}

.info-card-green {
    background: linear-gradient(135deg, var(--chs-green-dark), #5f6f65);
    border-color: rgba(0,0,0,0.05);
    color: #fff;
}

.info-side-title,
.info-section-kicker {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--chs-green-dark);
    font-weight: 700;
}

.info-card-green .info-side-title,
.info-card-green .info-section-kicker {
    color: rgba(255,255,255,0.76);
}

.info-card p,
.info-card li {
    margin: 0 0 12px;
    color: var(--chs-muted);
    line-height: 1.72;
    font-size: 0.97rem;
}

.info-card-green p,
.info-card-green li {
    color: rgba(255,255,255,0.9);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-header {
    margin-bottom: 18px;
}

.info-title {
    margin: 0 0 10px;
    font-size: 2.25rem;
    line-height: 1.06;
    color: var(--chs-ink);
}

.info-lead {
    margin: 0;
    color: var(--chs-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 920px;
}

.info-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 10px;
}

    .info-list li {
        color: var(--chs-ink);
        line-height: 1.65;
    }

.info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    transition: all 0.16s ease;
}

.info-btn-primary {
    background: var(--chs-green-dark);
    border: 1px solid var(--chs-green-dark);
    color: #fff;
}

    .info-btn-primary:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }

.info-btn-soft {
    background: #fff;
    border: 1px solid var(--chs-line);
    color: var(--chs-green-dark);
}

    .info-btn-soft:hover {
        color: var(--chs-green-dark);
        text-decoration: none;
        background: #f3ede2;
        transform: translateY(-1px);
    }

.info-side-sticky {
    position: sticky;
    top: 20px;
}

.info-peek-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

    .info-peek-link:hover {
        color: inherit;
        text-decoration: none;
    }

.info-peek-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #d7ddd8;
    border: 1px solid var(--chs-line);
    margin-bottom: 14px;
}

.info-peek-image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.info-peek-title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--chs-ink);
    font-weight: 700;
}

.info-peek-meta {
    margin: 0;
    color: var(--chs-muted);
    line-height: 1.55;
    font-size: 0.93rem;
}

.info-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .info-form-grid .full {
        grid-column: 1 / -1;
    }

.info-label {
    display: block;
    margin: 0 0 6px;
    font-size: 0.92rem;
    color: var(--chs-muted);
}

.info-input,
.info-textarea {
    width: 100%;
    border: 1px solid var(--chs-line);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.98rem;
    background: #fff;
    color: var(--chs-ink);
}

.info-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.65;
}

.info-status {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-status-error {
    color: #a33a32;
}

.info-status-success {
    color: #1f6b3b;
}

/* =========================================================
   Shared footer
   ========================================================= */

.chs-footer {
    margin-top: 3rem;
}

.chs-footer-dark {
    background: var(--chs-green-dark);
    color: rgba(255,255,255,0.85);
    padding: 2.2rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.chs-footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    display: block;
}

.chs-footer-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.chs-footer-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
}

.chs-footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.chs-footer-link-col {
    display: grid;
    gap: 8px;
}

.chs-footer-link {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.15s ease;
}

    .chs-footer-link:hover,
    .chs-footer-link:focus {
        color: #ffffff;
        text-decoration: none;
    }

    .chs-footer-link span {
        display: block;
    }

    .chs-footer-link i {
        font-size: 1.1rem;
    }

.chs-footer-icon-img {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    object-fit: contain;
    flex: 0 0 18px;
}

.chs-footer-admin-wrap {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1rem;
}

.chs-footer-admin {
    display: flex;
    justify-content: flex-start;
}

.chs-admin-footer,
.chs-admin-footer-logged-in {
    width: 100%;
}

.chs-admin-footer {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.chs-admin-password {
    width: 100%;
    min-height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
}

    .chs-admin-password::placeholder {
        color: rgba(255,255,255,0.5);
    }

    .chs-admin-password:focus {
        outline: none;
        border-color: rgba(255,255,255,0.32);
        box-shadow: 0 0 0 0.18rem rgba(255,255,255,0.08);
    }

.chs-admin-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    min-height: 40px;
    font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease;
}

    .chs-admin-btn:hover {
        background: rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.32);
        color: #fff;
    }

.chs-admin-error {
    display: block;
    min-height: 1.2rem;
    font-size: 0.85rem;
    color: #ffd8d8;
}

.chs-footer-bottom {
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 0.75rem 0;
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

.chs-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.chs-footer-meta {
    text-align: right;
}

/* =========================================================
   Cookie banner
   ========================================================= */

.chs-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--chs-green-dark);
    color: #fff;
    padding: 0.75rem;
    z-index: 9999;
}

.chs-cookie-inner {
    max-width: var(--chs-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

    .chs-cookie-inner a {
        color: #fff;
        text-decoration: underline;
    }

.chs-cookie-btn {
    background: #fff;
    color: var(--chs-green-dark);
    border: none;
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

    .chs-cookie-btn:hover,
    .chs-cookie-btn:focus {
        background: #f4f1eb;
    }

/* =========================================================
   Shared responsive
   ========================================================= */

@media (max-width: 1100px) {
    .browse-grid,
    .archive-grid,
    .photo-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .chs-nav-wrap {
        padding: 0 18px;
    }

    .chs-navbar-collapse {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(45, 42, 38, 0.08);
    }

    .chs-nav-links {
        gap: 0;
    }

        .chs-nav-links .nav-link {
            display: block;
            padding-top: 10px;
            padding-bottom: 10px;
        }

    .chs-account-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 10px;
    }

    .chs-account-link,
    .chs-account-status,
    .chs-account-identity,
    .chs-nav-btn {
        width: 100%;
    }

    .chs-nav-btn {
        justify-content: center;
        padding: 10px 14px;
    }

    .chs-footer-admin {
        justify-content: flex-start;
    }

    .info-side-sticky {
        position: static;
        top: auto;
    }

    .info-title {
        font-size: 1.95rem;
    }

    .info-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .chs-footer-admin {
        justify-content: flex-end;
    }
}

@media (max-width: 800px) {
    .browse-grid,
    .archive-grid,
    .photo-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .chs-footer-meta {
        text-align: left;
    }

    .chs-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .archive-media-actions-bar {
        align-items: stretch;
    }

    .archive-media-actions-left,
    .archive-media-actions-right {
        flex: 1 1 100%;
    }

    .archive-media-actions-right {
        justify-content: flex-start;
    }

    .archive-media-move-status {
        width: 100%;
        border-radius: 14px;
    }
}

@media (max-width: 600px) {
    .chs-footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .chs-wrap {
        padding: 0 16px;
    }

    .chs-brand-logo {
        width: 44px;
        height: 44px;
    }

    .chs-brand-title {
        font-size: 0.96rem;
    }

    .chs-brand-sub {
        font-size: 0.76rem;
    }

    .info-shell {
        padding-top: 18px;
    }

    .info-card {
        padding: 18px;
    }

    .info-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 560px) {
    .browse-grid,
    .archive-grid,
    .photo-related-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   Admin mode indicator bar
   ========================================================= */

.chs-admin-bar {
    height: 4px;
    width: 100%;
    background: transparent;
    transition: background 0.25s ease;
}

    /* ACTIVE ADMIN MODE */
    .chs-admin-bar.is-admin {
        background: linear-gradient( 90deg, #b94a48, #d9534f, #c9302c );
        box-shadow: 0 1px 4px rgba(185, 74, 72, 0.25);
    }