:root {
    --adh-black: #080808;
    --adh-ink: #15191f;
    --adh-muted: #6c7480;
    --adh-red: #e8001e;
    --adh-gold: #d4ad62;
    --adh-yellow: #f5c400;
    --adh-paper: #f7f4ed;
    --adh-soft: #f3f6f8;
    --adh-line: rgba(21, 25, 31, .12);
    --bs-card-border-width: 1px;
    --gold: #d4ad62;
    --gold2: #f1d18d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Kanit", "Prompt", sans-serif;
    color: var(--adh-ink);
    background: #fff;
    overflow-x: hidden;
}

body.gallery-fancybox-open {
    overflow: hidden !important;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(8, 8, 8, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-nav.nav-scrolled {
    background: rgba(8, 8, 8, .98);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.navbar-brand img {
    height: 60px;
    background: #fff;
    border-radius: 8px;
    transition: width .25s ease, padding .25s ease, transform .25s ease;
}

.site-nav.nav-scrolled .navbar-brand img {
    height: 50px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .25);
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--adh-gold);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    padding: .55rem .65rem !important;
    font-size: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.member-menu .nav-link.show {
    color: var(--adh-yellow);
}

.member-menu .dropdown-menu {
    border: 0;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.member-menu .dropdown-item {
    border-radius: 6px;
    font-weight: 700;
    padding: 9px 12px;
    color: var(--adh-ink);
}

.member-menu .dropdown-item:hover,
.member-menu .dropdown-item:focus {
    background: #f4ead7;
    color: #000;
}

.member-menu .dropdown-header {
    color: var(--adh-muted);
}

.hamburger-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    transition: .25s ease;
    padding-top: 4px;
}

.hamburger-btn:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-2px);
}


.page-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
    background: #111;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .26)), var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(232, 0, 30, .18) 1px, transparent 1px),
        linear-gradient(rgba(232, 0, 30, .14) 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: .22;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 96px;
    padding-bottom: 54px;
}

.breadcrumb-band {
    background: #fff;
    border-bottom: 1px solid var(--adh-line);
}

.breadcrumb {
    --bs-breadcrumb-divider-color: var(--adh-muted);
    margin: 0;
    padding: 14px 0;
    font-size: .92rem;
}

.breadcrumb-item a {
    color: var(--adh-muted);
    font-weight: 700;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
    color: var(--adh-red);
}

.eyebrow {
    color: var(--adh-yellow);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
}

.page-title {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: .95;
    margin: 10px 0 18px;
}

.page-lead {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.section-pad {
    padding: 72px 0;
}

.tool-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.search-box {
    position: relative;
    flex: 1 1 300px;
    max-width: 520px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--adh-muted);
}

.search-box input {
    width: 100%;
    border: 1px solid var(--adh-line);
    border-radius: 999px;
    padding: 12px 18px 12px 44px;
    outline: none;
    background: #fff;
}

.search-box input:focus {
    border-color: var(--adh-gold);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.btn:focus,
.btn:focus-visible {
    border-color: var(--adh-gold);
    box-shadow: none;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    border: 1px solid var(--adh-line);
    border-radius: 999px;
    background: #fff;
    padding: 9px 18px;
    font-weight: 700;
    color: var(--adh-muted);
    transition: .24s ease;
}

.filter-pill:hover,
.filter-pill.active {
    border-color: var(--adh-gold);
    background: var(--adh-gold);
    color: #111;
    transform: translateY(-2px);
}

.content-card {
    position: relative;
    height: 100%;
    /* border: 1px solid var(--adh-line); */
    /* border: var(--bs-card-border-width) solid rgb(0 0 0 / 11%); */
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
    transition: transform .28s ease, box-shadow .28s ease;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .13);
}

.content-card .thumb {
    width: 100%;
    aspect-ratio: 1.36 / 1;
    object-fit: cover;
}

