@font-face {
    font-family: 'VCR OSD Mono';
    src: url('fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-display: swap;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-page {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 40px;
}

.contact-header {
    margin-bottom: 38px;
}

.contact-header h1 {
    margin-bottom: 12px;
    font-size: 27px;
    font-weight: normal;
    letter-spacing: 4px;
}

.contact-header p {
    color: #888;
    font-size: 13px;
}

.contact-console {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 190px;
    padding: 30px 34px;

    overflow: hidden;

    background: linear-gradient(115deg, rgba(104, 31, 160, 0.18), rgba(5, 5, 5, 0) 60%);

    border: 1px solid #4a2168;
    box-shadow: inset 0 0 28px rgba(96, 29, 154, 0.08);
}

.contact-label {
    display: block;
    margin-bottom: 26px;
    color: #9b71bf;
    font-size: 11px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    color: #e0c6ff;
    font-size: clamp(17px, 2.3vw, 27px);
    letter-spacing: 1px;
    text-decoration: none;
}

.contact-email-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 auto;

    fill: none;
    stroke: #c070ff;
    stroke-width: 1.5;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(192, 112, 255, 0.75);
}

.contact-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;

    color: #89629f;
    font-size: 14px;
    text-decoration: none;
}

.contact-instagram-icon {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.contact-instagram-link:hover,
.contact-instagram-link:focus-visible {
    color: #d6abff;
}


.site-instagram-float {
    display: none;
}

@media (max-width: 600px) {
    .contact-page { margin-top: 75px; padding: 0 20px; }
    .contact-console { min-height: 170px; padding: 25px 20px; }
    .contact-email-link { gap: 11px; font-size: 16px; letter-spacing: 0; }
    .contact-email-icon { width: 22px; height: 22px; }
}


/* =========================================================
   JOURNAL ZINES
========================================================= */

.journal-pdf-status {
    margin: 12px 0 28px;

    color: #9b71bf;

    font-size: 11px;

    overflow-wrap: anywhere;
}


.public-zine-reader {
    margin-top: 44px;

    border: 1px solid #4a2168;

    background: #09070d;
}


.public-zine-header {
    min-height: 48px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    color: #b993ff;

    border-bottom: 1px solid #4a2168;

    font-size: 12px;
}


.public-zine-header a {
    color: #e0c6ff;

    text-decoration: none;
}


.public-zine-header a:hover,
.public-zine-header a:focus-visible {
    color: #ffffff;

    text-decoration: underline;
}


.public-zine-reader iframe {
    width: 100%;
    height: min(78vh, 980px);

    display: block;

    background: #16111b;

    border: 0;
}


@media (max-width: 600px) {

    .public-zine-reader {
        margin-top: 32px;
    }


    .public-zine-header {
        min-height: 44px;
        padding: 0 12px;

        font-size: 10px;
    }


    .public-zine-reader iframe {
        height: 70vh;
    }

}


html {
    scroll-behavior: smooth;
}


body {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(35, 35, 35, 0.26), transparent 55%),
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.022) 0,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px,
            transparent 4px
        );
    color: #b993ff;
    font-family: 'VCR OSD Mono', monospace;
    min-height: 100vh;
}


body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.18;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 2px,
            rgba(0, 0, 0, 0.42) 3px,
            rgba(0, 0, 0, 0.42) 4px
        );
}


h1,
h2,
.page h2,
.video-header h1,
.contact-header h1,
.journal-header h1,
.page-title h1 {
    color: #c5a5ff;
    text-shadow:
        -1px 0 rgba(255, 35, 115, 0.58),
        1px 0 rgba(55, 75, 255, 0.72),
        0 0 10px rgba(155, 95, 255, 0.28);
}


.journal-admin-body,
.video-admin-body {
    background: #050505;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 32px;

    padding-top: 45px;

    font-size: 20px;

    line-height: 1.4;
}


nav a {
    padding: 4px 0;

    color: #c5a5ff;
    text-decoration: none;
    text-shadow: -1px 0 rgba(255, 35, 115, 0.55), 1px 0 rgba(55, 75, 255, 0.7), 0 0 8px rgba(155, 95, 255, 0.25);
}


nav a:hover {
    text-decoration: underline;
}


nav span {
    color: #888;
}


/* =========================================================
   HOME
========================================================= */

.home {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
}


.home h1 {
    font-size: 38px;
    font-weight: normal;

    letter-spacing: 8px;
}


.line {
    width: 30px;
    height: 1px;

    background: #999;

    margin: 20px auto;
}


.home p {
    font-size: 17px;
    color: #aaa;
}


/* =========================================================
   NORMAL PAGES
========================================================= */

.page {
    max-width: 1100px;

    margin: 120px auto;

    padding: 0 40px;
}


.page h2 {
    font-size: 25px;
    font-weight: normal;

    letter-spacing: 4px;

    margin-bottom: 35px;
}


.coming-soon {
    color: #999;
    font-size: 15px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    position: fixed;

    bottom: 22px;
    left: 30px;
    z-index: 100;

    display: flex;
    gap: 13px;

    align-items: center;

    font-size: 14px;

    color: #888;
}


.site-clock {
    color: #b993ff;
    text-shadow: 0 0 9px rgba(161, 88, 232, 0.38);
}


footer > span:last-child {
    justify-self: auto;
}


.site-instagram-footer {
    width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    color: #a974d1;

    transition: color 160ms ease, transform 160ms ease;
}


.site-instagram-footer svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}


.site-instagram-footer:hover,
.site-instagram-footer:focus-visible {
    color: #e7c8ff;

    transform: translateY(-1px);
}


/* =========================================================
   PUBLIC PHOTOGRAPHY - OLD / FALLBACK
========================================================= */

.photo-page {
    max-width: 1200px;

    margin: 100px auto;

    padding: 0 40px;
}


.page-title {
    margin-bottom: 80px;
}


.page-title h1 {
    font-size: 25px;
    font-weight: normal;

    letter-spacing: 4px;
}


.photo-year {
    margin-bottom: 100px;
}


.photo-year h2 {
    font-size: 18px;
    font-weight: normal;

    letter-spacing: 3px;

    border-bottom: 1px solid #555;

    padding-bottom: 12px;

    margin-bottom: 30px;
}


.album-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 40px;
}


.album {
    display: block;

    color: #d8d8d8;

    text-decoration: none;
}


.album img {
    width: 100%;

    height: 400px;

    object-fit: cover;

    display: block;

    filter: grayscale(20%);

    transition:
        opacity 0.2s ease;
}


.album:hover img {
    opacity: 0.75;
}


.album-info {
    display: flex;

    justify-content: space-between;

    padding-top: 12px;

    font-size: 14px;

    letter-spacing: 1px;
}


.album-info span:last-child {
    color: #777;
}


/* =========================================================
   PUBLIC PHOTOGRAPHY - DYNAMIC ALBUMS
========================================================= */

.hidden {
    display: none !important;
}


.public-albums {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 50px 40px;
}


.public-album {
    width: 100%;

    cursor: pointer;
}


.public-album-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #252525;

    border: 1px solid #555;
}


.public-album-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: grayscale(15%);

    transition:
        opacity 0.2s ease;
}


.public-album:hover
.public-album-image img {
    opacity: 0.75;
}


.public-album-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #666;

    font-size: 13px;
}


.public-album-info {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 12px;

    font-size: 14px;

    letter-spacing: 1px;
}


.public-album-info span:last-child {
    color: #777;

    text-align: right;
}


/* =========================================================
   PUBLIC ALBUM DETAIL
========================================================= */

.public-album-detail {
    width: 100%;
}


.public-album-header {
    display: flex;

    align-items: flex-start;

    gap: 40px;

    margin-bottom: 50px;

    padding-bottom: 20px;

    border-bottom: 1px solid #555;
}


.public-album-header h2 {
    margin: 0 0 8px;

    font-size: 20px;

    font-weight: normal;

    letter-spacing: 3px;
}


.public-album-header p {
    margin: 0;

    color: #777;

    font-size: 13px;
}


.public-back {
    margin: 0;

    padding: 7px 10px;

    background: transparent;

    border: 1px solid #555;

    color: #aaa;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;

    white-space: nowrap;
}


.public-back:hover {
    color: white;

    border-color: #999;
}


/* =========================================================
   PUBLIC PHOTO GRID
========================================================= */

.public-photo-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
}


.public-photo {
    width: 100%;

    cursor: pointer;
}


.public-photo-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #202020;
}


.public-photo-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 0.2s ease;
}


.public-photo:hover
.public-photo-image img {
    opacity: 0.8;
}


/* =========================================================
   PUBLIC PHOTO CAPTIONS
========================================================= */

.public-photo-caption {
    position: absolute;

    z-index: 5;

    max-width: 90%;

    padding: var(--caption-padding);

    color: var(--caption-color);

    font-size: var(--caption-size);

    text-align: var(--caption-align);

    line-height: 1.3;

    pointer-events: none;
}


.background-none {
    background: transparent;
}


.background-semi {
    background:
        rgba(
            0,
            0,
            0,
            var(--caption-opacity)
        );
}


.background-solid {
    background:
        rgba(
            0,
            0,
            0,
            1
        );
}


/* =========================================================
   CAPTION POSITIONS
========================================================= */

.position-top-left
.public-photo-caption {
    top: 10px;
    left: 10px;
}


.position-top-center
.public-photo-caption {
    top: 10px;

    left: 50%;

    transform:
        translateX(-50%);
}


.position-top-right
.public-photo-caption {
    top: 10px;

    right: 10px;
}


.position-center-left
.public-photo-caption {
    top: 50%;

    left: 10px;

    transform:
        translateY(-50%);
}


.position-center
.public-photo-caption {
    top: 50%;

    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );
}


.position-center-right
.public-photo-caption {
    top: 50%;

    right: 10px;

    transform:
        translateY(-50%);
}


.position-bottom-left
.public-photo-caption {
    bottom: 10px;

    left: 10px;
}


.position-bottom-center
.public-photo-caption {
    bottom: 10px;

    left: 50%;

    transform:
        translateX(-50%);
}


.position-bottom-right
.public-photo-caption {
    bottom: 10px;

    right: 10px;
}


/* =========================================================
   PUBLIC LIGHTBOX
========================================================= */

.public-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 50px;

    background:
        rgba(
            0,
            0,
            0,
            0.96
        );

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.2s ease;
}


.public-lightbox.active {
    opacity: 1;

    visibility: visible;
}


.public-lightbox-content {
    max-width: 90vw;

    max-height: 90vh;

    text-align: center;
}


.public-lightbox-content img {
    display: block;

    max-width: 90vw;

    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    margin: 0 auto;
}


.public-lightbox-caption {
    margin-top: 15px;

    color: #ccc;

    font-size: 14px;

    line-height: 1.4;
}


.public-lightbox-close,
.public-lightbox-prev,
.public-lightbox-next {
    position: absolute;

    margin: 0;

    padding: 10px;

    background: none;

    border: none;

    color: #aaa;

    font-family: inherit;

    cursor: pointer;
}


.public-lightbox-close {
    top: 20px;
    right: 25px;
}


.public-lightbox-prev {
    left: 25px;

    top: 50%;

    transform:
        translateY(-50%);
}


.public-lightbox-next {
    right: 25px;

    top: 50%;

    transform:
        translateY(-50%);
}


.public-lightbox-close:hover,
.public-lightbox-prev:hover,
.public-lightbox-next:hover {
    color: white;
}


.public-loading,
.public-error,
.public-empty {
    color: #777;

    font-size: 13px;
}


/* =========================================================
   GENERIC PHOTO LIGHTBOX / OLD
========================================================= */

.photo-lightbox {
    position: fixed;

    inset: 0;

    background:
        rgba(
            0,
            0,
            0,
            0.95
        );

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.2s ease;

    z-index: 9999;
}


.photo-lightbox.active {
    opacity: 1;

    visibility: visible;
}


.photo-lightbox img {
    max-width: 95vw;

    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 0 30px
        rgba(
            0,
            0,
            0,
            0.5
        );
}


.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    background: none;

    border: none;

    color: #cccccc;

    font-family: inherit;

    font-size: 16px;

    cursor: pointer;

    z-index: 10000;
}


.lightbox-close:hover {
    color: white;
}


/* =========================================================
   ADMIN
========================================================= */

.admin-login,
.admin-dashboard {
    max-width: 1000px;

    margin: 100px auto;

    padding: 0 30px;
}


.admin-login form {
    max-width: 400px;

    margin-top: 40px;
}


.admin-login label {
    display: block;

    margin-top: 20px;
}


.admin-login input {
    width: 100%;

    margin-top: 8px;

    padding: 10px;

    background: #222;

    color: #ddd;

    border: 1px solid #666;

    font-family: inherit;
}


button {
    margin-top: 20px;

    padding: 10px 15px;

    background: transparent;

    color: #ddd;

    border: 1px solid #777;

    font-family: inherit;

    cursor: pointer;
}


button:hover {
    background: #444;
}


.admin-section {
    margin-top: 60px;
}


.admin-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-top: 25px;
}


.admin-card {
    display: block;

    padding: 25px;

    border: 1px solid #555;

    color: #ddd;

    text-decoration: none;
}


.admin-card:hover {
    background: #3a3a3a;
}


.admin-card strong,
.admin-card span {
    display: block;
}


.admin-card span {
    margin-top: 10px;

    opacity: 0.6;
}


