        :root {
            --navy-dark: #06182c;
            --navy: #0c3157;
            --blue: #1768a6;
            --blue-light: #4ba7df;
            --gold: #e4b64f;
            --gold-light: #ffe5a0;
            --cream: #fff9eb;
            --white: #ffffff;
            --text-dark: #183047;
            --text-light: #657789;
            --border-light: rgba(19, 69, 108, 0.13);
            --shadow: 0 20px 60px rgba(7, 31, 54, 0.14);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            color: var(--text-dark);
            font-family: "Nunito", sans-serif;
            background: #edf4f8;
        }

        body.bible-sidebar-open {
            overflow: hidden;
        }

        .bible-study-section {
            position: relative;
            min-height: 100vh;
            padding: 65px 0;
            overflow: hidden;
            isolation: isolate;
            background:
                radial-gradient(
                    circle at 5% 15%,
                    rgba(228, 182, 79, 0.16),
                    transparent 24%
                ),
                radial-gradient(
                    circle at 95% 15%,
                    rgba(23, 104, 166, 0.16),
                    transparent 27%
                ),
                linear-gradient(
                    135deg,
                    #edf5fa 0%,
                    #fffaf0 48%,
                    #eef6fb 100%
                );
        }

        .background-circle {
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            pointer-events: none;
        }

        .background-circle.circle-one {
            top: 130px;
            left: -130px;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(228, 182, 79, 0.28);
            box-shadow:
                0 0 80px rgba(228, 182, 79, 0.13),
                inset 0 0 70px rgba(255, 255, 255, 0.55);
            animation: circleFloat 8s ease-in-out infinite;
        }

        .background-circle.circle-two {
            right: -100px;
            bottom: 90px;
            width: 250px;
            height: 250px;
            border: 1px solid rgba(23, 104, 166, 0.2);
            box-shadow:
                0 0 80px rgba(23, 104, 166, 0.12),
                inset 0 0 60px rgba(255, 255, 255, 0.5);
            animation: circleFloat 9s ease-in-out infinite reverse;
        }

        @keyframes circleFloat {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-22px);
            }
        }

        /* =====================================================
           SECTION TITLE
        ===================================================== */

        .section-title-border {
            position: relative;
            max-width: 980px;
            margin: 0 auto 35px;
            padding: 6px;
            overflow: hidden;
            border-radius: 18px;
            background:
                linear-gradient(
                    115deg,
                    var(--gold),
                    var(--gold-light),
                    var(--blue-light),
                    var(--gold)
                );
            background-size: 280% 280%;
            box-shadow:
                0 16px 42px rgba(7, 31, 54, 0.14),
                0 0 30px rgba(228, 182, 79, 0.13);
            animation: titleBorderAnimation 7s linear infinite;
        }

        @keyframes titleBorderAnimation {
            0% {
                background-position: 0 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0 50%;
            }
        }

        .section-title-content {
            position: relative;
            padding: 27px 30px;
            overflow: hidden;
            text-align: center;
            border-radius: 13px;
            background:
                linear-gradient(
                    135deg,
                    rgba(5, 23, 43, 0.99),
                    rgba(12, 54, 94, 0.98)
                );
        }

        .section-title-content::before {
            content: "";
            position: absolute;
            top: -100px;
            left: -45%;
            width: 35%;
            height: 260px;
            transform: rotate(25deg);
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.14),
                    transparent
                );
            animation: titleShine 5.5s ease-in-out infinite;
        }

        @keyframes titleShine {
            0% {
                left: -45%;
            }

            60%,
            100% {
                left: 130%;
            }
        }

        .section-title-icon {
            position: relative;
            z-index: 2;
            width: 58px;
            height: 58px;
            margin: 0 auto 14px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            color: var(--navy-dark);
            font-size: 24px;
            background:
                linear-gradient(
                    145deg,
                    var(--gold-light),
                    var(--gold)
                );
            box-shadow:
                0 10px 28px rgba(228, 182, 79, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .section-title-content h2 {
            position: relative;
            z-index: 2;
            margin: 0;
            color: var(--white);
            font-family: "Archivo Black", sans-serif;
            font-size: clamp(1.7rem, 4vw, 2.8rem);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .section-title-content p {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin: 12px auto 0;
            color: rgba(255, 255, 255, 0.76);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* =====================================================
           MOBILE OPEN CONTROL
        ===================================================== */

        .mobile-topic-opener {
            display: none;
            position: relative;
            z-index: 5;
            width: 100%;
            margin-bottom: 18px;
            padding: 14px;
            cursor: pointer;
            border: 1px solid rgba(228, 182, 79, 0.7);
            border-radius: 12px;
            color: var(--white);
            background:
                linear-gradient(
                    135deg,
                    var(--navy-dark),
                    var(--navy)
                );
            box-shadow: 0 13px 35px rgba(6, 24, 44, 0.2);
            user-select: none;
        }

        .mobile-topic-opener-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .mobile-topic-opener-left {
            display: flex;
            align-items: center;
            gap: 11px;
            min-width: 0;
        }

        .mobile-topic-opener-icon {
            flex: 0 0 auto;
            width: 41px;
            height: 41px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            color: var(--navy-dark);
            font-size: 17px;
            background:
                linear-gradient(
                    145deg,
                    var(--gold-light),
                    var(--gold)
                );
        }

        .mobile-topic-opener-text {
            min-width: 0;
            font-size: 0.94rem;
            font-weight: 900;
        }

        .mobile-topic-opener-arrow {
            flex: 0 0 auto;
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            color: var(--gold-light);
            background: rgba(255, 255, 255, 0.08);
        }

        /* =====================================================
           MAIN LAYOUT
        ===================================================== */

        .bible-study-layout {
            display: grid;
            grid-template-columns: 355px minmax(0, 1fr);
            gap: 25px;
            align-items: start;
        }

        /* =====================================================
           LEFT SIDEBAR
        ===================================================== */

        .bible-topic-sidebar {
            position: sticky;
            top: 0px;
            height: calc(100vh - 36px);
            min-height: 610px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(228, 182, 79, 0.7);
            border-radius: 18px;
            background:
                linear-gradient(
                    155deg,
                    #05172b 0%,
                    #0b345d 55%,
                    #082543 100%
                );
            box-shadow:
                0 24px 65px rgba(5, 24, 44, 0.27),
                inset 0 1px 0 rgba(255, 255, 255, 0.11);
        }

        .bible-topic-sidebar::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                linear-gradient(
                    120deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.04) 35%,
                    transparent 62%
                );
        }

        .sidebar-top {
            position: relative;
            z-index: 2;
            padding: 20px;
            border-bottom: 1px solid rgba(228, 182, 79, 0.25);
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.07),
                    rgba(255, 255, 255, 0.015)
                );
        }

        .sidebar-top-content {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .sidebar-title-icon {
            flex: 0 0 auto;
            width: 49px;
            height: 49px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            color: var(--navy-dark);
            font-size: 20px;
            background:
                linear-gradient(
                    145deg,
                    var(--gold-light),
                    var(--gold)
                );
            box-shadow: 0 9px 25px rgba(228, 182, 79, 0.25);
        }

        .sidebar-title-text h3 {
            margin: 0;
            color: var(--white);
            font-family: "Archivo Black", sans-serif;
            font-size: 1.02rem;
            line-height: 1.3;
        }

        .sidebar-title-text p {
            margin: 5px 0 0;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.78rem;
        }

        .mobile-sidebar-close {
            display: none;
            position: absolute;
            top: 14px;
            right: 13px;
            z-index: 20;
            width: 40px;
            height: 40px;
            place-items: center;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 10px;
            color: var(--white);
            font-size: 18px;
            background: rgba(255, 255, 255, 0.09);
            user-select: none;
            transition: 0.25s ease;
        }

        .mobile-sidebar-close:hover {
            color: var(--navy-dark);
            border-color: var(--gold);
            background: var(--gold);
        }

        .topics-list-scroll {
            position: relative;
            z-index: 2;
            flex: 1;
            min-height: 0;
            padding: 15px;
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) rgba(255, 255, 255, 0.06);
        }

        .topics-list-scroll::-webkit-scrollbar {
            width: 7px;
        }

        .topics-list-scroll::-webkit-scrollbar-track {
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
        }

        .topics-list-scroll::-webkit-scrollbar-thumb {
            border-radius: 15px;
            background:
                linear-gradient(
                    var(--gold-light),
                    var(--gold)
                );
        }

        .bible-topic-group {
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.045);
            transition:
                border-color 0.3s ease,
                box-shadow 0.3s ease;
        }

        .bible-topic-group:last-child {
            margin-bottom: 0;
        }

        .bible-topic-group.topic-open {
            border-color: rgba(228, 182, 79, 0.58);
            box-shadow:
                0 10px 28px rgba(0, 0, 0, 0.18),
                0 0 20px rgba(228, 182, 79, 0.08);
        }

        .bible-topic-heading {
            display: flex;
            align-items: center;
            gap: 11px;
            min-height: 68px;
            padding: 11px 13px;
            cursor: pointer;
            user-select: none;
            touch-action: manipulation;
            transition: 0.28s ease;
        }

        .bible-topic-group.topic-open .bible-topic-heading {
            background:
                linear-gradient(
                    135deg,
                    rgba(228, 182, 79, 0.14),
                    rgba(255, 255, 255, 0.04)
                );
        }

        .bible-topic-icon {
            flex: 0 0 auto;
            width: 43px;
            height: 43px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(228, 182, 79, 0.34);
            border-radius: 11px;
            color: var(--gold-light);
            font-size: 17px;
            background: rgba(228, 182, 79, 0.08);
            transition: 0.3s ease;
        }

        .bible-topic-group.topic-open .bible-topic-icon {
            color: var(--navy-dark);
            border-color: transparent;
            background:
                linear-gradient(
                    145deg,
                    var(--gold-light),
                    var(--gold)
                );
            box-shadow: 0 7px 19px rgba(228, 182, 79, 0.23);
        }

        .bible-topic-name {
            flex: 1;
            min-width: 0;
        }

        .bible-topic-name strong {
            display: block;
            overflow: hidden;
            color: var(--white);
            font-size: 0.93rem;
            font-weight: 900;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .bible-topic-name small {
            display: block;
            margin-top: 3px;
            overflow: hidden;
            color: rgba(255, 255, 255, 0.53);
            font-size: 0.73rem;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .bible-topic-arrow {
            flex: 0 0 auto;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.76rem;
            transition: 0.3s ease;
        }

        .bible-topic-group.topic-open .bible-topic-arrow {
            color: var(--gold-light);
            transform: rotate(180deg);
        }

        .bible-chapter-list {
            max-height: 0;
            padding: 0 10px;
            overflow: hidden;
            opacity: 0;
            transition:
                max-height 0.42s ease,
                padding 0.3s ease,
                opacity 0.28s ease;
        }

        .bible-topic-group.topic-open .bible-chapter-list {
            max-height: 600px;
            padding: 0 10px 11px;
            opacity: 1;
        }

        .bible-chapter-item {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            min-height: 50px;
            margin-top: 8px;
            padding: 9px 11px;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 9px;
            color: rgba(255, 255, 255, 0.82);
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.075),
                    rgba(255, 255, 255, 0.025)
                );
            user-select: none;
            touch-action: manipulation;
            transition: 0.25s ease;
        }

        .bible-chapter-item:hover {
            padding-left: 15px;
            color: var(--white);
            border-color: rgba(228, 182, 79, 0.55);
            background: rgba(228, 182, 79, 0.11);
        }

        .bible-chapter-item.chapter-active {
            color: var(--navy-dark);
            border-color: var(--gold-light);
            background:
                linear-gradient(
                    135deg,
                    var(--gold-light),
                    var(--gold)
                );
            box-shadow: 0 7px 21px rgba(228, 182, 79, 0.24);
        }

        .chapter-number-box {
            flex: 0 0 auto;
            width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            color: var(--gold-light);
            font-size: 0.76rem;
            font-weight: 900;
            background: rgba(4, 18, 34, 0.52);
        }

        .bible-chapter-item.chapter-active .chapter-number-box {
            color: var(--white);
            background: rgba(6, 24, 44, 0.86);
        }

        .chapter-item-title {
            flex: 1;
            min-width: 0;
            font-size: 0.81rem;
            font-weight: 800;
            line-height: 1.35;
        }

        .chapter-item-end-icon {
            flex: 0 0 auto;
            font-size: 0.7rem;
            opacity: 0.72;
        }

        /* =====================================================
           RIGHT CONTENT
        ===================================================== */

        .bible-content-panel {
            position: relative;
            min-width: 0;
            min-height: 720px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.91);
            box-shadow: var(--shadow);
        }

        .bible-content-panel::before {
            content: "";
            position: absolute;
            top: -130px;
            right: -110px;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            pointer-events: none;
            background:
                radial-gradient(
                    circle,
                    rgba(228, 182, 79, 0.14),
                    transparent 68%
                );
        }

        .content-breadcrumb-bar {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 75px;
            padding: 17px 23px;
            border-bottom: 1px solid rgba(19, 69, 108, 0.1);
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.98),
                    rgba(241, 248, 252, 0.95)
                );
        }

        .content-breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.84rem;
            font-weight: 800;
        }

        .content-breadcrumb i {
            color: var(--gold);
        }

        .content-breadcrumb .active-breadcrumb {
            color: var(--blue);
        }

        .breadcrumb-cross {
            flex: 0 0 auto;
            width: 43px;
            height: 43px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(228, 182, 79, 0.45);
            border-radius: 11px;
            color: var(--navy);
            background:
                linear-gradient(
                    145deg,
                    #fff8df,
                    #ffecb7
                );
        }

        .bible-study-content {
            display: none;
            position: relative;
            z-index: 2;
            padding: 31px;
            animation: contentEnter 0.48s ease;
        }

        .bible-study-content.content-active {
            display: block;
        }

        @keyframes contentEnter {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lesson-title-card {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 17px;
            align-items: center;
            margin-bottom: 24px;
            padding: 19px;
            border: 1px solid rgba(228, 182, 79, 0.43);
            border-radius: 15px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 250, 237, 0.97),
                    rgba(241, 248, 253, 0.97)
                );
            box-shadow: 0 10px 28px rgba(7, 31, 54, 0.07);
            margin-left: -20px;
            margin-right: -20px;
            margin-top: -38px;
        }

        .lesson-title-icon {
            width: 61px;
            height: 61px;
            display: grid;
            place-items: center;
            border-radius: 15px;
            color: var(--white);
            font-size: 23px;
            background:
                linear-gradient(
                    145deg,
                    var(--blue),
                    var(--navy-dark)
                );
            box-shadow: 0 10px 25px rgba(6, 24, 44, 0.2);
        }

        .lesson-small-title {
            display: block;
            margin-bottom: 4px;
            color: #6f88c3;
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .lesson-title-card h3 {
            margin: 0;
            color: #ed5858;
            font-family: "Nunito", sans-serif;
            font-size: clamp(1.25rem, 3vw, 1.6rem);
            line-height: 1.3;
            text-transform: uppercase;
            font-weight: 900;
        }

        .lesson-title-card p {
            margin: 6px 0 0;
            color: var(--text-light);
            font-size: 0.91rem;
        }

        .scripture-card {
            position: relative;
            margin-bottom: 25px;
            padding: 27px 27px 27px 34px;
            overflow: hidden;
            border-radius: 15px;
            color: var(--white);
            background:
                linear-gradient(
                    135deg,
                    var(--navy-dark),
                    var(--navy),
                    #1a639b
                );
            box-shadow:
                0 17px 42px rgba(6, 24, 44, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.11);
        }

        .scripture-card::before {
            content: "\f10d";
            position: absolute;
            top: -12px;
            right: 20px;
            color: rgba(255, 255, 255, 0.075);
            font-family: "Font Awesome 6 Free";
            font-size: 110px;
            font-weight: 900;
        }

        .scripture-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background:
                linear-gradient(
                    to bottom,
                    var(--gold-light),
                    var(--gold)
                );
        }

        .scripture-card p {
            position: relative;
            z-index: 2;
            margin: 0;
            color: var(--white);
            font-family: Georgia, serif;
            font-size: clamp(1.02rem, 2.5vw, 1.28rem);
            font-style: italic;
            line-height: 1.75;
        }

        .scripture-reference {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            padding: 7px 11px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            color: var(--gold-light);
            font-size: 0.79rem;
            font-weight: 900;
            background: rgba(255, 255, 255, 0.07);
        }

        .lesson-description {
            color: #41586d;
            font-size: 0.98rem;
            line-height: 1.85;
        }

        .lesson-description p:last-child {
            margin-bottom: 0;
        }

        .content-subtitle {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 27px 0 14px;
            color: var(--navy-dark);
            font-size: 1.05rem;
            font-weight: 900;
        }

        .content-subtitle i {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            color: var(--navy-dark);
            background:
                linear-gradient(
                    145deg,
                    var(--gold-light),
                    var(--gold)
                );
        }

        .lesson-points-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 13px;
        }

        .lesson-point-card {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            padding: 15px;
            border: 1px solid rgba(19, 69, 108, 0.11);
            border-radius: 11px;
            background:
                linear-gradient(
                    145deg,
                    #ffffff,
                    #f3f8fb
                );
            box-shadow: 0 8px 22px rgba(7, 31, 54, 0.06);
        }

        .lesson-point-card > i {
            flex: 0 0 auto;
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            color: var(--white);
            background:
                linear-gradient(
                    145deg,
                    var(--blue),
                    var(--navy-dark)
                );
        }

        .lesson-point-card strong {
            display: block;
            margin-bottom: 3px;
            color: var(--navy-dark);
            font-size: 0.9rem;
        }

        .lesson-point-card span {
            display: block;
            color: var(--text-light);
            font-size: 0.81rem;
            line-height: 1.55;
        }

        .reflection-card {
            margin-top: 26px;
            padding: 20px;
            border: 1px solid rgba(228, 182, 79, 0.58);
            border-radius: 13px;
            background:
                linear-gradient(
                    135deg,
                    #fff8e4,
                    #fffdf8
                );
        }

        .reflection-card-title {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 10px;
            color: #8c6418;
            font-weight: 900;
        }

        .reflection-card p {
            margin: 0;
            color: #655839;
            line-height: 1.75;
        }

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

           Overlay is below sidebar:
           Overlay z-index: 9998
           Sidebar z-index: 9999
        ===================================================== */

        .bible-mobile-overlay {
            position: fixed;
            inset: 0;
            z-index: 9998;
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            background: rgba(5, 20, 36, 0.24);
            transition:
                opacity 0.3s ease,
                visibility 0.3s ease;
        }

        .bible-mobile-overlay.overlay-active {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

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

        @media (max-width: 1199.98px) {
            .bible-study-layout {
                grid-template-columns: 315px minmax(0, 1fr);
                gap: 20px;
            }

            .bible-study-content {
                padding: 25px;
            }
        }

        @media (max-width: 991.98px) {
            .bible-study-section {
                padding: 48px 0;
                overflow: visible;
            }

            .mobile-topic-opener {
                display: block;
            }

            .bible-study-layout {
                display: block;
            }

            .bible-topic-sidebar {
                position: fixed;
                top: 190px;
                bottom: 0;
                left: 0;
                z-index: 9999;
                width: min(88vw, 370px);
                height: 100vh;
                height: 100dvh;
                min-height: 0;
                max-height: none;
                border-top: 0;
                border-bottom: 0;
                border-left: 0;
                border-radius: 0 0px 0px 0;
                visibility: hidden;
                transform: translate3d(-105%, 0, 0);
                pointer-events: none;
                transition:
                    transform 0.38s cubic-bezier(0.22, 0.85, 0.28, 1),
                    visibility 0.38s ease;
                will-change: transform;
            }

            .bible-topic-sidebar.sidebar-visible {
                visibility: visible;
                transform: translate3d(0, 0, 0);
                pointer-events: auto;
            }

            .sidebar-top {
                flex: 0 0 auto;
                padding: 20px 64px 20px 17px;
            }

            .mobile-sidebar-close {
                display: grid;
            }

            .topics-list-scroll {
                flex: 1 1 auto;
                min-height: 0;
                padding-bottom: 35px;
            }

            .bible-content-panel {
                min-height: 0;
            }
        }

        @media (max-width: 767.98px) {
            .section-title-border {
                margin-bottom: 24px;
                border-radius: 15px;
            }

            .section-title-content {
                padding: 22px 17px;
                border-radius: 10px;
            }

            .section-title-content p {
                font-size: 0.9rem;
            }

            .content-breadcrumb-bar {
                min-height: 67px;
                padding: 14px 16px;
            }

            .bible-study-content {
                padding: 18px;
            }

            .lesson-title-card {
                grid-template-columns: 1fr;
                padding: 17px;
            }

            .lesson-title-icon {
                width: 53px;
                height: 53px;
            }

            .lesson-points-grid {
                grid-template-columns: 1fr;
            }

            .scripture-card {
                padding: 22px 18px 22px 25px;
            }
        }

        @media (max-width: 480px) {
            .bible-study-section {
                padding: 36px 0;
            }

            .bible-study-section > .container {
                padding-right: 12px;
                padding-left: 12px;
            }

            .section-title-content h2 {
                font-size: 1.4rem;
            }

            .mobile-topic-opener-text {
                font-size: 0.86rem;
            }

            .breadcrumb-cross {
                display: none;
            }

            .content-breadcrumb {
                font-size: 0.75rem;
            }

            .bible-study-content {
                padding: 14px;
            }

            .lesson-title-card {
                margin-bottom: 17px;
                padding: 15px;
            }

            .lesson-title-card h3 {
                font-size: 1.16rem;
            }

            .bible-topic-sidebar {
                width: 92vw;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }