:root {
    --smbb-navy: #1b2f57;
    --smbb-navy-dark: #101d37;
    --smbb-navy-soft: #243c70;
    --smbb-green: #009a44;
    --smbb-cream: #faf7f2;
    --smbb-cream-dark: #f3ede3;
    --smbb-text: #1b2f57;
    --smbb-muted: #5f6b82;
    --smbb-border: #d9dee8;
}

body.smbb-site {
    font-family: "Montserrat", "Segoe UI", sans-serif;
    color: var(--smbb-text);
    background: #fff;
}

.smbb-site-header {
    background: #fff;
}

.smbb-topbar {
    background: #fff;
    border-bottom: 1px solid var(--smbb-border);
    padding: 18px 0 12px;
}

.smbb-brand-row {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    gap: 24px;
}

.smbb-brand-row .logo img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.smbb-brand-row .title {
    text-align: center;
}

.smbb-brand-row .title h1 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: var(--smbb-navy);
    text-transform: uppercase;
}

.smbb-brand-row .portrait img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: auto;
    display: block;
}

.smbb-sticky-scope {
    position: relative;
}

.smbb-nav-sticky-inner {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #eef1f6;
    border-bottom: 1px solid var(--smbb-border);
    box-shadow: 0 2px 12px rgba(16, 29, 55, 0.08);
}

.smbb-nav-sticky-inner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.smbb-header-nav {
    width: 100%;
}

.smbb-header-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 0;
}

.smbb-nav {
    background: transparent;
    border: 0;
    width: 100%;
}

.smbb-nav .nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.smbb-nav .nav-list > li {
    position: relative;
}

.smbb-nav .nav-list > li > a,
.smbb-nav .nav-list > li > button {
    display: block;
    padding: 14px 16px;
    color: #334155;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border: 0;
    white-space: nowrap;
}

.smbb-nav .nav-list > li:hover > a,
.smbb-nav .nav-list > li:hover > button,
.smbb-nav .nav-list > li > a.active {
    color: var(--smbb-navy);
}

.smbb-nav .dropdown-menu {
    border: 1px solid var(--smbb-border);
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(16, 29, 55, 0.12);
    z-index: 1035;
    min-width: 220px;
    padding: 6px 0;
}

.smbb-nav .dropdown-menu .dropdown-item {
    padding: 7px 16px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--smbb-navy-soft);
}

.smbb-nav .dropdown-menu .dropdown-item:hover,
.smbb-nav .dropdown-menu .dropdown-item:focus {
    background: #eef1f6;
    color: var(--smbb-navy);
}

@media (min-width: 992px) {
    .smbb-nav-desktop .nav-list > li.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(6px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .smbb-nav-desktop .nav-list > li.dropdown:hover > .dropdown-menu,
    .smbb-nav-desktop .nav-list > li.dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.smbb-brand-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.smbb-mobile-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--smbb-border);
    border-radius: 12px;
    background: #fff;
    color: var(--smbb-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.smbb-mobile-toggle:hover,
.smbb-mobile-toggle:focus {
    background: var(--smbb-navy);
    color: #fff;
    border-color: var(--smbb-navy);
}

.smbb-mobile-nav {
    width: min(100vw, 360px);
    background: #fff;
    border-left: 1px solid var(--smbb-border);
}

.smbb-mobile-nav .offcanvas-header {
    padding: 20px 20px 12px;
    border-bottom: 1px solid var(--smbb-border);
}

.smbb-mobile-kicker {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--smbb-muted);
}

.smbb-mobile-nav .offcanvas-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--smbb-navy);
}

.smbb-mobile-nav .offcanvas-body {
    padding: 16px 20px 24px;
}

.smbb-mobile-links {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

.smbb-mobile-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--smbb-navy);
    font-weight: 600;
    text-decoration: none;
}

.smbb-mobile-links a:hover,
.smbb-mobile-links a.active {
    background: #eef1f6;
    color: var(--smbb-navy);
}

.smbb-mobile-links-secondary {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--smbb-border);
}