.admin-header {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


.admin-albums {
    margin-top: 30px;
}


.admin-album {
    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid #555;

    padding: 25px 0;
}


.admin-album h2 {
    margin: 0 0 8px;
}


.admin-album p {
    margin: 0 0 8px;
}


.admin-actions {
    display: flex;

    gap: 10px;
}


.admin-actions button {
    margin-top: 0;
}


/* =========================================================
   ADMIN MODALS
========================================================= */

.modal {
    position: fixed;

    inset: 0;

    background:
        rgba(
            0,
            0,
            0,
            0.75
        );

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 1000;
}


.modal.hidden {
    display: none;
}


.modal-content {
    width:
        min(
            700px,
            90%
        );

    max-height: 85vh;

    overflow-y: auto;

    padding: 35px;

    background: #303030;

    border: 1px solid #777;
}


.modal-content label {
    display: block;

    margin-top: 20px;
}


.modal-content input[type="text"],
.modal-content input[type="number"],
.modal-content textarea {
    width: 100%;

    margin-top: 8px;

    padding: 10px;

    background: #222;

    color: #ddd;

    border: 1px solid #666;

    font-family: inherit;
}


.modal-content textarea {
    min-height: 120px;

    resize: vertical;
}


.modal-close {
    float: right;

    margin: 0;
}


#photo-list {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 30px;
}


.admin-photo {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}


/* =========================================================
   PAGE BUILDER
========================================================= */

.builder-body {
    margin: 0;

    min-height: 100vh;

    background: #303030;

    color: #cccccc;
}


.builder-header {
    min-height: 60px;

    padding: 0 25px;

    border-bottom:
        1px solid #555;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.builder-header > div {
    display: flex;

    align-items: center;

    gap: 25px;
}


.builder-header a,
.builder-header button {
    color: #cccccc;

    background: none;

    border: none;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    text-decoration: none;
}


.builder-header a:hover,
.builder-header button:hover {
    color: white;
}


.builder {
    display: grid;

    grid-template-columns:
        230px 1fr;

    min-height:
        calc(
            100vh - 60px
        );
}


.builder-sidebar {
    border-right:
        1px solid #555;

    padding: 25px;
}


.builder-sidebar h2 {
    font-size: 13px;

    font-weight: normal;

    margin: 0 0 15px;
}


.builder-sidebar hr {
    border: 0;

    border-top:
        1px solid #555;

    margin: 30px 0;
}


.add-block {
    display: block;

    width: 100%;

    padding: 12px 8px;

    margin-bottom: 8px;

    text-align: left;

    background: #383838;

    border: 1px solid #555;

    color: #cccccc;

    font-family: inherit;

    cursor: pointer;
}


.add-block:hover {
    background: #444;

    color: white;
}


.builder-area {
    padding: 40px;

    overflow: auto;
}


.builder-grid {
    display: grid;

    grid-template-columns:
        repeat(
            12,
            minmax(
                0,
                1fr
            )
        );

    grid-auto-rows:
        80px;

    gap: 12px;

    min-width: 700px;

    min-height: 700px;

    padding: 20px;

    border:
        1px dashed #555;

    background:
        linear-gradient(
            #383838 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            #383838 1px,
            transparent 1px
        );

    background-size:
        calc(
            100% / 12
        )
        80px;
}


.builder-block {
    position: relative;

    overflow: hidden;

    border:
        1px solid #666;

    background: #353535;

    cursor: grab;
}


.builder-block:active {
    cursor: grabbing;
}


.builder-block.dragging {
    opacity: 0.75;
    border-color: #c5a5ff;
    cursor: grabbing;
}


.builder-block.resizing {
    border-color: #c5a5ff;
}


.builder-block:hover {
    border-color: #aaa;
}


.builder-block.selected {
    border:
        2px solid white;

    user-select: none;
}


.builder-block img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    pointer-events: none;

    user-select: none;
}


.block-label {
    position: absolute;

    top: 8px;
    left: 8px;

    z-index: 2;

    font-size: 11px;

    background: #303030;

    padding: 3px 5px;
}


.block-content {
    padding:
        40px
        20px
        20px;

    font-size: 18px;
}


.block-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #777;
}


/* =========================================================
   BUILDER SETTINGS
========================================================= */

#block-settings label {
    display: block;

    margin:
        15px
        0
        6px;

    font-size: 11px;
}


#block-settings input,
#block-settings textarea,
#block-settings select {
    width: 100%;

    padding: 8px;

    background: #383838;

    border:
        1px solid #555;

    color: #ddd;

    font-family: inherit;
}


#block-settings textarea {
    min-height: 100px;

    resize: vertical;
}


.setting-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;
}


#block-settings button {
    width: 100%;

    padding: 10px;

    margin-top: 15px;

    background: #383838;

    border:
        1px solid #666;

    color: #ddd;

    font-family: inherit;

    cursor: pointer;
}


#block-settings button:hover {
    background: #444;
}


#block-settings .danger {
    color: #ff9999;
}


.no-selection {
    color: #777;

    font-size: 13px;
}


/* =========================================================
   BUILDER RESIZE HANDLE
========================================================= */

.resize-handle {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 16px;
    height: 16px;

    background: #cccccc;

    border-left:
        1px solid #303030;

    border-top:
        1px solid #303030;

    cursor: nwse-resize;

    z-index: 20;
}


.builder-block:not(.selected)
.resize-handle {
    display: none;
}


.builder-block.selected
.resize-handle:hover {
    background: white;
}


.builder-block.selected
.resize-handle {
    cursor: nwse-resize;
}


/* =========================================================
   BUILDER MESSAGE
========================================================= */

#builder-message {
    position: fixed;

    bottom: 20px;
    right: 25px;

    margin: 0;

    padding: 10px 15px;

    background: #202020;

    border:
        1px solid #555;

    color: #ccc;

    z-index: 5000;
}


/* =========================================================
   PHOTOGRAPHY ADMIN
========================================================= */

.photo-admin-body {
    margin: 0;

    min-height: 100vh;

    background: #303030;

    color: #cccccc;
}


.photo-admin-header {
    min-height: 60px;

    padding: 0 25px;

    border-bottom:
        1px solid #555;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.photo-admin-header > div {
    display: flex;

    align-items: center;

    gap: 25px;
}


.photo-admin-header a,
.photo-admin-header button {
    color: #cccccc;

    background: none;

    border: none;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    text-decoration: none;
}


.photo-admin-header a:hover,
.photo-admin-header button:hover {
    color: white;
}


/* =========================================================
   PHOTOGRAPHY ADMIN LAYOUT
========================================================= */

.photo-admin {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr)
        280px;

    min-height:
        calc(
            100vh - 60px
        );
}


.album-sidebar {
    border-right:
        1px solid #555;

    padding: 25px;

    overflow-y: auto;
}


.photo-settings-sidebar {
    border-left:
        1px solid #555;

    padding: 25px;

    overflow-y: auto;
}


.photo-admin-main {
    min-width: 0;

    padding: 30px;

    overflow-y: auto;
}


.photo-admin-section-title {
    font-size: 12px;

    margin-bottom: 15px;

    color: #aaa;
}