.content-card .body {
    padding: 22px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--adh-muted);
    font-size: .85rem;
    margin-bottom: 10px;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    background: #f4ead7;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .78rem;
    font-weight: 800;
}

.empty-state {
    display: none;
    padding: 34px;
    border: 1px dashed var(--adh-line);
    border-radius: 8px;
    color: var(--adh-muted);
    text-align: center;
}

.detail-shell {
    padding: 64px 0;
    background: var(--adh-soft);
}

.detail-panel {
    background: #fff;
    border-radius: 8px;
    /* border: 1px solid var(--adh-line); */
    box-shadow: 0 16px 38px rgba(0, 0, 0, .07);
    overflow: hidden;
    height: 100%;
}

.detail-body {
    padding: clamp(24px, 4vw, 46px);
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.share-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #111;
    transition: .22s ease;
}

.share-btn:hover {
    color: #111;
    background: var(--adh-yellow);
    transform: translateY(-3px);
}

.video-frame,
.ratio video,
.ratio iframe {
    border: 0;
    background: #000;
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .88);
    color: var(--adh-red);
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
    pointer-events: none;
}


/* gallery card */
.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: .35s;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 14px;

    color: #fff;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .82));
}

.gallery-card .view-image {
    position: absolute;
    top: 14px;
    right: 14px;

    background: rgba(0, 0, 0, .65);
    color: #fff;

    padding: 8px 12px;

    border-radius: 999px;

    opacity: 0;
    transition: .25s;
}

.gallery-card:hover .view-image {
    opacity: 1;
}

/* FANCYBOX */

.gallery-fancybox .fancybox__content {
    padding: 0 !important;
    background: transparent !important;
}

.gallery-facebook-popup {
    width: min(1400px, 96vw);
    height: min(92vh, 920px);

    display: flex;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;
}

/* LEFT */

.gallery-facebook-image {
    flex: 1;

    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-facebook-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* RIGHT */

.gallery-facebook-panel {
    width: 420px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border-left: 5px solid var(--gold);

    overflow: hidden;
}

.artist-box {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px;

    border-bottom: 1px solid #eee;
}

.artist-box img {
    width: 58px;
    height: 58px;

    border-radius: 50%;
    object-fit: cover;
}

.artist-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.artist-info small {
    color: #777;
}

.gallery-content {
    flex: 1;
    overflow: auto;

    padding: 22px;
}

.gallery-content h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.gallery-content .detail {
    line-height: 1.8;
    color: #444;
}

.comment-box-popup {
    padding: 10px;

    border-top: 1px solid #eee;

    background: #fafafa;
}

.comment-item {
    margin-top: 12px;
}

.comment-item strong {
    display: block;
}

/* SCROLLBAR */

.gallery-content::-webkit-scrollbar {
    width: 8px;
}

.gallery-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 999px;
}

/* gallery card */


.view-image,
.artist-work-card .view-image,
.workshop-gallery-card .view-image {
    position: absolute;
    right: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .92);
    color: #111;
    font-size: .78rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-4px);
    transition: .24s ease;
}

.view-image,
.artist-work-card:hover .view-image,
.workshop-gallery-card:hover .view-image {
    opacity: 1;
    transform: none;
}

.artist-avatar {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
}

.artist-profile-grid {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.artist-portrait-card {
    border-radius: 8px;
    border: 1px solid var(--adh-line);
    background: #fff;
    padding: 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}

.artist-portrait-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 6px;
}

.artist-works-section {
    padding: 54px 0 0;
}

.artist-work-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    color: #fff;
}

.artist-work-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .35s ease;
}

.artist-work-card:hover img {
    transform: scale(1.06);
}

.artist-work-card .work-caption {
    position: absolute;
    inset: auto 0 0;
    padding: 42px 16px 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
}

