:root {
    --brand-primary: #4d60d6;
    --brand-secondary: #5a2c91;
    --brand-accent: #57d7de;
    --brand-soft-blue: #bfeff3;
    --brand-dark: #22263f;
    --brand-light: #f5f4fb;
    --surface: #ffffff;
    --surface-soft: #f8f7fd;
    --border-soft: #dbd9ea;
    --text-main: #2a2d43;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(77, 96, 214, 0.14), transparent 34%),
        radial-gradient(circle at 92% 0%, rgba(90, 44, 145, 0.12), transparent 28%),
        linear-gradient(165deg, #f6f7fc 0%, #faf9ff 42%, #f1f5ff 100%);
    color: var(--text-main);
    min-height: 100vh;
    position: relative;
}

.bg-mesh {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(34, 38, 63, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 38, 63, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 90%);
    z-index: -1;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--brand-dark);
}

.site-header .navbar {
    position: relative;
    z-index: 1200;
    backdrop-filter: blur(10px);
    background: linear-gradient(
        100deg,
        rgba(20, 23, 36, 0.96) 0%,
        rgba(29, 33, 51, 0.95) 32%,
        rgba(60, 44, 103, 0.93) 68%,
        rgba(90, 44, 145, 0.92) 100%
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header {
    position: relative;
    z-index: 1200;
}

.navbar-brand {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.brand-logo {
    width: auto;
    display: block;
    border-radius: 0;
}

.brand-logo-nav {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 0.6rem;
}

.brand-logo-footer {
    height: 58px;
    border-radius: 0.75rem;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.86);
    position: relative;
    transition: color 0.2s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: rgba(147, 228, 232, 0.95);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #ffffff;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar .dropdown-menu {
    z-index: 1300;
    border: 1px solid rgba(214, 212, 235, 0.95);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(28, 23, 57, 0.2);
}

.navbar .dropdown-item {
    color: #2e2f48;
    font-weight: 600;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
}

.btn-brand {
    border: 0;
    color: #ffffff;
    background: linear-gradient(95deg, var(--brand-secondary), var(--brand-primary));
    box-shadow: 0 8px 18px rgba(90, 44, 145, 0.28);
}

.btn-brand:hover {
    color: #ffffff;
    filter: brightness(0.96);
    transform: translateY(-1px);
}

.btn {
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn-outline-primary {
    --bs-btn-color: var(--brand-secondary);
    --bs-btn-border-color: #9ecfd8;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #3f65c8;
    --bs-btn-hover-border-color: #3f65c8;
}

.btn-linkedin-grey {
    color: #999;
    border: 1px solid #ccc;
    background: transparent;
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.btn-outline-light {
    --bs-btn-hover-color: #2b2f4b;
    --bs-btn-hover-bg: #c3f1f4;
    --bs-btn-hover-border-color: #c3f1f4;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-1px);
}

.social-link-nav {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.social-link-nav:hover {
    color: #1f2340;
    background: #c3f1f4;
    border-color: #c3f1f4;
}

.social-link-footer {
    color: #d7f8fb;
    background: rgba(17, 22, 38, 0.32);
    border: 1px solid rgba(195, 241, 244, 0.55);
}

.social-link-footer:hover {
    color: #1f2340;
    background: #c3f1f4;
    border-color: #c3f1f4;
}

.site-footer .btn-outline-light {
    color: #effcff;
    border-color: rgba(195, 241, 244, 0.7);
    background: rgba(17, 22, 38, 0.26);
}

.site-footer .btn-outline-light:hover,
.site-footer .btn-outline-light:focus {
    color: #202746;
    border-color: #c3f1f4;
    background: #c3f1f4;
}

.social-link-contact {
    color: var(--brand-secondary);
    background: linear-gradient(145deg, #ecebff, #e7f8fb);
    border: 1px solid #cfcbe8;
}

.social-link-contact:hover {
    color: #ffffff;
    background: linear-gradient(95deg, var(--brand-secondary), var(--brand-primary));
    border-color: transparent;
}

.hero {
    padding: 5rem 0 3rem;
}

.banner-hero {
    padding: 1.9rem 0 0.5rem;
}

.banner-slider {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(56, 34, 94, 0.28);
}

.banner-hero-inner {
    position: relative;
    padding: 3rem 2.5rem;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-slide-one {
    background-image:
        linear-gradient(105deg, rgba(29, 22, 58, 0.86) 5%, rgba(64, 39, 106, 0.74) 45%, rgba(56, 199, 207, 0.32) 100%),
        url('../img/table.jpg');
}

.banner-slide-two {
    background-image:
        linear-gradient(105deg, rgba(22, 18, 52, 0.84) 8%, rgba(82, 50, 128, 0.72) 48%, rgba(56, 199, 207, 0.3) 100%),
        url('../img/tablesummers.jpg');
}

.banner-indicators {
    margin-bottom: 0.9rem;
}

.banner-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    border-top: 0;
    border-bottom: 0;
}

.banner-control {
    width: 4.5rem;
}

.banner-control .carousel-control-prev-icon,
.banner-control .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: rgba(18, 18, 40, 0.4);
    background-size: 50% 50%;
}

.banner-kicker {
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.9rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    color: #262544;
    background: rgba(195, 241, 244, 0.92);
}

.banner-title {
    color: #ffffff;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    line-height: 1.12;
    max-width: 760px;
    margin-bottom: 0.95rem;
}

.banner-copy {
    color: rgba(246, 249, 255, 0.92);
    font-size: 1.04rem;
    max-width: 680px;
    margin-bottom: 1.35rem;
}

.home-primary {
    padding: 1.35rem 0 2.2rem;
}

.home-primary .hero-card {
    box-shadow: 0 10px 22px rgba(16, 42, 58, 0.08);
}

.home-primary-title {
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.home-primary-copy {
    font-size: clamp(1.08rem, 1.45vw, 1.78rem);
    line-height: 1.42;
    color: #42465f;
    max-width: 34rem;
}

.home-primary-side {
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(244, 245, 255, 0.88));
    box-shadow: 0 8px 18px rgba(16, 42, 58, 0.07);
}

.home-primary-logo-wrap {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid #d6d4e8;
    border-radius: 0.9rem;
    padding: 0.45rem;
}

.home-primary .hero-logo-plain {
    max-height: 320px;
    object-fit: cover;
    object-position: center;
}

.home-primary .kpi-box {
    padding: 0.75rem;
}

.home-primary .kpi-box h3 {
    margin-bottom: 0.16rem !important;
    font-size: 2.05rem;
}

.home-primary .kpi-box p {
    line-height: 1.22;
}

.hero-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 217, 234, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 1.1rem;
    box-shadow: 0 14px 28px rgba(16, 42, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.hero-logo-wrap {
    width: 100%;
}

.hero-logo-plain {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 1rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 22px rgba(16, 42, 58, 0.12);
    background: var(--surface);
}

.kpi-box {
    border-radius: 0.9rem;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    padding: 1rem;
    height: 100%;
}

.section-card {
    height: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    background: var(--surface);
    box-shadow: 0 8px 18px rgba(16, 42, 58, 0.06);
}

.icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ecebff, #e6fbfd);
    color: var(--brand-secondary);
    font-size: 1.2rem;
}

.tag-pill {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    background: #eeedff;
    color: var(--brand-secondary);
    font-weight: 700;
}

.text-brand {
    color: var(--brand-secondary);
}

.thumb-card {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0.85rem;
}

.thumb-card-ahmed {
    object-position: 50% 38%;
}

.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zoomable-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 38, 58, 0.18);
}

.image-zoom-preview {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 0.9rem;
    background: #f4f7fa;
}

.image-zoom-scroll-area {
    max-height: 72vh;
    overflow: hidden;
    border-radius: 0.9rem;
    background: #f4f7fa;
    border: 1px solid #d8d4ea;
}

#imageZoomModal.zoom-scroll-mode .image-zoom-scroll-area {
    overflow: auto;
}

#imageZoomModal.zoom-scroll-mode .image-zoom-preview {
    width: min(1080px, 145%);
    min-width: 700px;
    max-height: none;
    object-fit: initial;
    border-radius: 0.4rem;
    margin: 0;
    display: block;
    background: #ffffff;
}

#imageZoomModal.zoom-readable-mode .image-zoom-scroll-area {
    overflow: auto;
}