.photo-admin-muted {
    color: #777;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   PHOTOGRAPHY ADMIN BUTTONS
========================================================= */

.photo-admin-button {
    width: 100%;

    padding: 10px 8px;

    margin-bottom: 8px;

    background: #383838;

    border:
        1px solid #555;

    color: #cccccc;

    font-family: inherit;

    cursor: pointer;
}


.photo-admin-button:hover {
    background: #444;

    color: white;
}


.photo-admin-button:disabled {
    opacity: 0.35;

    cursor: default;
}


/* =========================================================
   ALBUM LIST
========================================================= */

.album-list-item {
    display: block;

    width: 100%;

    padding: 10px;

    margin-bottom: 5px;

    text-align: left;

    background: transparent;

    border:
        1px solid transparent;

    color: #aaa;

    font-family: inherit;

    cursor: pointer;
}


.album-list-item:hover {
    color: white;

    border-color: #555;
}


.album-list-item.selected {
    background: #383838;

    border-color: #777;

    color: white;
}


/* =========================================================
   ALBUM HEADER
========================================================= */

.album-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom:
        1px solid #555;
}


.album-header h1 {
    margin: 0 0 8px;

    font-size: 20px;

    font-weight: normal;
}


.album-header p {
    margin: 0;

    color: #777;

    font-size: 12px;
}


/* =========================================================
   PHOTOGRAPHY ADMIN GRID
========================================================= */

.photo-admin-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(
                220px,
                1fr
            )
        );

    gap: 15px;
}


.photo-card {
    position: relative;

    border:
        1px solid #555;

    background: #353535;

    cursor: pointer;
}


.photo-card:hover {
    border-color: #aaa;
}


.photo-card.selected {
    border:
        2px solid white;
}


.photo-card-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #202020;
}


.photo-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.photo-card-info {
    padding: 10px;

    font-size: 12px;
}


.photo-card-info strong {
    font-weight: normal;
}


/* =========================================================
   PHOTOGRAPHY ADMIN CAPTIONS
========================================================= */

.photo-caption {
    position: absolute;

    z-index: 5;

    color: white;

    box-sizing: border-box;

    pointer-events: none;
}


.caption-below .photo-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    background:
        rgba(
            0,
            0,
            0,
            0.65
        );

    padding: 8px;

    font-size: 12px;
}


.caption-overlay .photo-caption {
    max-width: 90%;
}


.position-top-left
.photo-caption {
    top: 8px;
    left: 8px;
}


.position-top-center
.photo-caption {
    top: 8px;

    left: 50%;

    transform:
        translateX(-50%);
}


.position-top-right
.photo-caption {
    top: 8px;
    right: 8px;
}


.position-center-left
.photo-caption {
    top: 50%;
    left: 8px;

    transform:
        translateY(-50%);
}


.position-center
.photo-caption {
    top: 50%;
    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );
}


.position-center-right
.photo-caption {
    top: 50%;
    right: 8px;

    transform:
        translateY(-50%);
}


.position-bottom-left
.photo-caption {
    bottom: 8px;
    left: 8px;
}


.position-bottom-center
.photo-caption {
    bottom: 8px;

    left: 50%;

    transform:
        translateX(-50%);
}


.position-bottom-right
.photo-caption {
    bottom: 8px;
    right: 8px;
}


/* =========================================================
   PHOTO SETTINGS
========================================================= */

.photo-settings-sidebar label {
    display: block;

    margin:
        18px
        0
        6px;

    font-size: 10px;

    color: #999;
}


.photo-settings-sidebar input,
.photo-settings-sidebar textarea,
.photo-settings-sidebar select {
    width: 100%;

    padding: 8px;

    background: #383838;

    border:
        1px solid #555;

    color: #ddd;

    font-family: inherit;

    font-size: 12px;
}


.photo-settings-sidebar textarea {
    min-height: 90px;

    resize: vertical;
}


.photo-settings-sidebar input[type="color"] {
    height: 35px;

    padding: 2px;
}


.photo-settings-sidebar input[type="range"] {
    padding: 0;
}


.photo-admin-danger {
    width: 100%;

    margin-top: 25px;

    padding: 10px;

    background: #383838;

    border:
        1px solid #775555;

    color: #ff9999;

    font-family: inherit;

    cursor: pointer;
}


.photo-admin-danger:hover {
    background: #444;
}


/* =========================================================
   PHOTO ADMIN EMPTY STATE
========================================================= */

.photo-empty {
    grid-column:
        1 / -1;

    padding: 80px 20px;

    text-align: center;

    color: #666;

    border:
        1px dashed #555;
}


/* =========================================================
   PHOTO ADMIN MESSAGE
========================================================= */

#photo-admin-message {
    position: fixed;

    right: 25px;

    bottom: 20px;

    margin: 0;

    padding: 10px 15px;

    background: #202020;

    border:
        1px solid #555;

    color: #ccc;

    z-index: 5000;
}


/* =========================================================
   IMAGE SETTINGS
========================================================= */

.image-preview {
    width: 100%;

    height: 120px;

    margin-bottom: 10px;

    border:
        1px solid #555;

    background: #202020;

    overflow: hidden;
}


.image-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


#image-file {
    width: 100%;

    color: #aaa;

    font-family: inherit;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE - PUBLIC PHOTOGRAPHY
========================================================= */

@media (max-width: 1100px) {

    .public-photo-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


@media (max-width: 900px) {

    .public-albums {
        grid-template-columns:
            1fr;
    }


    .photo-admin {
        grid-template-columns:
            180px
            minmax(
                0,
                1fr
            );
    }


    .photo-settings-sidebar {
        display: none;
    }


    .public-photo-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


@media (max-width: 700px) {

    nav {
        gap: 16px;

        flex-wrap: wrap;

        padding-left: 15px;
        padding-right: 15px;

        font-size: 15px;
    }


    .photo-page {
        padding:
            0 20px;
    }


    .admin-grid {
        grid-template-columns:
            1fr;
    }


    .admin-header,
    .admin-album {
        display: block;
    }


    .admin-actions {
        margin-top: 20px;
    }


    .photo-admin-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        padding:
            15px 20px;
    }


    .photo-admin-header > div {
        flex-wrap: wrap;

        gap: 15px;
    }


    .photo-admin {
        display: block;
    }


    .album-sidebar {
        border-right: none;

        border-bottom:
            1px solid #555;
    }


    .photo-admin-main {
        padding: 20px;
    }


    .album-header {
        display: block;
    }


    .album-header .photo-admin-button {
        margin-top: 20px;
    }


    .public-album-header {
        display: block;
    }


    .public-back {
        margin-bottom: 25px;
    }


    .public-photo-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap: 15px;
    }


    #photo-list {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    footer {
        bottom: 20px;
        left: 20px;

        margin: 0;

        font-size: 12px;
    }

}


@media (max-width: 450px) {

    .public-photo-grid {
        grid-template-columns:
            1fr;
    }


    .public-album-info {
        display: block;
    }


    .public-album-info span {
        display: block;
    }


    .public-album-info span:last-child {
        margin-top: 5px;

        text-align: left;
    }

}/* =========================================================
   PUBLIC HOME BUILDER
========================================================= */

.public-home-builder {
    width: 100%;

    min-height:
        calc(100vh - 150px);

    padding:
        80px 50px 120px;
}


/* =========================================================
   HOME GRID
========================================================= */

.public-home-grid {
    display: grid;

    grid-template-columns:
        repeat(
            12,
            minmax(
                0,
                1fr
            )
        );

    grid-auto-rows:
        80px;

    gap: 12px;

    width: 100%;

    max-width: 930px;

    margin: 0 auto;

    padding: 20px;

    min-height: 700px;
}


/* =========================================================
   HOME BLOCK
========================================================= */

.public-home-block {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   HOME TEXT
========================================================= */

.public-home-text {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    color: #d8d8d8;

    font-size: 22px;

    line-height: 1.3;

    text-align: center;

    white-space: pre-wrap;
}


/* =========================================================
   HOME IMAGE
========================================================= */

.public-home-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   HOME VIDEO
========================================================= */

.public-home-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.public-home-video-preview {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    overflow: hidden;

    cursor: pointer;

    color: #b75cff;

    background: #09070d;

    border: 1px solid #4b176e;
}


.public-home-video-thumbnail {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 0.84;

    transition: transform 180ms ease, opacity 180ms ease;
}


.public-home-video-preview:hover .public-home-video-thumbnail,
.public-home-video-preview:focus-visible .public-home-video-thumbnail {
    transform: scale(1.035);

    opacity: 1;
}


.public-home-video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-left: 3px;

    font-size: 19px;

    color: #f0dfff;

    background: rgba(40, 8, 66, 0.88);

    border: 1px solid #c26bff;

    border-radius: 50%;

    box-shadow: 0 0 18px rgba(183, 92, 255, 0.6);

    transform: translate(-50%, -50%);
}


.public-home-video-platform {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


.public-home-video-frame {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   HOME PLACEHOLDER
========================================================= */

.public-home-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #666;

    border:
        1px dashed #555;

    font-size: 12px;
}


/* =========================================================
   HOME LOADING
========================================================= */

.public-home-loading {
    color: #777;

    font-size: 13px;
}


/* =========================================================
   HOME ERROR
========================================================= */

.public-home-error {
    display: flex;

    flex-direction: column;

    gap: 10px;

    color: #777;

    font-size: 13px;
}


.public-home-error strong {
    color: #aaa;
}


/* =========================================================
   HOME RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .public-home-builder {
        padding:
            60px 30px 100px;
    }


    .public-home-grid {
        gap: 10px;
    }


    .public-home-text {
        font-size: 18px;
    }

}


@media (max-width: 600px) {

    .public-home-builder {
        padding:
            50px 20px 100px;
    }


    .public-home-grid {
        display: flex;
        flex-direction: column;

        max-width: none;

        min-height: 0;

        padding: 0;

        gap: 16px;
    }


    .public-home-text {
        font-size: 16px;

        padding: 12px;
    }

}/* =========================================================
   JOURNAL — PUBLIC
========================================================= */

.journal-page {
    max-width: 1200px;

    margin:
        100px auto 140px;

    padding:
        0 40px;
}


/* =========================================================
   VIDEOS
========================================================= */

.video-page {
    max-width: 1200px;
    margin: 100px auto 120px;
    padding: 0 40px;
}

.video-header {
    margin-bottom: 45px;
}

.video-header h1 {
    font-size: 27px;
    font-weight: normal;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.video-header p,
.video-muted,
.video-field-note {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.public-video-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.public-video-card {
    border: 1px solid #555;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.public-video-card:hover,
.public-video-card:focus-visible {
    border-color: #999;
    background: #353535;
}

.public-video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #222;
}

.public-video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.25s ease, transform 0.35s ease;
}

.public-video-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.video-placeholder,
.video-thumbnail-preview span {
    height: 100%;
    display: grid;
    place-items: center;
    color: #777;
    font-size: 12px;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #eee;
    font-size: 18px;
    padding-left: 3px;
    background: rgba(25, 25, 25, 0.65);
}

.public-video-info {
    padding: 18px 20px 22px;
}

.public-video-info h2,
.video-lightbox-meta h2 {
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 17px;
}

.public-video-info p {
    margin-top: 10px;
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}

.video-empty,
.video-loading,
.video-error {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px solid #555;
    color: #999;
    font-size: 13px;
}

.video-error span {
    display: block;
    margin-top: 8px;
    color: #d88;
}

.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 70px 35px;
    background: rgba(15, 15, 15, 0.94);
}

.video-lightbox-content {
    width: min(1100px, 100%);
}

.video-player {
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-close {
    position: absolute;
    top: 25px;
    right: 35px;
    padding: 9px 11px;
    border: 1px solid #666;
    background: #303030;
    color: #ddd;
    font: inherit;
    cursor: pointer;
}

.video-close:hover {
    border-color: #ddd;
    color: #fff;
}

.video-lightbox-meta {
    padding-top: 17px;
}

.video-lightbox-meta p {
    margin-top: 8px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

.video-open {
    overflow: hidden;
}


/* =========================================================
   VIDEO ADMIN
========================================================= */

.video-admin-body {
    margin: 0;
    min-height: 100vh;
    background: #303030;
    color: #ccc;
}

.video-admin-header {
    min-height: 60px;
    padding: 0 25px;
    border-bottom: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-admin-header > div {
    display: flex;
    gap: 25px;
}

.video-admin-header a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}

.video-admin-header a:hover {
    color: #fff;
}

.video-admin-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: calc(100vh - 60px);
}

.video-admin-sidebar {
    padding: 25px;
    border-right: 1px solid #555;
}

.video-admin-title {
    margin-bottom: 15px;
    color: #999;
    font-size: 11px;
}

.video-admin-button,
.video-admin-danger {
    padding: 10px 12px;
    border: 1px solid #555;
    background: #383838;
    color: #ccc;
    font-family: inherit;
    cursor: pointer;
}

.video-admin-button:hover {
    background: #444;
    color: #fff;
}

.admin-video-list {
    margin-top: 18px;
}

.admin-video-list-item {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    padding: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: #aaa;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

.admin-video-list-item:hover,
.admin-video-list-item.selected {
    border-color: #777;
    background: #383838;
    color: #fff;
}

.admin-video-list-item strong,
.admin-video-list-item span {
    display: block;
}

.admin-video-list-item strong {
    margin-bottom: 5px;
    font-weight: normal;
}

.admin-video-list-item span {
    color: #777;
    font-size: 10px;
}

.video-editor {
    max-width: 1000px;
    padding: 35px 45px;
}

.video-editor-empty {
    color: #777;
    font-size: 13px;
}

.video-editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.video-editor-header h1 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
}

.video-editor-form label {
    display: block;
    margin: 20px 0 7px;
    color: #999;
    font-size: 11px;
}

.video-editor-form label span {
    color: #666;
}

.video-editor-form input,
.video-editor-form textarea,
.video-editor-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    background: #242424;
    color: #ddd;
    font-family: inherit;
}

.video-editor-form textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}

.video-field-note {
    margin-top: 8px;
}

.video-thumbnail-preview {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 9;
    margin-top: 15px;
    overflow: hidden;
    border: 1px solid #555;
    background: #222;
}

.video-thumbnail-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-admin-danger {
    margin-top: 30px;
    border-color: #775555;
    color: #f99;
}

.video-admin-danger:hover {
    background: #444;
}

#video-admin-message {
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 5000;
    margin: 0;
    padding: 10px 15px;
    border: 1px solid #555;
    background: #202020;
    color: #ccc;
}

@media (max-width: 800px) {
    .public-video-list { grid-template-columns: 1fr; }
    .video-page { margin-top: 70px; padding: 0 20px; }
    .video-admin-layout { grid-template-columns: 180px minmax(0, 1fr); }
    .video-editor { padding: 25px; }
}

@media (max-width: 600px) {
    .video-admin-layout { display: block; }
    .video-admin-sidebar { border-right: none; border-bottom: 1px solid #555; }
    .video-editor-header { display: block; }
    .video-editor-header .video-admin-button { margin-top: 20px; }
    .video-lightbox { padding: 70px 18px; }
    .video-close { right: 18px; }
}


/* =========================================================
   JOURNAL HEADER
========================================================= */

.journal-header {
    margin-bottom: 70px;
}


.journal-header h1 {
    margin: 0 0 18px;

    font-size: 28px;

    font-weight: normal;

    letter-spacing: 5px;
}


.journal-header p {
    max-width: 650px;

    margin: 0;

    color: #888;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   JOURNAL GRID
========================================================= */

.public-journal-list {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        60px 35px;
}


/* =========================================================
   JOURNAL CARD
========================================================= */

.public-journal-card {
    cursor: pointer;

    min-width: 0;
}


.public-journal-card-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #252525;

    border:
        1px solid #555;
}


.public-journal-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 0.2s ease,
        transform 0.35s ease;
}


.public-journal-card:hover
.public-journal-card-image img {
    opacity: 0.75;

    transform:
        scale(1.02);
}


/* =========================================================
   JOURNAL CARD INFO
========================================================= */

.public-journal-card-info {
    padding-top: 18px;
}


.public-journal-card-info h2 {
    margin:
        0 0 8px;

    font-size: 19px;

    font-weight: normal;

    letter-spacing: 2px;

    color: #ddd;
}


.public-journal-card-info time {
    display: block;

    margin-bottom: 15px;

    color: #777;

    font-size: 11px;
}


.public-journal-card-info p {
    max-width: 600px;

    margin:
        0 0 14px;

    color: #999;

    font-size: 13px;

    line-height: 1.6;
}


.journal-read-more {
    color: #aaa;

    font-size: 11px;

    letter-spacing: 1px;
}


.public-journal-card:hover
.journal-read-more {
    color: white;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.journal-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #666;

    font-size: 12px;
}


/* =========================================================
   SINGLE ARTICLE
========================================================= */

.public-journal-article {
    max-width: 900px;

    margin:
        0 auto 120px;
}


.public-journal-back {
    margin:
        0 0 35px;

    padding:
        8px 12px;

    background: transparent;

    border:
        1px solid #555;

    color: #aaa;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;
}


.public-journal-back:hover {
    color: white;

    border-color: #999;
}


.public-article-image {
    width: 100%;

    margin-bottom: 35px;

    overflow: hidden;

    background: #222;
}


.public-article-image img {
    width: 100%;
    height: auto;

    display: block;

    max-height: 700px;

    object-fit: contain;
}


/* =========================================================
   ARTICLE META
========================================================= */

.public-article-meta {
    margin-bottom: 40px;

    padding-bottom: 20px;

    border-bottom:
        1px solid #555;
}


.public-article-meta h1 {
    margin:
        0 0 12px;

    font-size: 30px;

    font-weight: normal;

    letter-spacing: 3px;

    line-height: 1.2;
}


.public-article-meta time {
    color: #777;

    font-size: 11px;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.public-article-content {
    max-width: 760px;

    color: #c8c8c8;

    font-size: 15px;

    line-height: 1.9;

    white-space: pre-wrap;
}


/* =========================================================
   STATES
========================================================= */

.journal-loading,
.journal-empty,
.journal-error {
    color: #777;

    font-size: 13px;
}


.journal-error {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.journal-error strong {
    color: #aaa;
}


/* =========================================================
   JOURNAL MOBILE
========================================================= */

@media (max-width: 800px) {

    .journal-page {

        margin-top:
            70px;

        padding:
            0 20px;

    }


    .public-journal-list {

        grid-template-columns:
            1fr;

        gap:
            45px;

    }


    .journal-header {

        margin-bottom:
            50px;

    }


    .journal-header h1 {

        font-size:
            24px;

    }


    .public-journal-article {

        margin-bottom:
            80px;

    }


    .public-article-meta h1 {

        font-size:
            24px;

    }


    .public-article-content {

        font-size:
            14px;

        line-height:
            1.8;

    }

}/* =========================================================
   JOURNAL — PUBLIC
========================================================= */

.journal-page {
    max-width: 1200px;

    margin:
        100px auto 140px;

    padding:
        0 40px;
}


.journal-header {
    margin-bottom: 70px;
}


.journal-header h1 {
    margin: 0 0 15px;

    font-size: 28px;

    font-weight: normal;

    letter-spacing: 5px;
}


.journal-header p {
    max-width: 650px;

    color: #888;

    font-size: 13px;

    line-height: 1.6;
}


.public-journal-list {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        60px 35px;
}


.public-journal-card {
    cursor: pointer;
}


.public-journal-card-image {
    width: 100%;

    aspect-ratio:
        16 / 10;

    overflow: hidden;

    background: #252525;

    border:
        1px solid #555;
}


.public-journal-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 0.2s ease,
        transform 0.35s ease;
}


.public-journal-card:hover
.public-journal-card-image img {
    opacity: 0.75;

    transform:
        scale(1.02);
}


.public-journal-card-info {
    padding-top: 18px;
}


.public-journal-card-info h2 {
    margin:
        0 0 8px;

    font-size: 19px;

    font-weight: normal;

    letter-spacing: 2px;
}


.public-journal-card-info time {
    display: block;

    margin-bottom: 14px;

    color: #777;

    font-size: 11px;
}


.public-journal-card-info p {
    margin:
        0 0 14px;

    color: #999;

    font-size: 13px;

    line-height: 1.6;
}


.journal-read-more {
    color: #aaa;

    font-size: 11px;

    letter-spacing: 1px;
}


.public-journal-card:hover
.journal-read-more {
    color: white;
}


.journal-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #666;

    font-size: 12px;
}


.journal-loading,
.journal-empty,
.journal-error {
    color: #777;

    font-size: 13px;
}