.stat-box {
    border-left: 4px solid var(--adh-red);
    padding: 14px 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.tabs-panel {
    background: #fff;
    border: 1px solid var(--adh-line);
    border-radius: 8px;
    padding: 24px;
}

.workshop-tabs {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 6px;
    background: var(--adh-soft);
    border-radius: 999px;
}

.workshop-tabs .nav-item {
    margin: 0;
}

.workshop-tabs .nav-link {
    border: 1px solid var(--adh-line);
    border-radius: 999px;
    background: var(--adh-soft);
    color: var(--adh-muted);
    font-weight: 800;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.workshop-tabs .nav-link:hover {
    border-color: var(--adh-gold);
    color: var(--adh-ink);
}

.workshop-tabs .nav-link.active {
    border-color: var(--adh-gold);
    background: var(--adh-gold);
    color: #111;
}

.nav-tabs .nav-link {
    color: var(--adh-muted);
    font-weight: 800;
}

.nav-tabs .nav-link.active {
    color: var(--adh-red);
}

.workshop-gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    color: #fff;
}

.workshop-hero-slider .swiper-slide {
    height: clamp(260px, 46vw, 480px);
    background: #111;
}

.workshop-hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-hero-slider .swiper-button-next,
.workshop-hero-slider .swiper-button-prev {
    color: var(--adh-yellow);
}

.workshop-hero-slider .swiper-pagination-bullet-active {
    background: var(--adh-yellow);
}

.workshop-gallery-card img,
.workshop-photo-card img,
.workshop-artist-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.workshop-gallery-card .overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 38px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .84));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.workshop-photo-card,
.workshop-artist-card,
.document-row {
    border: 1px solid var(--adh-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.workshop-photo-card {
    display: block;
    color: var(--adh-ink);
}

.workshop-photo-card:hover,
.workshop-artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .11);
}

.workshop-artist-card {
    display: block;
    color: var(--adh-ink);
    transition: .24s ease;
}

.member-type {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(245, 196, 0, .96);
    color: #111;
    font-size: .78rem;
    font-weight: 900;
}

.workshop-artist-card .image-wrap {
    position: relative;
}

.workshop-artist-card .body,
.workshop-photo-card .body {
    padding: 14px;
}

.document-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
}

.document-row .doc-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: var(--adh-red);
    flex: 0 0 auto;
}

.registration-status {
    border: 1px solid rgba(232, 0, 30, .16);
    border-left: 4px solid var(--adh-red);
    border-radius: 8px;
    padding: 18px;
    background: #fff9f9;
}

.rating-summary {
    border: 1px solid var(--adh-line);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.rating-score {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
}

.stars {
    color: var(--adh-yellow);
    letter-spacing: .04em;
}

/* 
.comment-item {
    display: none;
}

.comment-item.is-visible {
    display: block;
} */

.comment-member {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.comment-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.comment-pagination .btn-comment-nav:disabled {
    color: #6b7280 !important;
    background-color: #f3f4f6 !important;
    border-color: #d1d5db !important;
    opacity: 1 !important;
    cursor: not-allowed;
}

.video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: #111;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    opacity: .86;
}

.video-card .body {
    position: absolute;
    inset: auto 0 0;
    padding: 42px 16px 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .86));
}

.member-sidebar {
    border-radius: 8px;
    background: #fff;
    padding: 16px;
    height: 100%;
}

.member-sidebar .nav-link {
    border-radius: 8px;
    color: var(--adh-ink);
    font-weight: 800;
    padding: 9px 13px;
    margin-bottom: 5px;
}

.member-sidebar .nav-link:hover,
.member-sidebar .nav-link.active {
    background: var(--adh-gold);
    color: #111;
}

.profile-preview {
    width: 148px;
    height: 148px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.member-metric {
    border: 1px solid var(--adh-line);
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    height: 100%;
}

.comment-box {
    border: 1px solid var(--adh-line);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}

.comment-box-alt:nth-child(odd) {
    background: #fcffff;
}

.comment-box-alt:nth-child(even) {
    background: #f1f5f9;
}

.comment-box-alt {
    transition: all .2s ease;
}

.comment-box-alt:hover {
    background: #eef2ff;
}

.contact-tile {
    border: 1px solid var(--adh-line);
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    background: #fff;
}

.site-footer {
    background: #081826;
    color: #fff;
    padding: 30px 0 30px;
    border-top: 6px solid var(--adh-gold);
}

.site-footer img {
    width: 120px;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

.social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--gold2);
    background: rgba(255, 255, 255, .08);
    margin: 0 5px;
    text-decoration: none;
    transition: .25s;
}