.smbb-mobile-accordion {
    --bs-accordion-border-color: var(--smbb-border);
    --bs-accordion-btn-padding-x: 14px;
    --bs-accordion-btn-padding-y: 12px;
    --bs-accordion-body-padding-x: 14px;
    --bs-accordion-body-padding-y: 8px;
}

.smbb-mobile-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--smbb-border);
    background: transparent;
}

.smbb-mobile-accordion .accordion-button {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--smbb-navy);
    background: #fff;
    box-shadow: none;
}

.smbb-mobile-accordion .accordion-button:not(.collapsed) {
    color: var(--smbb-navy);
    background: #eef1f6;
}

.smbb-mobile-accordion .accordion-body {
    display: grid;
    gap: 4px;
    padding-top: 0;
    padding-bottom: 12px;
}

.smbb-mobile-accordion .accordion-body a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--smbb-navy-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.smbb-mobile-accordion .accordion-body a:hover {
    background: #f4f6f9;
    color: var(--smbb-navy);
}

.smbb-mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.smbb-mobile-actions .smbb-btn {
    width: 100%;
    min-width: 0;
}

.smbb-btn-outline-dark {
    border: 1px solid var(--smbb-navy);
    color: var(--smbb-navy);
    background: transparent;
}

.smbb-btn-outline-dark:hover {
    background: var(--smbb-navy);
    color: #fff;
}

body.smbb-mobile-nav-open {
    overflow: hidden;
}

.smbb-hero {
    position: relative;
    min-height: 520px;
    background: center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    overflow: hidden;
}

.smbb-animate-hero {
    background-position: center;
    background-size: 100%;
    animation: smbb-hero-bg 18s ease-in-out infinite alternate;
}

@keyframes smbb-hero-bg {
    from {
        background-size: 100%;
    }
    to {
        background-size: 108%;
    }
}

.smbb-hero-line {
    opacity: 0;
    transform: translateY(24px);
    animation: smbb-hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

@keyframes smbb-hero-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0ms);
}

[data-animate="fade-left"] {
    transform: translateX(28px);
}

[data-animate="scale-in"] {
    transform: scale(0.96);
}

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

.smbb-reveal-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.smbb-event-card,
.smbb-social-card {
    overflow: hidden;
}

.smbb-event-card a:first-child,
.smbb-social-card > a {
    display: block;
    overflow: hidden;
}

.smbb-event-card img,
.smbb-social-card img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.smbb-reveal-card:hover {
    transform: translateY(-6px);
}

.smbb-event-card:hover img,
.smbb-social-card:hover img {
    transform: scale(1.06);
}

.smbb-event-card:hover,
.smbb-social-card:hover {
    box-shadow: none;
    background: transparent;
}

.smbb-vc-card:hover {
    box-shadow: 0 18px 48px rgba(16, 29, 55, 0.14);
}

.smbb-notice-item {
    transition: transform 0.25s ease, background 0.25s ease;
}

.smbb-notice-item:hover {
    transform: translateX(4px);
}

.smbb-btn,
.smbb-btn-green {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.smbb-btn:hover,
.smbb-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 29, 55, 0.18);
}

.smbb-stats-grid strong {
    transition: color 0.3s ease;
}

.smbb-stats-band.is-counting .smbb-stats-grid > div {
    animation: smbb-stat-pop 0.5s ease forwards;
}

.smbb-stats-band.is-counting .smbb-stats-grid > div:nth-child(1) { animation-delay: 0ms; }
.smbb-stats-band.is-counting .smbb-stats-grid > div:nth-child(2) { animation-delay: 80ms; }
.smbb-stats-band.is-counting .smbb-stats-grid > div:nth-child(3) { animation-delay: 160ms; }
.smbb-stats-band.is-counting .smbb-stats-grid > div:nth-child(4) { animation-delay: 240ms; }
.smbb-stats-band.is-counting .smbb-stats-grid > div:nth-child(5) { animation-delay: 320ms; }