.journal-error {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   SINGLE ARTICLE
========================================================= */

.public-journal-article {
    max-width: 900px;

    margin:
        0 auto 120px;
}


.public-journal-back {
    margin:
        0 0 35px;

    padding:
        8px 12px;

    background: transparent;

    border:
        1px solid #555;

    color: #aaa;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;
}


.public-journal-back:hover {
    color: white;

    border-color: #999;
}


.public-article-image {
    width: 100%;

    margin-bottom: 35px;

    overflow: hidden;

    background: #222;
}


.public-article-image img {
    width: 100%;

    height: auto;

    display: block;

    max-height: 700px;

    object-fit: contain;
}


.public-article-meta {
    margin-bottom: 40px;

    padding-bottom: 20px;

    border-bottom:
        1px solid #555;
}


.public-article-meta h1 {
    margin:
        0 0 12px;

    font-size: 30px;

    font-weight: normal;

    letter-spacing: 3px;
}


.public-article-meta time {
    color: #777;

    font-size: 11px;
}


.public-article-content {
    max-width: 760px;

    color: #c8c8c8;

    font-size: 15px;

    line-height: 1.9;

    white-space: pre-wrap;
}


/* =========================================================
   JOURNAL ADMIN
========================================================= */

.journal-admin-body {
    margin: 0;

    min-height: 100vh;

    background: #303030;

    color: #ccc;
}


.journal-admin-header {
    min-height: 60px;

    padding:
        0 25px;

    border-bottom:
        1px solid #555;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.journal-admin-header > div {
    display: flex;

    gap: 25px;
}


.journal-admin-header a {
    color: #ccc;

    text-decoration: none;

    font-size: 13px;
}


.journal-admin-header a:hover {
    color: white;
}


.journal-admin-layout {
    display: grid;

    grid-template-columns:
        260px
        minmax(
            0,
            1fr
        );

    min-height:
        calc(
            100vh - 60px
        );
}


.journal-admin-sidebar {
    padding: 25px;

    border-right:
        1px solid #555;
}


.journal-admin-title {
    margin-bottom: 15px;

    color: #999;

    font-size: 11px;
}


.journal-admin-button {
    padding:
        10px 12px;

    background: #383838;

    border:
        1px solid #555;

    color: #ccc;

    font-family: inherit;

    cursor: pointer;
}


.journal-admin-button:hover {
    background: #444;

    color: white;
}


.journal-article-list {
    margin-top: 18px;
}


.journal-article-list-item {
    display: block;

    width: 100%;

    margin-bottom: 6px;

    padding: 12px;

    background: transparent;

    border:
        1px solid transparent;

    color: #aaa;

    text-align: left;

    font-family: inherit;

    cursor: pointer;
}


.journal-article-list-item:hover {
    color: white;

    border-color: #555;
}


.journal-article-list-item.selected {
    background: #383838;

    border-color: #777;

    color: white;
}


.journal-article-list-item strong {
    display: block;

    margin-bottom: 5px;

    font-weight: normal;
}


.journal-article-list-item span {
    color: #777;

    font-size: 10px;
}


.journal-editor {
    max-width: 1000px;

    padding:
        35px 45px;
}


.journal-editor-empty {
    color: #777;

    font-size: 13px;
}


.journal-editor-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.journal-editor-header h1 {
    margin: 0;

    font-size: 20px;

    font-weight: normal;

    letter-spacing: 2px;
}


.journal-editor-form label {
    display: block;

    margin:
        20px 0 7px;

    color: #999;

    font-size: 11px;
}


.journal-editor-form input,
.journal-editor-form textarea,
.journal-editor-form select {
    width: 100%;

    padding:
        10px;

    background: #242424;

    border:
        1px solid #555;

    color: #ddd;

    font-family: inherit;
}


.journal-content-input {
    min-height: 400px;

    resize: vertical;

    line-height: 1.7;
}


.journal-image-preview {
    width: 100%;

    max-width: 650px;

    height: 240px;

    margin-top: 15px;

    overflow: hidden;

    background: #222;

    border:
        1px solid #555;
}


.journal-image-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.journal-admin-danger {
    margin-top: 30px;

    padding:
        10px 12px;

    background: #383838;

    border:
        1px solid #775555;

    color: #ff9999;

    font-family: inherit;

    cursor: pointer;
}


.journal-admin-danger:hover {
    background: #444;
}


#journal-admin-message {
    position: fixed;

    right: 25px;
    bottom: 20px;

    margin: 0;

    padding:
        10px 15px;

    background: #202020;

    border:
        1px solid #555;

    color: #ccc;

    z-index: 5000;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .public-journal-list {
        grid-template-columns:
            1fr;
    }


    .journal-page {
        padding:
            0 20px;

        margin-top:
            70px;
    }


    .journal-admin-layout {
        grid-template-columns:
            180px
            minmax(
                0,
                1fr
            );
    }


    .journal-editor {
        padding:
            25px;
    }

}


@media (max-width: 600px) {

    .journal-admin-layout {
        display: block;
    }


    .journal-admin-sidebar {
        border-right: none;

        border-bottom:
            1px solid #555;
    }


    .journal-editor-header {
        display: block;
    }


    .journal-editor-header .journal-admin-button {
        margin-top: 20px;
    }

}/* =========================================================
   JOURNAL COVER UPLOAD
========================================================= */

.journal-cover-controls {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 8px;
}


.journal-cover-controls button {
    margin-top: 0;
}


.journal-admin-secondary {
    padding:
        10px 12px;

    background:
        transparent;

    border:
        1px solid #555;

    color: #888;

    font-family: inherit;

    cursor: pointer;
}


.journal-admin-secondary:hover {
    color: white;

    border-color: #888;
}


/* =========================================================
   JOURNAL PREVIEW
========================================================= */

.journal-image-preview {
    width: 100%;

    max-width: 650px;

    height: 280px;

    margin-top: 15px;

    overflow: hidden;

    background: #222;

    border:
        1px solid #555;
}


.journal-image-preview:empty {
    display: none;
}


.journal-image-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   PUBLIC JOURNAL
========================================================= */

.journal-page {
    max-width: 1200px;

    margin:
        100px auto 140px;

    padding:
        0 40px;
}


.journal-header {
    margin-bottom: 70px;
}


.journal-header h1 {
    margin: 0 0 15px;

    font-size: 28px;

    font-weight: normal;

    letter-spacing: 5px;
}


.journal-header p {
    max-width: 650px;

    margin: 0;

    color: #888;

    font-size: 13px;

    line-height: 1.6;
}


.public-journal-list {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        60px 35px;
}


.public-journal-card {
    cursor: pointer;

    min-width: 0;
}


.public-journal-card-image {
    width: 100%;

    aspect-ratio:
        16 / 10;

    overflow: hidden;

    background: #252525;

    border:
        1px solid #555;
}


.public-journal-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 0.2s ease,
        transform 0.35s ease;
}


.public-journal-card:hover
.public-journal-card-image img {
    opacity: 0.75;

    transform:
        scale(1.02);
}


.public-journal-card-info {
    padding-top: 18px;
}


.public-journal-card-info h2 {
    margin:
        0 0 8px;

    font-size: 19px;

    font-weight: normal;

    letter-spacing: 2px;
}


.public-journal-card-info time {
    display: block;

    margin-bottom: 14px;

    color: #777;

    font-size: 11px;
}


.public-journal-card-info p {
    margin:
        0 0 14px;

    color: #999;

    font-size: 13px;

    line-height: 1.6;
}


.journal-read-more {
    color: #aaa;

    font-size: 11px;

    letter-spacing: 1px;
}


.public-journal-card:hover
.journal-read-more {
    color: white;
}


.journal-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #666;

    font-size: 12px;
}


.journal-loading,
.journal-empty,
.journal-error {
    color: #777;

    font-size: 13px;
}