.social a:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-4px);
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #111;
    background: var(--adh-yellow);
    z-index: 1030;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: .25s ease;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

[data-animate].show {
    opacity: 1;
    transform: none;
}

.fancybox__caption {
    font-family: "Kanit", sans-serif;
    line-height: 1.65;
}

@media (min-width: 992px) {
    .gallery-fancybox .fancybox__container {
        --fancybox-bg: rgba(8, 8, 8, .94);
    }

    .gallery-fancybox .fancybox__slide {
        padding: 34px;
    }

    .gallery-fancybox .fancybox__content {
        width: 100% !important;
        height: calc(100vh - 68px) !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #050505;
    }

    .gallery-fancybox .fancybox__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .gallery-fancybox .fancybox__caption {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: min(386px, 34vw);
        height: 100vh;
        max-width: none;
        padding: 36px 28px;
        background: #fff;
        color: var(--adh-ink);
        overflow: hidden;
        border-left: 6px solid var(--adh-gold);
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .gallery-fancybox .fancybox__caption h3 {
        flex: 0 0 auto;
        font-weight: 900;
        margin-bottom: 16px;
    }

    .gallery-fancybox .fancybox__caption p {
        flex: 0 0 auto;
        margin-bottom: 12px;
    }

    .gallery-fancybox .fancybox__caption .detail,
    .gallery-fancybox .fancybox__caption p:last-child {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding-right: 10px;
    }

    .gallery-fancybox .fancybox__caption .detail strong {
        display: block;
        margin-bottom: 8px;
        color: var(--adh-red);
    }

    .gallery-fancybox .fancybox__caption .detail::-webkit-scrollbar,
    .gallery-fancybox .fancybox__caption p:last-child::-webkit-scrollbar {
        width: 8px;
    }

    .gallery-fancybox .fancybox__caption .detail::-webkit-scrollbar-thumb,
    .gallery-fancybox .fancybox__caption p:last-child::-webkit-scrollbar-thumb {
        background: var(--adh-gold);
        border-radius: 999px;
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 50px;
        padding: 4px;
    }

    .site-nav.nav-scrolled .navbar-brand img {
        height: 40px;
    }

    .navbar-nav {
        padding-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: .48rem 0 !important;
        font-size: 1rem;
    }

    .member-menu .dropdown-menu {
        background: rgba(255, 255, 255, .08);
        box-shadow: none;
    }

    .member-menu .dropdown-item {
        color: rgba(255, 255, 255, .86);
    }

    .page-hero {
        min-height: 320px;
    }

    .tool-row {
        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }

    .artist-profile-grid {
        grid-template-columns: 1fr;
    }

    .artist-portrait-card {
        max-width: 360px;
    }

    .workshop-tabs {
        border-radius: 12px;
    }

    .document-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-facebook-popup {
        width: 100vw;
        height: 100vh;

        border-radius: 0;

        flex-direction: column;
    }

    .gallery-facebook-image {
        height: 48vh;
        flex: none;
    }

    .gallery-facebook-panel {
        width: 100%;
        flex: 1;

        border-left: 0;
        border-top: 5px solid var(--gold);
    }
}

@media (max-width: 575px) {

    .section-pad,
    .detail-shell {
        padding: 48px 0;
    }

    .page-hero .container {
        padding-bottom: 38px;
    }

    .content-card .body {
        padding: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gallery-facebook-image {
        height: 42vh;
    }

    .gallery-content {
        padding: 16px;
    }

    .gallery-content h3 {
        font-size: 20px;
    }
}