@keyframes smbb-stat-pop {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .smbb-animate-hero,
    .smbb-hero-line {
        animation: none;
    }

    .smbb-hero-line,
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .smbb-reveal-card:hover,
    .smbb-notice-item:hover,
    .smbb-btn:hover,
    .smbb-btn-green:hover {
        transform: none;
    }

    .smbb-event-card:hover img,
    .smbb-social-card:hover img {
        transform: none;
    }
}

.smbb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 29, 55, 0.58);
}

.smbb-hero-panel {
    position: relative;
    z-index: 1;
    max-width: 980px;
    width: 100%;
    background: rgba(20, 36, 68, 0.72);
    padding: 56px 48px;
    text-align: center;
    color: #fff;
}

.smbb-hero-panel h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.smbb-hero-panel p {
    margin: 0 auto 28px;
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.smbb-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.smbb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.smbb-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    background: transparent;
}

.smbb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.smbb-btn-solid {
    background: #fff;
    color: var(--smbb-navy);
}

.smbb-btn-solid:hover {
    background: #f8fafc;
    color: var(--smbb-navy);
}

.smbb-btn-navy {
    background: var(--smbb-navy);
    color: #fff;
    border-radius: 6px;
    min-width: auto;
    padding: 10px 18px;
    font-size: 0.85rem;
}

.smbb-btn-navy:hover {
    background: var(--smbb-navy-soft);
    color: #fff;
}

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

.smbb-section-title {
    margin: 0 0 28px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--smbb-navy);
}

.smbb-events-notices {
    background: #fff;
}

.smbb-events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.smbb-event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.smbb-event-card h3 {
    margin: 12px 0 0 10px;
    font-size: 0.84rem;
    line-height: 1.4;
    font-weight: 600;
}

.smbb-event-card h3 a {
    color: var(--smbb-navy);
    text-decoration: none;
}

.smbb-notice-board {
    border-left: 1px solid var(--smbb-border);
    padding-left: 28px;
}

.smbb-notice-board .smbb-section-title {
    position: relative;
    display: inline-block;
}

.smbb-notice-board .smbb-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 72px;
    height: 4px;
    background: var(--smbb-navy);
}

.smbb-notice-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--smbb-border);
}

.smbb-notice-date {
    width: 52px;
    flex-shrink: 0;
}

.smbb-notice-date .day {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--smbb-green);
    line-height: 1;
}

.smbb-notice-date .month,
.smbb-notice-date .year {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--smbb-navy);
}

.smbb-notice-item a {
    color: var(--smbb-navy);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    line-height: 1.45;
}

.smbb-view-all {
    text-align: right;
    margin-top: 18px;
}

.smbb-vc-section {
    background: #f4f6f9;
}

.smbb-vc-section .smbb-section-title {
    margin-bottom: 36px;
}

.smbb-vc-card {
    background: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(16, 29, 55, 0.07);
    transition: box-shadow 0.35s ease;
}

.smbb-vc-card.smbb-reveal-card:hover {
    transform: none;
}

.smbb-vc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.smbb-vc-photo {
    overflow: hidden;
    background: #fff;
    margin: 20px 0 0 30px;
}

.smbb-vc-photo img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.smbb-vc-copy {
    background: #fefbf6;
    padding: 40px 44px;
    margin: 40px 0 0 -85px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    text-align: justify;
}

.smbb-vc-copy h3 {
    margin: 0 0 20px;
    font-size: 1.28rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--smbb-navy);
    text-align: justify;
}

.smbb-vc-copy .signature {
    margin-top: 28px;
    font-weight: 700;
    color: var(--smbb-navy);
    text-align: center;
    line-height: 1.6;
}

.smbb-vc-excerpt p {
    margin-bottom: 0;
    line-height: 1.85;
    color: var(--smbb-muted);
    font-size: 0.95rem;
    text-align: justify;
}

.smbb-vc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--smbb-navy);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.92rem;
}

.smbb-vc-read-more::after {
    content: "→";
    transition: transform 0.2s ease;
}

.smbb-vc-read-more:hover {
    color: var(--smbb-navy-soft);
}

.smbb-vc-read-more:hover::after {
    transform: translateX(4px);
}

.smbb-site .campus-area-2::before {
    background-image: none;
    background-color: #002147;
    height: 55%;
}

.smbb-site .campus-area-2 .section-title-2 h2 {
    color: #fff;
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.75rem);
}

.smbb-site .campus-area-2 .section-title-2 .sub-title p {
    color: var(--smbb-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.smbb-site .campus-card img {
    width: 100%;
    height: clamp(280px, 36vw, 460px);
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.smbb-site .campus-card .content h2 {
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 20px;
}

.smbb-site .campus-area-2 .default-btn {
    background-color: var(--smbb-green);
}

.smbb-site .campus-area-2 .default-btn:hover {
    background-color: #007a35;
}

.smbb-scholarship-band {
    background: var(--smbb-navy);
    color: #fff;
    padding: 34px 0;
}

.smbb-scholarship-band .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.smbb-scholarship-band h3 {
    margin: 0 0 8px;
    font-size: 1.6rem;
}

.smbb-scholarship-band p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
}

.smbb-btn-green {
    background: var(--smbb-green);
    color: #fff;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
}

.smbb-stats-band {
    background: var(--smbb-navy-dark);
    color: #fff;
    padding: 28px 0;
}

.smbb-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
}

.smbb-stats-grid strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.smbb-stats-grid span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
}

.smbb-social-section {
    background: #f4f6f9;
}

.smbb-social-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.smbb-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.smbb-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--smbb-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.smbb-social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.smbb-social-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 29, 55, 0.08);
    position: relative;
}

.smbb-social-card a {
    text-decoration: none;
}

.smbb-social-card img {
    width: 100%;
    aspect-ratio: 0.82;
    object-fit: cover;
    display: block;
}

.smbb-social-play {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16, 29, 55, 0.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.smbb-social-fallback {
    background: #fff;
    border: 1px dashed var(--smbb-border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.smbb-social-fallback p {
    margin-bottom: 16px;
    color: var(--smbb-muted);
}

.smbb-social-fallback a {
    color: var(--smbb-navy-soft);
    font-weight: 600;
}

.smbb-social-setup-note {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 0.82rem;
}

.smbb-social-setup-note code {
    font-size: 0.78rem;
}

.smbb-social-card .caption {
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--smbb-navy);
}

.smbb-footer {
    background: var(--smbb-navy-dark);
    color: #fff;
    padding: 56px 0 24px;
}

.smbb-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.smbb-footer h4 {
    margin: 0 0 16px;
    font-size: 1rem;
}

.smbb-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.smbb-footer li {
    margin-bottom: 10px;
}

.smbb-footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
}

.smbb-footer a::before {
    content: "›";
    margin-right: 8px;
    color: #7dd3fc;
}

.smbb-footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .smbb-nav .nav-list > li > a,
    .smbb-nav .nav-list > li > button {
        padding: 12px 10px;
        font-size: 0.66rem;
    }
}

@media (max-width: 991px) {
    .smbb-brand-row {
        grid-template-columns: 72px 1fr;
        gap: 12px;
    }

    .smbb-brand-row .logo img {
        width: 64px;
        height: 64px;
    }

    .smbb-brand-row .title h1 {
        font-size: 0.82rem;
        text-align: left;
    }

    .smbb-vc-grid,
    .smbb-social-grid,
    .smbb-stats-grid,
    .smbb-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smbb-notice-board {
        border-left: 0;
        padding-left: 0;
        margin-top: 36px;
    }
}

@media (max-width: 767px) {
    .smbb-hero-panel {
        padding: 36px 24px;
    }

    .smbb-events-grid,
    .smbb-vc-grid,
    .smbb-social-grid,
    .smbb-stats-grid,
    .smbb-footer-grid {
        grid-template-columns: 1fr;
    }

    .smbb-vc-photo {
        margin: 20px 0 0 0;
    }

    .smbb-vc-photo,
    .smbb-vc-photo img {
        min-height: 280px;
    }

    .smbb-vc-copy {
        padding: 28px 24px;
        margin: 0;
    }
}