.journal-error {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.journal-error strong {
    color: #aaa;
}


/* =========================================================
   PUBLIC ARTICLE
========================================================= */

.public-journal-article {
    max-width: 900px;

    margin:
        0 auto 120px;
}


.public-journal-back {
    margin:
        0 0 35px;

    padding:
        8px 12px;

    background: transparent;

    border:
        1px solid #555;

    color: #aaa;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;
}


.public-journal-back:hover {
    color: white;

    border-color: #999;
}


.public-article-image {
    width: 100%;

    margin-bottom: 35px;

    overflow: hidden;

    background: #222;
}


.public-article-image img {
    width: 100%;

    height: auto;

    display: block;

    max-height: 700px;

    object-fit: contain;
}


.public-article-meta {
    margin-bottom: 40px;

    padding-bottom: 20px;

    border-bottom:
        1px solid #555;
}


.public-article-meta h1 {
    margin:
        0 0 12px;

    font-size: 30px;

    font-weight: normal;

    letter-spacing: 3px;

    line-height: 1.2;
}


.public-article-meta time {
    color: #777;

    font-size: 11px;
}


.public-article-content {
    max-width: 760px;

    color: #c8c8c8;

    font-size: 15px;

    line-height: 1.9;

    white-space: pre-wrap;
}


/* =========================================================
   JOURNAL ADMIN
========================================================= */

.journal-admin-body {
    margin: 0;

    min-height: 100vh;

    background: #303030;

    color: #ccc;
}


.journal-admin-header {
    min-height: 60px;

    padding:
        0 25px;

    border-bottom:
        1px solid #555;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.journal-admin-header > div {
    display: flex;

    gap: 25px;
}


.journal-admin-header a {
    color: #ccc;

    text-decoration: none;

    font-size: 13px;
}


.journal-admin-header a:hover {
    color: white;
}


.journal-admin-layout {
    display: grid;

    grid-template-columns:
        260px
        minmax(
            0,
            1fr
        );

    min-height:
        calc(
            100vh - 60px
        );
}


.journal-admin-sidebar {
    padding: 25px;

    border-right:
        1px solid #555;
}


.journal-admin-title {
    margin-bottom: 15px;

    color: #999;

    font-size: 11px;
}


.journal-admin-button {
    padding:
        10px 12px;

    background:
        #383838;

    border:
        1px solid #555;

    color: #ccc;

    font-family: inherit;

    cursor: pointer;
}


.journal-admin-button:hover {
    background:
        #444;

    color: white;
}


.journal-article-list {
    margin-top: 18px;
}


.journal-article-list-item {
    display: block;

    width: 100%;

    margin-bottom: 6px;

    padding: 12px;

    background: transparent;

    border:
        1px solid transparent;

    color: #aaa;

    text-align: left;

    font-family: inherit;

    cursor: pointer;
}


.journal-article-list-item:hover {
    border-color: #555;

    color: white;
}


.journal-article-list-item.selected {
    background: #383838;

    border-color: #777;

    color: white;
}


.journal-article-list-item strong {
    display: block;

    margin-bottom: 5px;

    font-weight: normal;
}


.journal-article-list-item span {
    color: #777;

    font-size: 10px;
}


.journal-editor {
    max-width: 1000px;

    padding:
        35px 45px;
}


.journal-editor-empty {
    color: #777;

    font-size: 13px;
}


.journal-editor-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.journal-editor-header h1 {
    margin: 0;

    font-size: 20px;

    font-weight: normal;

    letter-spacing: 2px;
}


.journal-editor-form label {
    display: block;

    margin:
        20px 0 7px;

    color: #999;

    font-size: 11px;
}


.journal-editor-form input,
.journal-editor-form textarea,
.journal-editor-form select {
    width: 100%;

    padding:
        10px;

    background:
        #242424;

    border:
        1px solid #555;

    color: #ddd;

    font-family: inherit;
}


.journal-content-input {
    min-height: 400px;

    resize: vertical;

    line-height: 1.7;
}


.journal-admin-danger {
    margin-top: 30px;

    padding:
        10px 12px;

    background:
        #383838;

    border:
        1px solid #775555;

    color: #ff9999;

    font-family: inherit;

    cursor: pointer;
}


.journal-admin-danger:hover {
    background:
        #444;
}


#journal-admin-message {
    position: fixed;

    right: 25px;

    bottom: 20px;

    padding:
        10px 15px;

    background:
        #202020;

    border:
        1px solid #555;

    color: #ccc;

    z-index: 5000;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .public-journal-list {
        grid-template-columns:
            1fr;
    }


    .journal-page {
        padding:
            0 20px;

        margin-top:
            70px;
    }


    .journal-admin-layout {
        grid-template-columns:
            180px
            minmax(
                0,
                1fr
            );
    }


    .journal-editor {
        padding:
            25px;
    }

}


@media (max-width: 600px) {

    .journal-admin-layout {
        display: block;
    }


    .journal-admin-sidebar {
        border-right:
            none;

        border-bottom:
            1px solid #555;
    }


    .journal-editor-header {
        display: block;
    }


    .journal-editor-header
    .journal-admin-button {
        margin-top:
            20px;
    }


    .journal-cover-controls {
        flex-wrap: wrap;
    }

}


/* =========================================================
   PUBLIC SITE — MOBILE COMPOSITION
========================================================= */

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }


    nav {
        justify-content: center;

        gap: 8px 12px;

        padding: 26px 20px 0;

        font-size: 13px;
        line-height: 1.4;
    }


    nav span {
        display: none;
    }


    nav a {
        padding: 5px 0;
    }


    .public-home-builder {
        min-height: 0;

        padding: 42px 16px 100px;
    }


    .public-home-grid {
        display: flex;
        flex-direction: column;

        min-height: 0;

        gap: 16px;
    }


    .public-home-block {
        width: 100%;

        grid-column: auto !important;
        grid-row: auto !important;
    }


    .public-home-block--text {
        width: fit-content;
        max-width: 100%;

        min-height: 0;

        align-self: center;
    }


    .public-home-block--text .public-home-text {
        width: auto;
        height: auto;

        padding: 6px 0;

        color: #e0c6ff;

        text-shadow: 0 0 9px rgba(171, 93, 242, 0.36);
    }


    .public-home-block--image {
        min-height: 0;

        aspect-ratio: 4 / 3;

        background: #09070d;
    }


    .public-home-block--video {
        min-height: 0;

        aspect-ratio: 16 / 10;

        background: #09070d;
    }


    .public-home-block--journal,
    .public-home-block--photo {
        min-height: 150px;
    }


    .public-home-image {
        object-fit: contain;

        background: #09070d;
    }


    .public-home-text {
        padding: 16px;

        font-size: 16px;
    }


    .photo-page,
    .video-page,
    .journal-page,
    .contact-page {
        margin-top: 52px;

        padding-right: 16px;
        padding-left: 16px;
    }


    .public-albums,
    .public-journal-list {
        gap: 34px;
    }


    footer {
        bottom: 15px;
        left: 16px;

        margin: 0;

        gap: 10px;

        font-size: 11px;
    }

}