#imageZoomModal.zoom-readable-mode .image-zoom-preview {
    width: min(1280px, 175%);
    min-width: 780px;
    max-height: none;
    object-fit: initial;
    border-radius: 0.4rem;
    margin: 0;
    display: block;
    background: #ffffff;
}

.event-thumb {
    width: 130px;
    min-width: 130px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.learn-grid-item {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.learn-grid-zoom {
    position: absolute;
    right: 0.55rem;
    bottom: 0.55rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 35, 58, 0.78);
    color: #d6f7f9;
    font-size: 0.95rem;
    box-shadow: 0 6px 14px rgba(17, 17, 30, 0.24);
    pointer-events: none;
}

.learn-grid-item:hover .learn-grid-zoom {
    transform: translateY(-1px);
    background: rgba(53, 84, 175, 0.9);
}

.learn-grid-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0.8rem;
    border: 1px solid var(--border-soft);
}

.zoomable-image[data-zoomable='true'] {
    cursor: zoom-in;
}

.learn-grid-img-face-3 {
    object-position: 50% 22%;
}

.learn-grid-img-face-4 {
    object-position: 50% 18%;
}

.path-step {
    padding: 0.9rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    background: #fbfdff;
}

.glossary-item {
    border: 1px solid #dce5ed;
    border-radius: 0.7rem;
    padding: 0.8rem;
    background: #fcfeff;
}

