html { scroll-behavior: smooth; }
.content p { margin-bottom: .8rem; }
.content a { color: #54A0FF; }
.content img { border-radius: .5rem; margin: .7rem 0; max-width: 100%; height: auto; }
.content img,
.content a img {
    cursor: zoom-in;
}
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.image-lightbox-backdrop,
.image-lightbox-content,
.image-lightbox-content img {
    will-change: transform, opacity;
}
.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 16, 0.86);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.22s ease;
}
.image-lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(94vw, 1200px);
    height: min(88vh, 920px);
    margin: 6vh auto;
    padding: 0.75rem;
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.image-lightbox-content img {
    display: block;
    max-width: min(92vw, 1160px);
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 0.8rem;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.55);
    transform: scale(0.985);
    transition: transform 0.22s ease;
}
.image-lightbox.is-open .image-lightbox-backdrop {
    opacity: 1;
}
.image-lightbox.is-open .image-lightbox-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.image-lightbox.is-open .image-lightbox-content img {
    transform: scale(1);
}
.image-lightbox.is-portrait .image-lightbox-content img {
    max-width: min(62vw, 760px);
    max-height: 84vh;
}
.image-lightbox-content figcaption {
    margin-top: 0.75rem;
    color: #dbe8f7;
    text-align: center;
    font-size: 0.95rem;
    max-width: min(94vw, 900px);
}
.image-lightbox-close {
    position: fixed;
    z-index: 3;
    right: 1rem;
    top: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(160, 180, 204, 0.55);
    border-radius: 999px;
    background: rgba(10, 22, 40, 0.72);
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.image-lightbox-close:hover {
    background: rgba(46, 134, 222, 0.35);
    border-color: rgba(84, 160, 255, 0.9);
    transform: scale(1.03);
}
.image-lightbox-close:focus-visible {
    outline: 2px solid #54A0FF;
    outline-offset: 2px;
}
.nav-link-active {
    color: #2E86DE !important;
    background-color: rgba(46, 134, 222, 0.10);
}
.site-nav {
    --nav-bg-alpha: 0;
    --nav-line-alpha: 0;
    --nav-blur: 0px;
    background-color: rgba(10, 22, 40, var(--nav-bg-alpha));
    border-bottom: 1px solid rgba(30, 58, 95, var(--nav-line-alpha));
    backdrop-filter: blur(var(--nav-blur));
    -webkit-backdrop-filter: blur(var(--nav-blur));
    transition: background-color 0.14s linear, border-color 0.14s linear, backdrop-filter 0.14s linear, -webkit-backdrop-filter 0.14s linear;
}
.hero-bg-image {
    min-width: 800px;
    object-position: 35% center;
}
.hero-reveal > * {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.7s ease-out forwards;
}
.hero-reveal > *:nth-child(1) { animation-delay: 0.08s; }
.hero-reveal > *:nth-child(2) { animation-delay: 0.18s; }
.hero-reveal > *:nth-child(3) { animation-delay: 0.28s; }
.hero-reveal > *:nth-child(4) { animation-delay: 0.38s; }
.hero-scroll-cue {
    animation: heroArrowBounce 1.8s ease-in-out infinite, heroArrowBlink 1.8s ease-in-out infinite;
}
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroArrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@keyframes heroArrowBlink {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}
.members-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.member-card { width: 100%; }
.desktop-nav {
    display: none;
}
.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #A0B4CC;
    border: 1px solid rgba(30, 58, 95, 0.55);
    border-radius: 0.6rem;
    background: rgba(10, 22, 40, 0.6);
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.mobile-nav-toggle:hover {
    color: #fff;
    border-color: rgba(84, 160, 255, 0.7);
    background: rgba(30, 58, 95, 0.55);
}
.mobile-nav-toggle:focus-visible {
    outline: 2px solid #54A0FF;
    outline-offset: 2px;
}
.mobile-nav-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0s linear 0.3s;
}
.mobile-nav-panel.is-open {
    max-height: 85vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}