.jesus-exhibition .jesus-intro {
    background:
        radial-gradient(circle at 94% 10%, rgba(77, 96, 214, 0.12), transparent 32%),
        radial-gradient(circle at 2% 95%, rgba(56, 199, 207, 0.12), transparent 30%),
        rgba(255, 255, 255, 0.94);
}

.jesus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.jesus-panel {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.jesus-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(30, 28, 58, 0.14);
}

.jesus-panel-meta {
    border: 1px solid #cfcbe4;
    border-radius: 0.5rem;
    background:
        linear-gradient(90deg, rgba(88, 53, 148, 0.1), rgba(88, 53, 148, 0.02) 18%, transparent 18%),
        #f9f8ff;
    padding: 0.5rem 0.7rem;
}

.jesus-panel-number {
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f5692;
}

.jesus-panel-title {
    font-size: 1rem;
    line-height: 1.22;
    color: #242741;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
}

.jesus-gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 1px solid #d8d4ea;
}

.revert-layout .col-lg-5,
.revert-layout .col-lg-7 {
    align-self: flex-start;
}

.revert-info-card,
.revert-form-card {
    height: auto;
}

.revert-info-card {
    max-width: 520px;
}

.revert-info-thumb {
    height: 240px;
    object-fit: cover;
}

.revert-form-card .form-label {
    font-weight: 600;
    color: #3a3c56;
}

.revert-form-card .form-control,
.revert-form-card .form-select {
    border-radius: 0.65rem;
    border: 1px solid #cfcbe4;
    padding: 0.62rem 0.85rem;
}

.revert-form-card .form-control:focus,
.revert-form-card .form-select:focus {
    border-color: #8d7ad1;
    box-shadow: 0 0 0 0.2rem rgba(90, 44, 145, 0.14);
}

.contact-layout .col-lg-5,
.contact-layout .col-lg-7 {
    align-self: flex-start;
}

.contact-quick-card,
.contact-form-card {
    height: auto;
}

.contact-quick-card {
    max-width: 520px;
}

.contact-social-card {
    max-width: 520px;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #3a3c56;
}

.contact-form-card .form-control {
    border-radius: 0.65rem;
    border: 1px solid #cfcbe4;
    padding: 0.62rem 0.85rem;
}

.contact-form-card .form-control:focus {
    border-color: #8d7ad1;
    box-shadow: 0 0 0 0.2rem rgba(90, 44, 145, 0.14);
}

.contact-form-card textarea.form-control {
    min-height: 150px;
}

.admin-meta {
    display: flex;
    gap: 0.5rem;
}

.admin-event-item {
    padding: 0.6rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.8rem;
    background: #fcfdff;
}

.admin-event-thumb {
    width: 96px;
    min-width: 96px;
    height: 76px;
}

#homeEventsCollapse,
#homeBlogCollapse {
    border-top: 1px dashed #ccc6eb;
    padding-top: 0.9rem;
}

table thead th {
    white-space: nowrap;
    font-size: 0.86rem;
}

table tbody td {
    font-size: 0.9rem;
}

.reveal {
    animation: revealUp 0.7s ease both;
}

.reveal.delay-1 {
    animation-delay: 0.08s;
}

.reveal.delay-2 {
    animation-delay: 0.16s;
}

.reveal.delay-3 {
    animation-delay: 0.24s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    background:
        radial-gradient(circle at 12% 10%, rgba(77, 96, 214, 0.09), transparent 30%),
        radial-gradient(circle at 88% 92%, rgba(87, 215, 222, 0.12), transparent 36%),
        linear-gradient(160deg, #eef2fb 0%, #f7f8fe 52%, #ecf4ff 100%);
    color: #1f2640;
    border-top: 1px solid rgba(72, 86, 140, 0.18);
}

.site-footer-main {
    border: 1px solid rgba(140, 154, 201, 0.3);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(4px);
}

.text-footer {
    color: #4d5677;
}

.site-footer-title {
    color: #232946;
    margin-bottom: 0.75rem;
}

.site-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.site-footer-link {
    color: #35406a;
    text-decoration: none;
}

.site-footer-link:hover {
    color: #4d60d6;
}

.site-footer-cta {
    border-color: rgba(77, 96, 214, 0.2);
    box-shadow: 0 8px 20px rgba(87, 215, 222, 0.26);
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.site-footer-bottom {
    border-top: 1px solid rgba(127, 141, 190, 0.24);
}

iframe {
    border: 0;
    border-radius: 0.9rem;
    width: 100%;
    min-height: 260px;
}

@media (max-width: 992px) {
    .site-header .navbar {
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
    }

    .navbar-toggler {
        border-color: rgba(195, 241, 244, 0.45);
    }

    .navbar-collapse {
        margin-top: 0.7rem;
        padding: 0.75rem;
        border: 1px solid rgba(195, 241, 244, 0.24);
        border-radius: 0.85rem;
        background: rgba(18, 20, 35, 0.72);
        backdrop-filter: blur(6px);
    }

    .navbar-nav {
        gap: 0.15rem;
    }

    .navbar .nav-link {
        padding: 0.55rem 0.65rem;
    }

    .navbar .dropdown-menu {
        position: static;
        float: none;
        margin: 0.25rem 0.4rem 0.4rem;
        background: rgba(248, 251, 255, 0.98);
        box-shadow: none;
    }

    .navbar .dropdown-item {
        padding: 0.5rem 0.75rem;
    }

    .navbar .nav-item .btn.btn-brand {
        width: 100%;
        margin-top: 0.35rem;
        margin-left: 0 !important;
    }

    .nav-social-links {
        margin-top: 0.45rem;
        margin-bottom: 0.25rem;
    }

    .banner-hero {
        padding-top: 1.25rem;
        padding-bottom: 0.25rem;
    }

    .banner-hero-inner {
        min-height: 320px;
        padding: 2.15rem 1.35rem;
        background-position: center 42%;
    }

    .banner-title {
        font-size: clamp(1.55rem, 6.5vw, 2.2rem);
    }

    .banner-copy {
        font-size: 0.98rem;
    }

    .banner-control {
        width: 3rem;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .home-primary {
        padding-top: 1.25rem;
        padding-bottom: 2rem;
    }

    .home-primary-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .home-primary-copy {
        font-size: 1.02rem;
    }

    .home-primary .hero-logo-plain {
        max-height: 235px;
    }

    .home-primary .kpi-box h3 {
        font-size: 1.82rem;
    }

    .brand-logo-nav {
        height: 56px;
    }

    .brand-logo-footer {
        height: 50px;
    }

    .event-thumb {
        width: 100%;
        min-width: 100%;
        height: 180px;
    }

    .learn-grid-img {
        height: 120px;
    }

    #imageZoomModal.zoom-scroll-mode .image-zoom-preview {
        width: 145%;
        min-width: 600px;
    }

    #imageZoomModal.zoom-readable-mode .image-zoom-preview {
        width: 165%;
        min-width: 680px;
    }

    .jesus-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-quick-card {
        max-width: 100%;
    }

    .revert-info-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .brand-logo-nav {
        height: 52px;
    }

    .home-primary .btn,
    .hero-card .btn {
        width: 100%;
    }

    .learn-grid {
        grid-template-columns: 1fr;
    }

    .admin-event-item {
        flex-direction: column;
    }

    .admin-event-thumb {
        width: 100%;
        min-width: 100%;
        height: 160px;
    }

    #imageZoomModal .modal-dialog {
        margin: 0.5rem;
    }

    #imageZoomModal.zoom-scroll-mode .image-zoom-preview {
        width: 135%;
        min-width: 520px;
    }

    #imageZoomModal.zoom-readable-mode .image-zoom-preview {
        width: 150%;
        min-width: 560px;
    }

    .footer-social-links {
        justify-content: center;
    }

    .site-footer-main {
        text-align: center;
    }

    .site-footer .btn-info {
        width: 100%;
        max-width: 320px;
    }

    .site-footer-bottom {
        justify-content: center !important;
        text-align: center;
    }

    .jesus-gallery-grid {
        grid-template-columns: 1fr;
    }
}