.mobile-nav-inner {
    border-top: 1px solid rgba(30, 58, 95, 0.6);
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.9rem 0.9rem 1rem;
}
.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 0.95rem;
    border-radius: 0.65rem;
    color: #A0B4CC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    transition: color 0.25s ease, background-color 0.25s ease;
}
.mobile-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.mobile-nav-link.nav-link-active {
    color: #2E86DE !important;
    background: rgba(46, 134, 222, 0.14) !important;
}
.mobile-nav-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.4rem;
    margin-left: 0.15rem;
    color: #A0B4CC;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}
.mobile-nav-facebook:hover {
    color: #54A0FF;
}
.okapele-img {
    float: left;
    max-width: 320px;
    width: 100%;
    min-width: 220px;
    margin: 0 2rem 1.2rem 0;
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 #0004;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.okapele-img:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 32px 0 #0006;
}
.gallery-showcase {
    position: relative;
}
.gallery-showcase-media {
    position: relative;
    display: block;
    min-height: clamp(280px, 42vw, 520px);
    overflow: hidden;
    border: 1px solid rgba(46, 134, 222, 0.26);
    border-radius: 1.8rem;
    background: #08111f;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}
.gallery-showcase-media img,
.gallery-card-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    filter: saturate(1.08) contrast(1.08) brightness(1.03);
    transform: translateZ(0);
}
.gallery-showcase-media img {
    transition: transform 0.45s ease;
}
.gallery-showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 14, 26, 0.08) 10%, rgba(7, 14, 26, 0.76) 100%),
        linear-gradient(90deg, rgba(46, 134, 222, 0.18) 0%, rgba(46, 134, 222, 0) 42%);
}
.gallery-showcase-caption {
    position: absolute;
    left: 1.5rem;
    right: 11rem;
    bottom: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    color: #fff;
    text-align: left;
}
.gallery-showcase-kicker,
.gallery-showcase-meta,
.gallery-modal-meta,
.gallery-card-count,
.gallery-list-stats {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.gallery-showcase-kicker,
.gallery-showcase-meta,
.gallery-card-count {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(84, 160, 255, 0.35);
    border-radius: 999px;
    background: rgba(7, 14, 26, 0.48);
    color: #dce9f8;
    font-size: 0.75rem;
}
.gallery-showcase-kicker {
    color: #8cc2ff;
}
.gallery-showcase-caption strong {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    line-height: 1;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
}
.gallery-showcase-caption span:last-child {
    color: rgba(233, 240, 249, 0.92);
    font-size: 0.96rem;
}
.gallery-showcase-meta {
    position: absolute;
    right: 1.35rem;
    bottom: 1.35rem;
}
.gallery-primary-button,
.gallery-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.85rem 1.5rem;
    border: 0;
    border-radius: 0.6rem;
    background: #2E86DE;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 28px rgba(46, 134, 222, 0.24);
}
.gallery-primary-button:hover,
.gallery-load-more:hover {
    transform: translateY(-1px);
    background: #54A0FF;
    box-shadow: 0 14px 32px rgba(46, 134, 222, 0.3);
}
.gallery-primary-button-floating {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    z-index: 2;
}
.gallery-primary-button:focus-visible,
.gallery-load-more:focus-visible,
.gallery-card-button:focus-visible,
.gallery-modal-close:focus-visible,
.gallery-modal-nav:focus-visible,
.gallery-modal-thumb:focus-visible {
    outline: 2px solid #54A0FF;
    outline-offset: 3px;
}
.gallery-list-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.9rem;
}
.gallery-list-stats {
    color: #8ebcf0;
    font-size: 0.82rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.6rem;
}
.gallery-card {
    min-width: 0;
}
.gallery-card-button {
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.85);
    border-radius: 1rem;
    background: #091220;
    text-align: left;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.gallery-card-button:hover {
    transform: translateY(-2px);
    border-color: rgba(84, 160, 255, 0.7);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.gallery-card-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #08111f;
}
.gallery-card-image-wrap img {
    transition: transform 0.35s ease;
}
.gallery-card-button:hover .gallery-card-image-wrap img {
    transform: scale(1.04) translateZ(0);
}
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 26, 0.05) 18%, rgba(7, 14, 26, 0.92) 100%);
}
.gallery-card-count {
    position: absolute;
    left: 0.55rem;
    top: 0.55rem;
    padding: 0.34rem 0.56rem;
    font-size: 0.64rem;
}
.gallery-card-title {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.98rem;
    line-height: 1.08;
    color: #fff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.48);
}
.gallery-list-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1.6rem;
}
.gallery-list-actions[hidden] {
    display: none !important;
}
.gallery-load-more-cue {
    display: inline-flex;
    color: #54A0FF;
}
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    padding: 1rem 0;
    transition: opacity 0.22s ease;
}
.gallery-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 16, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.gallery-modal-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(92vw, 1080px);
    max-height: calc(100vh - 2rem);
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(30, 58, 95, 0.85);
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top left, rgba(46, 134, 222, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(10, 18, 32, 0.98), rgba(5, 10, 19, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.gallery-modal-dialog::-webkit-scrollbar {
    width: 10px;
}
.gallery-modal-dialog::-webkit-scrollbar-thumb {
    background: rgba(84, 160, 255, 0.35);
    border-radius: 999px;
}
.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(160, 180, 204, 0.4);
    border-radius: 999px;
    background: rgba(7, 14, 26, 0.8);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}
.gallery-modal-header {
    padding: 1rem 4rem 0.45rem 1.1rem;
}
.gallery-modal-meta {
    margin: 0;
    color: #79b1ea;
    font-size: 0.68rem;
}
.gallery-modal-title {
    margin: 0.22rem 0 0;
    font-size: clamp(1.35rem, 2.2vw, 2.15rem);
    line-height: 1.02;
}
.gallery-modal-summary {
    margin: 0;
    color: #c7d6e8;
    font-size: 0.95rem;
    line-height: 1.65;
}
.gallery-modal-summary[hidden] {
    display: none;
}
.gallery-modal-stage {
    position: relative;
    flex: 0 0 auto;
    padding: 0.35rem 1rem 0;
}
.gallery-modal-stage-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(280px, 52vh, 640px);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.78);
    border-radius: 1.15rem;
    background: #050d18;
    cursor: default;
}
.gallery-modal-stage-link.is-active-link {
    cursor: zoom-in;
}
.gallery-modal-stage-link img {
    display: block;
    max-width: 100%;
    max-height: min(64vh, 640px);
    width: auto;
    height: auto;
}
.gallery-modal.is-loading .gallery-modal-stage-link::after {
    content: 'Načítám fotografie';
    color: #8ebcf0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(160, 180, 204, 0.34);
    border-radius: 999px;
    background: rgba(7, 14, 26, 0.8);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.gallery-modal-nav:disabled {
    opacity: 0.35;
    cursor: default;
}
.gallery-modal-nav-prev {
    left: 1.8rem;
}
.gallery-modal-nav-next {
    right: 1.8rem;
}
.gallery-modal-thumbs-wrap {
    position: relative;
    flex: 0 0 auto;
    padding: 0.55rem 1.5rem 0;
}
.gallery-modal-thumbs-wrap::before,
.gallery-modal-thumbs-wrap::after {
    content: '';
    position: absolute;
    top: 0.55rem;
    bottom: 0.9rem;
    width: 2.4rem;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gallery-modal-thumbs-wrap::before {
    left: 1.5rem;
    background: linear-gradient(90deg, rgba(10, 18, 32, 0.98), rgba(10, 18, 32, 0));
}
.gallery-modal-thumbs-wrap::after {
    right: 1.5rem;
    background: linear-gradient(270deg, rgba(10, 18, 32, 0.98), rgba(10, 18, 32, 0));
}
.gallery-modal-thumbs-wrap.has-left-fade::before,
.gallery-modal-thumbs-wrap.has-right-fade::after {
    opacity: 1;
}
.gallery-modal-thumbs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0 2.65rem 0.9rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(84, 160, 255, 0.4) rgba(7, 14, 26, 0.4);
}
.gallery-modal-thumb-nav {
    position: absolute;
    top: calc(50% - 0.45rem);
    transform: translateY(-50%);
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(160, 180, 204, 0.34);
    border-radius: 999px;
    background: rgba(7, 14, 26, 0.86);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
}
.gallery-modal-thumb-nav:disabled {
    opacity: 0.32;
    cursor: default;
}
.gallery-modal-thumb-nav-prev {
    left: 1.5rem;
}
.gallery-modal-thumb-nav-next {
    right: 1.5rem;
}
.gallery-modal-thumb {
    flex: 0 0 108px;
    width: 108px;
    height: 78px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.82);
    border-radius: 0.9rem;
    background: #08111f;
    opacity: 0.72;
    transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.gallery-modal-thumb.is-active,
.gallery-modal-thumb:hover {
    border-color: rgba(84, 160, 255, 0.9);
    opacity: 1;
    transform: translateY(-1px);
}
.gallery-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-modal-description {
    flex: 0 0 auto;
    padding: 0.45rem 1.5rem 1.5rem;
}
.gallery-modal-description.is-summary-hidden {
    padding-top: 0.15rem;
}
.gallery-modal-summary-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 0.7rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #54A0FF;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.gallery-modal-description.is-summary-hidden .gallery-modal-summary-toggle {
    margin-top: 0;
}
.gallery-modal-summary-toggle:hover {
    color: #8cc2ff;
}
@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .mobile-nav-toggle { display: inline-flex; }
}
@media (min-width: 1101px) {
    .desktop-nav { display: flex; }
    .mobile-nav-toggle { display: none !important; }
    .mobile-nav-panel { display: none !important; }
}
@media (min-width: 640px) {
    .member-card { width: calc(50% - 0.5rem); }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .members-grid { flex-wrap: nowrap; }
    .member-card { width: 230px; max-width: 230px; }
}
@media (max-width: 640px) {
    .image-lightbox-content {
        width: 96vw;
        height: 86vh;
        margin: 7vh auto;
        padding: 0.25rem;
    }

    .image-lightbox-content figcaption {
        font-size: 0.88rem;
    }

    .image-lightbox-content img {
        max-width: 94vw;
        max-height: 78vh;
    }

    .image-lightbox.is-portrait .image-lightbox-content img {
        max-width: 90vw;
        max-height: 78vh;
    }

    .gallery-showcase-caption {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .gallery-showcase-meta {
        right: 1rem;
        bottom: 1rem;
    }

    .gallery-primary-button-floating {
        top: 1rem;
        right: 1rem;
        min-height: 2.7rem;
        padding: 0.7rem 1rem;
        font-size: 0.82rem;
    }

    .gallery-list-header {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .gallery-card-title {
        font-size: 0.86rem;
    }

    .gallery-modal-dialog {
        width: 96vw;
        max-height: calc(100vh - 1rem);
    }

    .gallery-modal-header {
        padding: 0.85rem 3.4rem 0.35rem 0.95rem;
    }

    .gallery-modal-stage {
        padding: 0.35rem 0.75rem 0;
    }

    .gallery-modal-stage-link {
        min-height: clamp(240px, 42vh, 420px);
    }

    .gallery-modal-stage-link img {
        max-height: min(50vh, 420px);
    }

    .gallery-modal-nav {
        width: 2.6rem;
        height: 2.6rem;
    }

    .gallery-modal-nav-prev {
        left: 1.1rem;
    }

    .gallery-modal-nav-next {
        right: 1.1rem;
    }

    .gallery-modal-footer {
        padding: 0.8rem 1rem 0;
    }

    .gallery-modal-thumbs-wrap {
        padding: 0.9rem 1rem 0;
    }

    .gallery-modal-thumbs-wrap::before,
    .gallery-modal-thumbs-wrap::after {
        top: 0.9rem;
        bottom: 0.8rem;
        width: 2rem;
    }

    .gallery-modal-thumbs {
        padding: 0 2.25rem 0.8rem;
    }

    .gallery-modal-thumb-nav {
        width: 2.15rem;
        height: 2.15rem;
        font-size: 1.25rem;
    }

    .gallery-modal-thumb-nav-prev {
        left: 1rem;
    }

    .gallery-modal-thumb-nav-next {
        right: 1rem;
    }

    .gallery-modal-thumb {
        flex-basis: 92px;
        width: 92px;
        height: 68px;
    }

    .gallery-modal-description {
        padding: 0.3rem 1rem 1rem;
    }

    .gallery-modal-summary {
        font-size: 0.92rem;
    }
}
