/* ═══════════════════════════════════════════════════════════
   OWC 2026 — DESIGN TOKENS & GLOBAL UX IMPROVEMENTS
   Priority order: Accessibility → Touch → Performance →
   Layout → Typography → Animation
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ── */
:root {
  --owc-pink:        #e91e8c;
  --owc-pink-light:  rgba(233,30,140,0.12);
  --owc-blue:        #3b82f6;
  --owc-green:       #84cc16;
  --owc-dark:        #0a0a20;
  --owc-navy:        #1a1a2e;
  --owc-text:        #1a1a2e;
  --owc-muted:       #666;
  --owc-subtle:      #999;
  --owc-surface:     #f8f6fc;
  --owc-white:       #ffffff;
  --owc-border:      rgba(26,26,46,0.1);

  --owc-radius-xs:   6px;
  --owc-radius-sm:   10px;
  --owc-radius-md:   16px;
  --owc-radius-lg:   20px;
  --owc-radius-xl:   28px;

  --owc-shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --owc-shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --owc-shadow-lg:   0 16px 60px rgba(0,0,0,0.14);
  --owc-shadow-pink: 0 8px 28px rgba(233,30,140,0.35);

  --owc-sp-1: 8px;
  --owc-sp-2: 16px;
  --owc-sp-3: 24px;
  --owc-sp-4: 32px;
  --owc-sp-5: 48px;
  --owc-sp-6: 64px;

  --owc-font-heading: 'Montserrat', sans-serif;
  --owc-font-body:    'Karla', sans-serif;

  --owc-nav-height: 76px;
  --owc-mobile-cta-height: 72px;
}

/* ── 2. Accessibility — Skip Link ── */
.owc-skip-link {
  position: absolute;
  top: -100%;
  left: var(--owc-sp-2);
  z-index: 100000;
  background: var(--owc-pink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--owc-radius-sm) var(--owc-radius-sm);
  font-family: var(--owc-font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.owc-skip-link:focus { top: 0; }

/* ── 3. Accessibility — Focus Rings ── */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--owc-pink) !important;
  outline-offset: 3px;
  border-radius: var(--owc-radius-xs);
}
/* Remove outline for mouse users, keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ── 4. Accessibility — Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .owc-hero__bg { animation: none !important; }
  .wow { visibility: visible !important; animation: none !important; }
}

/* ── 5. Scroll Offset for Sticky Nav ── */
html {
  scroll-padding-top: var(--owc-nav-height);
  scroll-behavior: smooth;
}

/* ── 6. Touch Targets — Minimum 44px ── */
/* Social icon links */
.owc-spk-social a,
.owc-convener-social a,
.team-social a,
footer a[style*="40px"] {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Read-more accordion buttons */
.owc-readmore-btn,
.owc-spk-readmore-btn,
.owc-minister-readmore-btn,
.spk-readmore-btn {
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Nav links & tabs */
.event .nav-tabs .nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.main-menu ul li a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── 7. Touch Interaction ── */
button,
[role="button"],
a,
.nav-tabs .nav-link,
.owc-filter-btn,
.owc-readmore-btn,
.owc-spk-readmore-btn,
.owc-minister-readmore-btn {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── 8. Cursor Pointer on Custom Buttons ── */
.btn,
.owc-promo-btn,
.owc-submit-btn,
.owc-mobile-register,
.owc-about-cta a { cursor: pointer; }

/* ── 9. Hero — dvh for iOS Safari toolbar ── */
.owc-hero { min-height: 100dvh; }

/* ── 10. iOS Safe Area — Fixed Bottom CTA ── */
@media (max-width: 991px) {
  .owc-mobile-register {
    bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px)) !important;
    padding-bottom: max(14px, env(safe-area-inset-bottom)) !important;
  }
  /* Body padding so last-section content isn't hidden behind fixed pill */
  body { padding-bottom: var(--owc-mobile-cta-height); }
}

/* ── 11. Lazy loading — prevent layout shift ── */
img {
  max-width: 100%;
  height: auto;
}
img[loading="lazy"] {
  content-visibility: auto;
}

/* ── 12. Consistent Section Spacing ── */
.owc-section { padding: var(--owc-sp-6) 0; }
.owc-section--sm { padding: var(--owc-sp-5) 0; }
.owc-section--lg { padding: 80px 0; }

/* ── 13. Typography System ── */
body {
  font-family: var(--owc-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--owc-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--owc-font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
/* Prevent orphan words on headings */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ── 14. Container Max-Width Consistency ── */
@media (min-width: 1400px) {
  .container { max-width: 1280px; }
}

/* ── 15. Gallery Filter Pills — touch targets ── */
.owc-filter-btn {
  min-height: 44px;
  padding: 10px 20px !important;
  font-size: 13px;
  border-radius: 50px;
  border: 2px solid transparent;
  font-family: var(--owc-font-heading);
  font-weight: 700;
  transition: all 0.2s ease;
}
.owc-filter-btn:hover,
.owc-filter-btn.active {
  background: var(--owc-pink) !important;
  color: #fff !important;
  border-color: var(--owc-pink) !important;
  box-shadow: var(--owc-shadow-pink);
}
@media (max-width: 767px) {
  .owc-gallery-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 8px;
    margin: 0 -16px;
  }
  .owc-gallery-filter::-webkit-scrollbar { display: none; }
  .owc-filter-btn { flex-shrink: 0; }
}

/* ── 16. Active Nav State ── */
.main-menu ul li a.active,
.main-menu ul li.active > a {
  color: var(--owc-pink) !important;
}
.second-menu .main-menu ul li a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--owc-pink);
  border-radius: 2px;
  margin-top: 2px;
}

/* ── 17. Mobile Nav — larger tap targets ── */
@media (max-width: 991px) {
  #mobile-menu ul li a {
    padding: 12px 20px !important;
    font-size: 15px !important;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .responsive i.icon { font-size: 26px; padding: 8px; }
}

/* ── 18. Tablet Breakpoint — speakers & convener ── */
@media (min-width: 768px) and (max-width: 1099px) {
  .owc-convener-spotlight {
    grid-template-columns: 220px 1fr !important;
  }
  .owc-convener-img img { min-height: 380px !important; }
  .owc-convener-bio { padding: 28px 32px !important; }
}

/* ── 19. Mobile 767px — Section padding consistency ── */
@media (max-width: 767px) {
  .owc-hero { min-height: 82dvh !important; }

  /* Consistent section vertical rhythm */
  section { padding-top: 48px !important; padding-bottom: 48px !important; }
  section.pt-120 { padding-top: 56px !important; }
  section.pb-120 { padding-bottom: 56px !important; }
  section.pt-80 { padding-top: 48px !important; }
  section.pb-80 { padding-bottom: 48px !important; }

  /* Typography scale for mobile */
  .section-title h2,
  h2.wow { font-size: clamp(1.6rem, 5.5vw, 2rem) !important; }
  .section-title p { font-size: 14px !important; line-height: 1.65 !important; }

  /* Heading margin rhythm */
  h3 { font-size: clamp(1.2rem, 4.5vw, 1.5rem); }
  h4 { font-size: clamp(1.1rem, 4vw, 1.3rem); }

  /* Card border-radius on mobile */
  .single-team,
  .owc-faq-section,
  .reg-info-box { border-radius: var(--owc-radius-md) !important; }

  /* Tighten horizontal padding on narrow screens */
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* Convener spotlight — compact horizontal strip */
  .owc-convener-spotlight {
    grid-template-columns: 120px 1fr !important;
    border-radius: var(--owc-radius-md) !important;
  }
  .owc-convener-img img { min-height: 200px !important; height: 100% !important; }
  .owc-convener-bio { padding: 16px !important; }
  .owc-convener-name { font-size: 1rem !important; margin-bottom: 8px !important; }
  .owc-convener-eyebrow { font-size: 9px !important; }
  .owc-convener-titles span { font-size: 11px !important; }

  /* FAQ section */
  .owc-faq-question { font-size: 14px !important; padding: 18px 0 !important; }

  /* Gallery grid → 2-col on mobile */
  .owc-gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    gap: 8px !important;
  }
  .owc-gallery-tile--wide { grid-column: span 1 !important; }
  .owc-gallery-tile--tall { grid-row: span 1 !important; }
  .owc-gallery-tile { min-height: 140px !important; }

  /* Enquiry cards — stack on mobile */
  .owc-enquiry-card { margin-bottom: 16px; }

  /* Speakers page music card */
  .owc-music-card { flex-direction: column !important; }
  .owc-music-visual { width: 100% !important; min-height: 140px !important; padding: 28px 20px !important; }
  .owc-music-bio { padding: 20px !important; }
}

/* ── 20. Tablet 768–991px — general ── */
@media (min-width: 768px) and (max-width: 991px) {
  .container { padding-left: 24px; padding-right: 24px; }
  section.pt-120 { padding-top: 72px !important; }
  section.pb-120 { padding-bottom: 72px !important; }
  .section-title h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
}

/* ── 21. Landscape Mobile (short viewports) ── */
@media (max-height: 500px) and (max-width: 900px) {
  .owc-hero { min-height: 100dvh; padding-top: 60px; }
  .owc-hero__content { padding: 20px 0; }
  .owc-hero__title { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
  .owc-countdown { display: none !important; }
  .owc-mobile-register { bottom: 12px !important; }
}

/* ── 22. Print styles — hide interactive chrome ── */
@media print {
  .owc-mobile-register,
  .owc-skip-link,
  .header-area { display: none !important; }
  body { padding-bottom: 0 !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
}

/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
	.slider-bg {
    min-height: 950px !important;
}
.second-menu .main-menu ul li {
    margin-left: 57px;
}
.sponsors ul {
    margin: 0 -5%;
}
.slider-bg3 .ss-one {
    top: 25% !important;
    left: 1% !important;
}
.booking-form {
    margin-right: -50px;
}
.slider-bg2 .ss-one {
    top: 50% !important;
    left: 15% !important;
}
.slider-bg2 .ss-four {
    top: 20% !important;
    left: 85% !important;
}
.container-p {
	padding: 0 30px;
}
.header-btn {
	margin-left: 20px;
}
.slider-active .slick-arrow {
	left: 20px;
}
.slider-active .slick-next {
	right: 20px;
	left: auto;
}

.f-cta-area {
	margin-left: 60px;
	margin-right: 60px;
	padding-left: 50px;
	padding-right: 50px;
}
.main-menu ul li:first-child{margin-left: 0;}
.header-social.display-ib {
	display: none;
}
.wp-img {
	margin-right: 0;
}
.contact-img {
	right: 0px;
}

}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
.container-p {
	padding: 0 30px;
}
.header-cta ul li {
	margin-left: 20px;
}
.section-t h2 {
	font-size: 200px;
}
.about-img {
	margin-left: -105px;
}
.features-content p {
	padding: 0;
}
.services-content {
	padding: 50px 30px;
	padding-bottom: 45px;
}
.services-content h4 {
	font-size: 20px;
}
.services-content span {
	margin-bottom: 45px;
}
.video-wrap img {
	width: 100%;
}
.video-position {
    bottom: -222px;
    left: 20px;
    right: 20px;
}
.v-padding {
	padding-top: 0;
}
.wp-list {
	padding: 35px 15px;
	padding-bottom: 25px;
}
.wp-img {
	margin-right: -100px;
}
.wp-tag {
	left: 10px;
}
.team-info {
	margin-left: 0;
	margin-right: 0;
}
.team-info h4 {
	font-size: 18px;
}
.single-counter p {
	font-size: 18px;
}
.ta-bg {
	margin-left: -25px;
}
.b-meta.mb-20 {
	margin-bottom: 10px;
}
.b-meta ul li {
	margin-right: 0;
}
.blog-content {
	padding: 30px 20px;
}
.blog-content h4 {
	font-size: 18px;
	margin-bottom: 20px;
}
.blog-content p {
	margin-bottom: 20px;
}
.f-cta-area {
	margin-left: 20px;
    margin-right: 20px;
    padding-left: 50px;
	padding-right: 50px;
}
.footer-social span {
	margin-right: 12px;
}
.f-insta ul li {
	width: 28%;
}
.f-insta ul li a img {
	width: 100%;
}
.wp-bg {
	overflow: hidden;
}
.s-about-img {
	margin-left: -125px;
}
.about-p {
	padding-top: 110px;
}
.s-single-services {
	padding: 50px 30px;
}
.fshape-one {
	top: 30%;
}
.fshape-two {
	left: 9%;
}
.chosse-img {
	width: 45%;
}
.choose-wrap.pl-100 {
	padding-left: 50px;
}
.choose-content p {
	padding-right: 50px;
}
.inner-wp-icon {
	display: none;
}
.wp-thumb.mb-35 {
	margin-bottom: 25px;
}
.pricing-box {
	padding: 50px 30px;
}
.contact-img {
	right: -150px;
}
.bsingle__content h2 {
	padding-right: 0;
	font-size: 27px;
}
.widget__banner-overly > span {
	margin-bottom: 120px;
}
.widget__banner-overly h3 {
	margin-bottom: 91px;
	font-size: 35px;
}
.widget__post-content h6 {
	font-size: 14px;
	padding-right: 0;
}
.details__content h2 {
	font-size: 26px;
}
.related-post-wrap .rp__content {
	padding: 23px;
}
.related-post-wrap .rp__content h3 {
	font-size: 20px;
}

}


/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
	.main-menu .has-sub > ul {
    position: relative;
}
.slider-bg2 .second-slider-content h2 {
    font-size: 100px;
    margin-bottom: 20px;
}
.booking-form {
    float: right;
    background: #fff;
    height: 480px;
    width: 100%;
    border-radius: 10px;
    padding: 14%;
    margin-right: 0;
    position: relative;
    margin-bottom: 100px;
}
	.menu-area {
    padding: 20px 0;
    position: fixed;
    z-index: 99;
    width: 100%;
}
.blog-content h4 {
    font-size: 18px;
}
.contact-circal{
	display:none;
}
 .responsive i {
    color: #000;
}
.event nav > .nav.nav-tabs {
    width: 100%;
}
.event .nav-content {
    float: right;
    width: 88%;
}
.pricing-head {
    background-size: contain;
}
.event .nav {
    display: inline-block;
}
.event .nav-fill .nav-item {
    margin-bottom: 30px;
}
.sticky-menu .responsive i {
    color: #000;
    font-size: 25px;
}
.counter-area ul li span {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
}
.cr1, .cr2, .cr3, .cr6 {
    position: relative;
    left: 0;
    top: 0;
}
.counter-area h2 {
    font-size: 40px;
}
.event-list-content {
    margin-left: 0;
    margin-right: 0;
    padding: 50px;
    position: relative;
    border: 10px solid #edf5ff;
    margin-top: 25px;
}
.container-p {
	padding: 0 30px;
}
.slider-content h2 {
	font-size: 70px;
}
.slider-bg {
	min-height: 600px !important;
}
.ss-eight {
    display: none !important;
}
.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.section-t h2 {
	font-size: 130px;
}
.sponsors ul {
    margin: 100px 0 0;
}
.about-img {
	margin-left: 0;
	text-align: center;
	margin-bottom: 30px;
}
.about-content.pl-30 {
	padding-left: 0;
	padding-bottom: 4px;
}
.features-content p {
	padding: 0;
}
.section-title h2 {
	font-size: 52px;
}
.services-content {
	padding: 50px 28px;
	padding-bottom: 45px;
}
.video-position {
	bottom: 70px;
	left: 120px;
}
.wp-img {
	margin-top: 30px;
	margin-bottom: -15px;
	margin-right: 0;
}
.counter small {
	top: -20px;
}
.cta-right {
	margin-top: 35px;
}
.ta-bg {
	background-position: center;
	margin: 25px auto;
}
.testimonial-area.pb-120 {
	padding-bottom: 185px;
}
.f-cta-area {
	margin-left: 20px;
    margin-right: 20px;
    padding-left: 50px;
	padding-right: 50px;
}
.menu-area {
	padding: 20px 0;
}
.responsive {
	float: right;
	display: block;
	cursor: pointer;
	margin-top: -38px;
}
.responsive i {
	color: #fff;
	font-size: 25px;
}
#mobile-menu {
	display: none;
	background: #fff;
	padding: 20px;
}
.main-menu {
	text-align: left !important;
}
.main-menu ul li {
	display: block;
	border-bottom: 1px solid #f7f7f7;
	margin-left: 0;
}
.main-menu ul li.active a, .main-menu ul li:hover a {
	color: #ff007a;
}
.main-menu  ul > li > a::before {content: none;}
.main-menu ul li a {
	color: #707692;
	padding: 12px 20px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}
.second-menu {
	box-shadow: none;
	padding: 0;
}
.second-menu::before {
	content: none;
}
.second-header {
	padding: 10px 0;
}
.second-menu .main-menu ul li {
	margin-left: 0;
}
.s-about-img {
	margin-bottom: 20px;
}
.s-about-img img {
	width: 100%;
}
.s-video-content {
	padding-left: 100px;
}
.chosse-img {
	display: none;
}
.testimonial-p {
	padding-top: 110px;
	padding-bottom: 185px;
}
.contact-img {
	display: none;
}
.contact-bg.pb-80 {
	padding-bottom: 120px;
}

.breadcrumb-area {
	min-height: 500px;
}
.bsingle__content h2 {
	font-size: 28px;
}
.widget__banner-overly > span {
	margin-bottom: 320px;
}
.widget__banner-overly h3 {
	margin-bottom: 352px;
	font-size: 80px;
}
.widget__banner-overly h3 span {
	font-size: 61px;
}
.details__content h2 {
	font-size: 29px;
}
.avatar__wrap {
	padding: 50px 65px;
}
.b-details-p.pt-120 {
	padding-top: 115px;
}

}


/* small mobile :320px. */
@media (max-width: 767px) {
.feature-box{
	width:100%;
}
.event .tab-content {
    padding: 50px 0 0 !important;
}
.main-menu .has-sub > ul {
    position: relative;
}
.timer .timer-outer {
    padding: 36px;
    width: 150px;
    height: 150px;
	background-size:100%;
}
.slider-bg2 .second-slider-content h2 {
    font-size: 45px;
}
.slider-bg2 .slider-content ul li::after {
    content: "|";
    margin: 0 10px;
}
.slider-content ul li {
    font-size: 12px;
}

.slider-bg2 .slider-content.second-slider-content::before,.slider-bg2 .slider-content.second-slider-content::after {
    width: 300px;
}
.slider-bg3 .second-slider-content h2 {
    font-size: 46px;
	margin-bottom: 0;
}
.slider-bg3 .slider-content ul li::after {
    content: "|";
    margin: 0 10px;
}
.booking-form {
    height: 480px;
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 100px;
}
.booking-form input, .booking-form select {
    width: 86%;
    border: none;
}
.booking-form h2 {
    font-size: 26px;
}
.slider-bg3 .timer .timer-outer {
    padding:10px 5px;
}
.product {
    margin-top: 40px;
}
.sponsors ul {
    margin: 80px 0 0;
}
.container-p {
	padding: 0 15px;
}
.menu-area {
	padding-top: 15px;
	padding-bottom: 5px;
}
.slider-bg {
	min-height: 600px;
}
.slider-content h2 {
	font-size: 36px;
    letter-spacing: 0;
    margin-bottom: 30px;
}
.down-arrow {
	bottom: 20px;
}
.section-t{display: none;}
.about-img {
	margin-left: 0;
}
.about-img img {
	width: 100%;
}
.about-text span {
	top: 20px;
}
.about-text {
	height: 109px;
	width: 214px;
}
.about-content.pl-30 {
    padding-left: 0;
    margin-top: 30px;
    padding-bottom: 3px;
}
.about-title h2 {
	font-size: 36px;
	letter-spacing: -1px;
}
.features-content p {
	padding: 0;
}
.section-title {
	padding-left: 0;
	padding-right: 0;
}
.section-title h2 {
	font-size: 36px;
	letter-spacing: -1px;
}
.video-wrap img {
	width: 100%;
}
.video-position {
	bottom: 0;
}
.video-img a {
	height: 50px;
	width: 50px;
	line-height: 55px;
}
.v-list ul li i {
	display: block;
	margin-right: 15px;
	float: left;
	margin-top: 2px;
}
.v-list ul li span {
	overflow: hidden;
	display: block;
}
.wp-list ul li {
	display: block;
	align-items: unset;
}
.wp-list {
	padding: 30px 20px;
	padding-bottom: 25px;
}
.wp-icon {
	margin-right: 0;
	margin-bottom: 10px;
}
.wp-img {
	margin-right: 0;
	margin-top: 30px;
	margin-bottom: -15px;
}
.wp-img > img {
	width: 100%;
}
.wp-img .wp-tag {
	left: 0;
    top: 75px;
    width: 25%;
}
.counter small {
	top: -20px;
}
.cta-content p {
	padding-right: 0;
}
.cta-right {
	margin-top: 35px;
}
.testimonial-area.pb-120 {
	padding-bottom: 185px;
	padding-top: 113px;
}
.blog-content {
	padding: 30px 20px;
}
.f-cta-area {
	margin-left: 15px;
	margin-right: 15px;
	padding: 35px 0 0;
}
.menu-area {
	padding: 20px 0;
}
.responsive {
	float: right;
	display: block;
	cursor: pointer;
	margin-top: -38px;
}
.responsive i {
	color: #fff;
	font-size: 25px;
}
.sticky-menu .responsive i {
	color: #000;
	font-size: 25px;
}
#mobile-menu {
	display: none;
	background: #fff;
	padding: 20px 0;
}
.main-menu {
	text-align: left !important;
}
.main-menu ul li {
	display: block;
	border-bottom: 1px solid #f7f7f7;
	margin-left: 0;
}
.main-menu ul li.active a, .main-menu ul li:hover a {
	color: #ff007a;
}
.main-menu  ul > li > a::before {content: none;}
.main-menu ul li a {
	color: #707692;
	padding: 12px 20px;
	display: block;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}
.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.timer .timer-outer {
    margin: 25px 0;
}
.about-area img,.grid-item img{
	width:100%;
}
.text-outline {
    display: none;
}
.grid-item {
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
}
.menu-area {
    padding: 20px 0;
    position: fixed;
    z-index: 99;
    width: 100%;

}
.second-menu {
	box-shadow: none;
	padding: 0;
}
.cr1,.cr2,.cr3,.cr6 {
    position: relative;
    left: 0;
	top:0;
}
.event .nav {
    display: inline-block;
}
.event .nav-fill .nav-item{
	margin-bottom:30px;
}
.event nav > .nav.nav-tabs {
    padding: 0 0;
    width: 100%;
}
.event-list-content {
    margin-left: 0;
    margin-right: 0;
    padding: 25px 25px 150px;
    margin-top: 30px;
}
.second-menu::before {
	content: none;
}
.second-header {
	padding: 10px 0;
}
.second-menu .main-menu ul li {
	margin-left: 0;
}
.s-about-img {
	margin-bottom: 20px;
}
.s-about-img img {
	width: 100%;
}
.s-video-content {
	padding-left: 15px;
}
.chosse-img {
	display: none;
}
.testimonial-p {
	padding-top: 110px;
	padding-bottom: 185px;
}
.contact-img {
	display: none;
}
.contact-bg.pb-80 {
	padding-bottom: 120px;
}
.slider-shape {
	display: none !important;
}
.second-about {
	display: none;
}
.s-about-content.pl-30 {
	margin-top: 0;
}
.s-video-content h2 {
	font-size: 40px;
}
.features-shape {
	display: none;
}
.choose-wrap.pl-100 {
	padding-left: 0;
}
.choose-content p {
	padding-right: 0;
}
.choose-list ul li i {
	display: block;
	margin-right: 15px;
	float: left;
	margin-top: 2px;
}
.choose-list ul li span {
	overflow: hidden;
	display: block;
}
.inner-wp-icon {
	display: none;
}
.wp-thumb.mb-35 {
	margin-bottom: 25px;
}
.pricing-box {
	float:left;
}

.pricing-head {
    background-size: contain;
}
.counter-area ul li span {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
}
.footer-link li::after {
    content: "|";
    margin: 0 10px;
}
.bsingle__content {
	padding: 25px;
}
.bsingle__content h2 {
	padding-right: 0;
	font-size: 24px;
}
.bsingle__content p {
	padding-right: 0px;
}
.quote-post .quote-icon {
	margin-top: 14px;
	float: unset;
	margin-bottom: 15px;
}
.pagination-wrap .pagination {
	text-align: center;
}
.widget__post-content h6 {
	font-size: 14px;
	padding-right: 0;
}
.widget__banner-overly > span {
	margin-bottom: 120px;
}
.widget__banner-overly h3 {
	color: #ffffff;
	font-size: 32px;
	margin-bottom: 100px;
	font-weight: 500;
}
.breadcrumb-title h2 {
	font-size: 48px;
}
.breadcrumb-title p {
	padding: 0;
	font-size: 15px;
}
.breadcrumb-area {
	min-height: 400px;
}
.details__content h2 {
	font-size: 24px;
}
.details__content blockquote {
	padding-right: 20px;
	padding-left: 45px;
}
.details__content figure img {
	float: unset;
	width: 100%;
	margin-right: 0;
	margin-bottom: 40px;
}
.post__tag ul li {
	margin-right: 2px;
}
.post__share {
	text-align: left !important;
}
.post__share h5 {
	margin-bottom: 15px;
}
.post__tag {
	margin-bottom: 35px;
}
.posts_navigation .prev-link {
	margin-bottom: 30px;
}
.posts_navigation .blog-filter {
	margin-bottom: 30px;
	display: inline-block;
}
.related-post-wrap .rp__content {
	padding: 35px;
	padding-left: 25px;
	padding-right: 25px;
}
.related-post-wrap .rp__content h3 {
	font-size: 20px;
}
.avatar__wrap {
	padding: 50px 20px;
}
.single__comment .comments-avatar {
	float: unset;
	margin-bottom: 15px;
}
.single__comment.children {
	margin-left: 0;
}
.comment__form {
	padding: 30px 20px;
}
.b-details-p.pt-120 {
	padding-top: 115px;
}

}

/* Large Mobile :480px. */
@media only screen and (min-width: 300px) and (max-width: 767px) {
	.slider-bg3 .timer .timer-outer {
    font-size: 50px;
}
.slider-content h2 {
	font-size: 36px;
}
.features-content p {
	padding: 0 80px;
}
.section-title h2 {
	font-size: 42px;
	letter-spacing: -1px;
}
.wp-list {
	padding: 80px 50px;
	padding-bottom: 75px;
}
.blog-content h4 {
	font-size: 24px;
}
.f-insta ul li {
	width: 28%;
}
.f-insta ul li a img {
	width: 100%;
}
.s-video-content {
	padding-left: 40px;
	padding-right: 40px;
}
.s-video-content br{display: none;}
.choose-wrap.pl-100 {
	padding-left: 30px;
}
.inner-wp-icon {
	display: block;
}
.testimonial-p {
	padding-top: 114px;
}
.pricing-box {
	padding:0;
}
.bsingle__content h2 {
	font-size: 26px;
}
.quote-post .quote-icon {
	float: left;
	margin-right: 30px;
	display: block;
	margin-bottom: 0;
	margin-top: 20px;
}
.widget__banner-overly > span {
	margin-bottom: 260px;
}
.widget__banner-overly h3 {
	margin-bottom: 210px;
	font-size: 60px;
}
.avatar__wrap {
	padding: 50px 40px;
}
.contact-circal{
	display:none;
}
}

/* ═══════════════════════════════════════════
   OWC 2026 — Custom Responsive Overrides
   Breakpoints: 1200 / 992 / 768 / 576 / 375
   ═══════════════════════════════════════════ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
  /* Hero */
  .owc-hero { min-height: 85vh; }
  .owc-hero__title { font-size: clamp(2.2rem, 7vw, 3.8rem); letter-spacing: -1px; }
  .owc-hero__theme { font-size: 1.1rem; }
  .owc-hero__cta { flex-direction: row; gap: 10px; }

  /* Floating countdown */
  .owc-float-countdown { margin-top: -40px; }
  .owc-float-countdown .container { padding: 22px 24px; border-radius: 16px; }
  .owc-cd-number { font-size: 2rem; padding: 12px 16px; }

  /* Promo card */
  .owc-promo-card { padding: 40px 32px; }
  .owc-promo-content { gap: 32px; }
  .owc-promo-title { font-size: 2rem; }

  /* About story panel */
  .owc-story-panel { margin-top: 40px; }
  .owc-pillars { grid-template-columns: 1fr 1fr; }

  /* Host cards */
  .owc-host-card { padding: 30px 24px; margin-bottom: 20px; }

  /* Minister cards */
  .owc-minister-card img { height: 340px; }
  .owc-promo-minister img { width: 48px; height: 48px; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  /* Hero */
  .owc-hero { min-height: 92vh; padding: 100px 0 60px; }
  .owc-hero__content { padding: 0 16px; }
  .owc-hero__eyebrow { font-size: 10px; padding: 5px 14px; }
  .owc-hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .owc-hero__theme { font-size: 1rem; margin-bottom: 28px; padding: 0 8px; }
  .owc-hero__cta { flex-direction: column; align-items: center; gap: 12px; }
  .owc-btn-primary, .owc-btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Floating countdown — flush to edges, stacked 2×2 */
  .owc-float-countdown { margin-top: -32px; padding: 0 12px; }
  .owc-float-countdown .container {
    padding: 20px 16px;
    border-radius: 16px;
    flex-wrap: wrap;
  }
  .owc-countdown { gap: 6px; }
  .owc-cd-block { min-width: 60px; }
  .owc-cd-number { font-size: 1.7rem; padding: 10px 12px; border-radius: 10px; }
  .owc-cd-label { font-size: 9px; letter-spacing: 1.5px; }
  .owc-cd-sep { font-size: 1.6rem; margin-top: -8px; }

  /* Minister cards on homepage */
  .single-team { margin-bottom: 24px; }
  .single-team img[style] {
    height: 260px !important;
  }

  /* Schedule section avatars */
  .event .user .title img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }
  .event-list-content { margin-left: 0 !important; padding: 20px !important; border-width: 4px !important; }
  .event .user { margin-bottom: 16px; }

  /* Promo card — stacked */
  .owc-promo-card { padding: 32px 20px; border-radius: 20px; }
  .owc-promo-content { flex-direction: column; gap: 28px; }
  .owc-promo-title { font-size: 1.8rem; letter-spacing: -0.5px; }
  .owc-promo-right { width: 100%; }
  .owc-promo-ministers { flex-direction: column; gap: 10px; }
  .owc-promo-minister { padding: 12px 14px; border-radius: 14px; }
  .owc-promo-minister img { width: 44px; height: 44px; }

  /* About — story panel */
  .owc-story-panel { margin-top: 32px; gap: 16px; }
  .owc-quote-card { padding: 28px 22px; border-radius: 16px; }
  .owc-quote-text { font-size: 15px; }
  .owc-pillars { grid-template-columns: 1fr 1fr; gap: 10px; }
  .owc-pillar { padding: 14px 12px; border-radius: 12px; gap: 10px; }
  .owc-pillar-icon { width: 36px; height: 36px; min-width: 36px; font-size: 15px; border-radius: 10px; }
  .owc-pillar strong { font-size: 13px; }
  .owc-pillar span { font-size: 11px; }
  .owc-date-badge { font-size: 12px; padding: 12px 16px; flex-wrap: wrap; gap: 6px; }

  /* Host cards */
  .owc-host-card { padding: 28px 22px; border-radius: 16px; margin-bottom: 16px; }
  .owc-host-card h3 { font-size: 22px; }
  .owc-host-card p { font-size: 14px; }

  /* Minister photo cards */
  .owc-minister-card img { height: 300px; }
  .owc-minister-card .overlay { padding: 24px 20px 20px; }
  .owc-minister-card .overlay h5 { font-size: 16px; }

  /* Stats row */
  .owc-stat .num { font-size: 36px; }
  .owc-stat .label { font-size: 11px; }

  /* CTA banner */
  .owc-about-cta { padding: 44px 24px; border-radius: 18px; }
  .owc-about-cta h2 { font-size: 26px; }
  .owc-about-cta p { font-size: 14px; }

  /* Footer */
  footer .container { padding: 0 20px; }

  /* Feature boxes on about */
  .feature-box { padding: 20px 18px; border-radius: 14px; }

  /* Global reach section */
  .region-pill { font-size: 12px; padding: 6px 14px; }

  /* Counter/join section */
  .counter-area .about-title h2 { font-size: 26px; }
  .counter-area .about-title h5 { font-size: 16px; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .owc-hero__title { font-size: clamp(1.8rem, 8.5vw, 2.6rem); }
  .owc-countdown { gap: 4px; }
  .owc-cd-number { font-size: 1.5rem; padding: 9px 10px; }
  .owc-cd-sep { font-size: 1.3rem; }
  .owc-float-countdown { margin-top: -24px; }
  .owc-promo-title { font-size: 1.6rem; }
  .owc-pillars { grid-template-columns: 1fr; }
  .owc-about-cta h2 { font-size: 22px; }
  .owc-minister-card img { height: 260px; }
}

/* ── Venue & Speakers page breadcrumb fix on mobile ── */
@media (max-width: 767px) {
  .breadcrumb-area { min-height: 220px; }
  .breadcrumb-title h2 { font-size: 28px !important; }

  /* Speakers page minister bio */
  .minister-photo { height: 260px !important; }
  .single-team .team-info { padding: 20px !important; }

  /* Contact page */
  .reg-info-box { padding: 32px 20px !important; margin-bottom: 24px; }
  .owc-form-wrap { padding: 28px 20px !important; }
}

/* ── Touch-friendly nav button ── */
@media (max-width: 991px) {
  .header-btn .btn { display: none; }
  .owc-mobile-register {
    display: block !important;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #e91e8c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(233,30,140,0.5);
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  .owc-mobile-register { display: none !important; }
}

/* ═══════════════════════════════════════════
   OWC 2026 — MOBILE-FIRST AGGRESSIVE CUTS
   Hide bloat, show only what converts
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── 1. COUNTDOWN → single compact pill strip ── */
  .owc-float-countdown { margin-top: 0 !important; padding: 0 !important; }
  .owc-float-countdown .container {
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .owc-countdown {
    background: #1a1a2e !important;
    border-top: 3px solid #e91e8c !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 12px 16px !important;
    overflow: hidden !important;
    height: auto !important;
  }
  .owc-cd-block { min-width: unset !important; display: flex !important; align-items: center !important; gap: 4px !important; flex-direction: row !important; }
  .owc-cd-number {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 1.3rem !important;
    color: #fff !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    min-width: unset !important;
    width: auto !important;
    height: auto !important;
  }
  .owc-cd-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    margin-top: 0;
    text-transform: uppercase;
  }
  .owc-cd-sep {
    font-size: 1rem;
    color: #e91e8c;
    margin: 0 6px;
    margin-top: 0;
    line-height: 1;
  }

  /* ── 2. ABOUT section → compact 2-col feature grid ── */
  #about.about-area { padding: 36px 0 !important; }
  #about .about-img { display: none !important; }
  #about .col-xl-7, #about .col-lg-6 { flex: 0 0 100% !important; max-width: 100% !important; }
  #about .about-content.pl-30 { padding-left: 0 !important; }
  #about .about-title h2 { font-size: 22px !important; }
  #about .about-btn { display: none !important; }
  /* Intro column stacks normally (title above body copy) */
  #about .col-lg-6:first-child { display: block !important; padding: 0 16px; }
  #about .col-lg-6:first-child .about-title { margin-bottom: 8px; }
  #about .feature-box { margin-bottom: 12px !important; text-align: center; background: #f8f4ff; border-radius: 12px; padding: 16px 8px !important; }
  #about .feature-box .crl { width: 56px !important; height: 56px !important; margin: 0 auto 8px !important; }
  #about .feature-box .crl img { width: 28px !important; height: 28px !important; }
  #about .feature-box h4 { font-size: 13px !important; margin: 0 !important; }

  /* ── 3. COUNTER/STATS → flatten circles to compact stat tiles ── */
  .counter-area { padding: 24px 0 !important; }
  /* Override the fixed-size circle classes */
  .cr1, .cr2, .cr3 {
    width: auto !important; height: auto !important;
    position: relative !important; top: auto !important; left: auto !important;
    border-radius: 12px !important; padding: 16px 12px !important;
    background: #f0eaff !important;
    margin-bottom: 8px !important; z-index: 1 !important;
    text-align: center !important;
  }
  .cr2 { background: #eaffef !important; }
  .cr3 { background: #e8faff !important; }
  .single-counter .counter { width: auto !important; height: auto !important; line-height: 1.2 !important; padding: 0 !important; }
  .single-counter .count { font-size: 2rem !important; color: #1a1a2e !important; }
  .single-counter small { font-size: 1.5rem !important; color: #1a1a2e !important; }
  .single-counter p { font-size: 12px !important; margin: 4px 0 0 !important; color: #555 !important; }
  /* cr4/cr5/cr6 are decorative dots — hide on mobile */
  .cr4, .cr5, .cr6 { display: none !important; }
  /* Stack the two main columns full-width, then 2-col the stat tiles */
  .counter-area .row > .col-lg-6 { flex: 0 0 100% !important; max-width: 100% !important; }
  .counter-area .row > .col-lg-6:last-child { display: flex !important; flex-wrap: wrap !important; padding: 0 8px !important; }
  .counter-area .row > .col-lg-6:last-child > .col-lg-3,
  .counter-area .row > .col-lg-6:last-child > .col-sm-6,
  .counter-area .row > .col-lg-6:last-child > .col-lg-6.col-sm-6 { flex: 0 0 50% !important; max-width: 50% !important; padding: 4px !important; }
  /* Condense left text column */
  .counter-area .second-atitle h2 { font-size: 22px !important; }
  .counter-area ul li { font-size: 13px !important; }
  .counter-area ul li img { width: 20px !important; height: 20px !important; }

  /* ── 4. SCHEDULE/EVENT → compact stacked cards ── */
  .event { padding: 32px 0 !important; }
  .event .nav-tabs { flex-wrap: nowrap !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-bottom: 2px solid #eee !important; padding: 0 16px !important; }
  .event .nav-tabs::-webkit-scrollbar { display: none !important; }
  .event .nav-tabs .nav-item { flex: 0 0 auto !important; }
  .event .tab-content { padding: 16px 0 0 !important; }
  /* Compact each schedule row */
  .event .single-event { padding: 12px 16px !important; }
  .event-list-content { padding: 12px 16px !important; border-left-width: 3px !important; margin-left: 0 !important; }
  .event-list-content h2 { font-size: 16px !important; margin-bottom: 4px !important; }
  .event-list-content p { font-size: 13px !important; margin-bottom: 6px !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  .event-list-content ul { margin-bottom: 4px !important; }
  .event-list-content ul li { font-size: 12px !important; }
  .event .user { margin-bottom: 8px !important; }
  .event .user img { width: 36px !important; height: 36px !important; border-radius: 50% !important; object-fit: cover !important; }
  .event .user .title h6 { font-size: 12px !important; margin: 0 !important; }
  .event .user .title span { font-size: 11px !important; }

  /* ── 5. PROMO CARD → hide (redundant on mobile) ── */
  section:has(.owc-promo-card) { display: none !important; }

  /* ── 6. MINISTER & WORSHIP CARDS → clean vertical stack ── */
  #team.team-area { padding: 56px 0 !important; }
  #team .section-title { padding: 0 20px; }
  #team .section-title h2 { font-size: 24px !important; }
  #team .row.justify-content-center {
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    margin: 0 !important;
    padding: 0 6px;
  }
  #team .row.justify-content-center > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 12px !important;
  }
  #team .owc-min-photo img { height: 360px; }
  #team .owc-min-photo--music { height: 360px; }

  /* ── 7. ADD: mobile quick-info strip after countdown ── */
  .owc-mobile-strip {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 16px;
    flex-wrap: nowrap;
  }
  .owc-mobile-strip::-webkit-scrollbar { display: none; }
  .owc-mobile-strip-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    padding: 0 14px;
    border-right: 1px solid #eee;
  }
  .owc-mobile-strip-item:last-child { border-right: none; }
  .owc-mobile-strip-item i { color: #e91e8c; font-size: 12px; }

  /* Reduce hero height on mobile so CTA is visible faster */
  .owc-hero { min-height: 82vh !important; }

  /* Tighten section padding on remaining sections */
  #team.team-area { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* ── Very small phones ── */
@media (max-width: 375px) {
  #team .row.justify-content-center > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .owc-hero__title { font-size: 1.75rem; }
}

/* ── Screen-reader only utility ── */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ── Clean button hover — remove diffuse pink glow/blur ── */
.btn:hover {
  box-shadow: 0 4px 12px rgba(255,0,122,0.22) !important;
  transform: translateY(-1px);
}
.owc-mobile-register {
  box-shadow: 0 4px 14px rgba(233,30,140,0.28) !important;
}

/* ── Branded sticky navbar — match event theme (deep plum), not blue ── */
.sticky-menu {
  background: #14061f !important;
  border-bottom: 1px solid rgba(233,30,140,0.22);
}

/* ═══════════════════════════════════════════════════════════════
   OWC RESPONSIVE HARMONIZATION  (v20)
   One consistent breakpoint system across every page:
   ≥1200 desktop · 992–1199 sm-desktop · 768–991 tablet
   576–767 lg-phone · ≤575 phone · ≤380 sm-phone
   ═══════════════════════════════════════════════════════════════ */

/* — Global guard: never allow horizontal scroll on any device — */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; }
.container, .container-fluid { max-width: 100%; }

/* — Fluid section headings (covers inline font-size:38px / 48px) — */
@media (max-width: 991px) {
  h2[style*="font-size:38px"] { font-size: 30px !important; }
  h2[style*="font-size:48px"] { font-size: 36px !important; }
  h2[style*="font-size: 30px"] { font-size: 26px !important; }
}
@media (max-width: 767px) {
  h2[style*="font-size:38px"] { font-size: 27px !important; line-height: 1.25 !important; }
  h2[style*="font-size:48px"] { font-size: 30px !important; line-height: 1.2 !important; }
}
@media (max-width: 480px) {
  h2[style*="font-size:38px"] { font-size: 24px !important; }
  h2[style*="font-size:48px"] { font-size: 26px !important; }
}

/* — Minister cards (home): even photo height on tablet — */
@media (min-width: 768px) and (max-width: 991px) {
  .owc-min-photo img { height: 300px; }
}
@media (min-width: 576px) and (max-width: 767px) {
  .owc-min-photo img { height: 320px; }
}

/* — About: region / coordinator / theme / expect cards already use
     Bootstrap cols; just keep inner padding comfortable on phones — */
@media (max-width: 575px) {
  .owc-region-card, .owc-coord-card { padding-left: 22px; padding-right: 22px; }
  .owc-theme-point, .owc-expect-card { padding: 22px !important; }
  .owc-sponsor-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
}

/* — Past-conference timeline: tighten on phones — */
@media (max-width: 575px) {
  .owc-timeline-card { padding: 18px !important; }
  .owc-timeline-stats { gap: 12px !important; }
}

/* — Schedule: graceful scaling of synced tab + row elements — */
@media (max-width: 767px) {
  .event .owc-tab-ico { font-size: 22px; margin-right: 10px; top: 3px; }
  .event-list-content { padding: 22px !important; }
}
@media (max-width: 480px) {
  .event .owc-tab-ico { font-size: 19px; margin-right: 7px; }
  .event-list-content { padding: 18px !important; }
  .event-list-content h2 { font-size: 19px !important; }
}

/* — Gallery grid: collapse smoothly (4→2→1) — */
@media (max-width: 991px) { .owc-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .owc-gallery-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; } }

/* — Speaker / coordinator social rows wrap, never overflow — */
.owc-spk-social, .owc-min-social { flex-wrap: wrap; }

/* ── Home "Ministers & Worship": dark card — white text ── */
.team-area .owc-min-body .owc-min-role { color: rgba(255,255,255,0.5) !important; font-style: normal !important; text-transform: uppercase; letter-spacing: 1px; font-size: 11px !important; }
.team-area .owc-min-body .owc-min-name { color: #fff !important; }

/* ── Hide bleeding decorative circles & giant paroller bg text on mobile ── */
@media (max-width: 991px) {
  .circal1, .circal2, .circal3, .circal4, .circal5, .circal6,
  .cr1, .cr2, .cr3, .cr4, .cr5, .cr6,
  .item-zoom-inout,
  .section-t.team-t, .slider-shape { display: none !important; }
}

/* ── Long-text buttons wrap instead of clipping on small phones ── */
@media (max-width: 480px) {
  .btn {
    white-space: normal !important;
    max-width: 100%;
    padding: 14px 24px !important;
    font-size: 14px !important;
    line-height: 1.35;
  }
}

/* ═══════════════════════════════════════════════
   MODERN SITE FOOTER
   ═══════════════════════════════════════════════ */
.owc-footer { position: relative; background: #0b0b16; color: #fff; padding: 72px 0 0; }
.owc-footer::before { content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,#e91e8c 0%,#9c27b0 50%,#3b82f6 100%); }
.owc-footer__top { display:grid; grid-template-columns:1.6fr 1fr 1.3fr; gap:48px; padding-bottom:44px; }
.owc-footer__brand { font-family:'Montserrat',sans-serif; font-weight:900; font-size:26px; letter-spacing:1px;
  color:#fff; text-decoration:none; display:inline-block; margin-bottom:18px; }
.owc-footer__blurb { color:rgba(255,255,255,0.5); font-size:14px; line-height:1.8; max-width:38ch; margin:0 0 24px; }
.owc-footer__social { display:flex; gap:12px; }
.owc-footer__social a { width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12); display:inline-flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.7); font-size:15px; text-decoration:none;
  transition:transform .25s cubic-bezier(.16,1,.3,1), background .25s, border-color .25s, color .25s; }
.owc-footer__social a:hover { transform:translateY(-3px); background:#e91e8c; border-color:#e91e8c; color:#fff;
  box-shadow:0 8px 20px rgba(233,30,140,0.4); }
.owc-footer__col h4 { font-family:'Montserrat',sans-serif; font-weight:800; font-size:12px; letter-spacing:2.5px;
  text-transform:uppercase; color:#fff; margin:0 0 22px; }
.owc-footer__links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:13px; }
.owc-footer__links a { color:rgba(255,255,255,0.55); font-size:14px; text-decoration:none;
  display:inline-flex; align-items:center; gap:9px; transition:color .2s, transform .2s; }
.owc-footer__links a i { font-size:9px; color:#e91e8c; transition:transform .2s; }
.owc-footer__links a:hover { color:#fff; }
.owc-footer__links a:hover i { transform:translateX(3px); }
.owc-footer__info { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:14px; }
.owc-footer__info li { display:flex; align-items:flex-start; gap:12px; color:rgba(255,255,255,0.6);
  font-size:14px; line-height:1.5; }
.owc-footer__info i { color:#e91e8c; margin-top:3px; width:16px; flex-shrink:0; text-align:center; }
.owc-footer__cta { display:inline-flex; align-items:center; gap:9px; background:#e91e8c; color:#fff;
  font-family:'Montserrat',sans-serif; font-weight:700; font-size:13px; padding:13px 28px; border-radius:50px;
  text-decoration:none; transition:transform .2s, box-shadow .2s; }
.owc-footer__cta:hover { transform:translateY(-2px); box-shadow:0 10px 26px rgba(233,30,140,0.42); color:#fff; }
.owc-footer__bottom { border-top:1px solid rgba(255,255,255,0.08); padding:22px 0; display:flex;
  flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between; }
.owc-footer__bottom p { margin:0; color:rgba(255,255,255,0.4); font-size:12.5px; letter-spacing:.2px; }
.owc-footer__bottom a { color:rgba(255,255,255,0.7); text-decoration:none; font-weight:600; }
.owc-footer__bottom a:hover { color:#e91e8c; }
@media (max-width: 767px) {
  .owc-footer { padding-top:48px; text-align:center; }
  .owc-footer__top { grid-template-columns:1fr; gap:38px; }
  .owc-footer__blurb { margin-left:auto; margin-right:auto; }
  .owc-footer__social { justify-content:center; }
  .owc-footer__links { align-items:center; }
  .owc-footer__info li { justify-content:center; text-align:left; }
  .owc-footer__cta { margin:0 auto; }
  .owc-footer__bottom { flex-direction:column; text-align:center; justify-content:center; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIX v2 — WOW.js visibility + comprehensive mobile pass
   Root cause: WOW.js sets visibility:hidden and waits for scroll
   events that don't reliably fire on mobile. Force all animated
   elements visible on mobile, then polish every section.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. WOW.js fix — force all animated elements visible on mobile ── */
@media (max-width: 991px) {
  .wow {
    visibility: visible !important;
    animation-name: none !important;
    animation-duration: 0ms !important;
    opacity: 1 !important;
  }
  /* Keep the element but skip the animation so layout is instant */
  .animated {
    animation-duration: 0ms !important;
    animation-delay: 0ms !important;
  }
}

/* ── 2. Section vertical padding — cover ALL pt/pb utility classes ── */
@media (max-width: 767px) {
  section.pt-120, section.pt-100, section.pt-80 { padding-top: 52px !important; }
  section.pb-120, section.pb-100, section.pb-80 { padding-bottom: 52px !important; }
  .pt-120 { padding-top: 52px !important; }
  .pt-100 { padding-top: 48px !important; }
  .pt-80  { padding-top: 40px !important; }
  .pb-120 { padding-bottom: 52px !important; }
  .pb-100 { padding-bottom: 48px !important; }
  .pb-80  { padding-bottom: 40px !important; }
  .mb-70  { margin-bottom: 32px !important; }
  .mb-60  { margin-bottom: 28px !important; }
  .mt-60  { margin-top: 28px !important; }
  .mt-50  { margin-top: 24px !important; }
}

/* ── 3. About page — fix the intro (about-p) section ── */
@media (max-width: 767px) {
  .about-area.about-p .s-about-content.pl-30 { padding-left: 0 !important; margin-top: 24px !important; }
  .about-area.about-p .col-lg-6 { flex: 0 0 100% !important; max-width: 100% !important; }
  .about-area.about-p img { border-radius: 12px; }
}

/* ── 4. About page — Who Is Behind coord cards ── */
@media (max-width: 767px) {
  .owc-coord-card { border-radius: 18px !important; }
  .owc-coord-photo { width: 100px !important; height: 100px !important; margin: 24px auto 14px !important; }
  .owc-coord-name { font-size: 17px !important; }
  .owc-coord-role { font-size: 12px !important; }
}

/* ── 5. Host cards (BR Nation / Handmaidens text blocks) ── */
@media (max-width: 767px) {
  .owc-host-card { padding: 28px 22px !important; border-radius: 16px !important; }
  .owc-host-card h3 { font-size: 20px !important; }
  .owc-host-card p { font-size: 14px !important; }
}

/* ── 6. Timeline cards (past conferences) ── */
@media (max-width: 767px) {
  .owc-timeline-card { padding: 20px !important; }
  .owc-timeline-year { font-size: 11px !important; }
  .owc-timeline-stats { flex-wrap: wrap; gap: 10px !important; }
}

/* ── 7. Theme / Scripture / Expect cards ── */
@media (max-width: 767px) {
  .owc-theme-point { padding: 20px !important; }
  .owc-expect-card { padding: 20px !important; }
}

/* ── 8. Region cards (Global Reach) ── */
@media (max-width: 767px) {
  .owc-region-card { padding: 24px 20px !important; }
  .owc-region-card h5 { font-size: 16px !important; }
}

/* ── 9. Sponsors grid ── */
@media (max-width: 767px) {
  .owc-sponsor-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
}

/* ── 10. Venue page — fix content stacking ── */
@media (max-width: 767px) {
  /* About/image section */
  .about-area .col-lg-6 { flex: 0 0 100% !important; max-width: 100% !important; }
  .about-content.s-about-content.pl-30 { padding-left: 0 !important; margin-top: 24px !important; }
  /* Map / cards section */
  .contact-area { padding-top: 48px !important; padding-bottom: 48px !important; }
  .contact-area .col-lg-6 { flex: 0 0 100% !important; max-width: 100% !important; margin-bottom: 24px; }
  .contact-area .col-sm-6 { flex: 0 0 100% !important; max-width: 100% !important; margin-bottom: 20px; }
  .contact-area .single-address { padding: 24px !important; border-radius: 14px; }
  .contact-area h2 { font-size: 26px !important; }
  /* travel info list */
  .contact-area ul li { font-size: 14px !important; }
}

/* ── 11. Speakers page — bio section stacking ── */
@media (max-width: 767px) {
  /* Speaker card section padding */
  .single-team { margin-bottom: 24px !important; }
  .owc-speaker-bio { padding: 24px 18px !important; }
  /* Music card */
  .owc-music-card { flex-direction: column !important; border-radius: 16px !important; }
  .owc-music-visual { width: 100% !important; min-height: 160px !important; border-radius: 16px 16px 0 0 !important; }
  .owc-music-bio { padding: 24px !important; }
  /* Speaker grid collapse */
  .owc-spk-grid .col-lg-6 { flex: 0 0 100% !important; max-width: 100% !important; }
  /* Speaker photo height */
  .owc-spk-photo, .minister-photo { height: 280px !important; object-fit: cover !important; }
}

/* ── 12. Contact page — registration info + form ── */
@media (max-width: 767px) {
  .reg-info-box { padding: 28px 20px !important; border-radius: 16px !important; }
  .owc-form-wrap { padding: 24px 16px !important; border-radius: 16px !important; }
  .owc-form-wrap h3 { font-size: 20px !important; }
  /* General enquiries cards */
  .col-lg-5.col-md-6 { flex: 0 0 100% !important; max-width: 100% !important; }
}

/* ── 13. Gallery page — fix masonry white gap between years ── */
@media (max-width: 767px) {
  .owc-gallery-masonry { column-count: 2 !important; column-gap: 8px !important; }
  .owc-gallery-card { margin-bottom: 8px !important; border-radius: 10px !important; }
  /* Filter buttons — horizontal scroll pill strip */
  .owc-gallery-filter { padding-bottom: 6px !important; }
  /* Video grid — single column */
  .owc-video-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .owc-video-card { border-radius: 14px !important; }
}

/* ── 14. Homepage hero & countdown tightening ── */
@media (max-width: 767px) {
  .owc-hero__title { font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important; line-height: 1.2 !important; }
  .owc-hero__theme { font-size: 14px !important; padding: 0 12px !important; }
  .owc-hero__cta { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .owc-hero__cta a { width: 100% !important; max-width: 280px !important; justify-content: center !important; }
}

/* ── 15. Homepage promo card — make compact instead of hiding ── */
@media (max-width: 767px) {
  section:has(.owc-promo-card) { display: block !important; }
  .owc-promo-card { padding: 32px 24px !important; border-radius: 18px !important; }
  .owc-promo-content { flex-direction: column !important; gap: 24px !important; }
  .owc-promo-left { min-width: unset !important; }
  .owc-promo-title { font-size: 1.4rem !important; }
  .owc-promo-stats { gap: 12px !important; }
  .owc-promo-stat-num { font-size: 1.6rem !important; }
}

/* ── 16. Event / Schedule tabs — scrollable horizontal ── */
@media (max-width: 767px) {
  .event .nav-tabs { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 8px; padding: 0 16px 10px !important; border-bottom: none !important; }
  .event .nav-tabs::-webkit-scrollbar { display: none !important; }
  .event a.nav-item.nav-link { flex-shrink: 0 !important; font-size: 13px !important; padding: 10px 16px !important; border-radius: 50px !important; border: 1.5px solid rgba(233,30,140,0.3) !important; white-space: nowrap; }
  .event a.nav-item.nav-link.active { background: #e91e8c !important; border-color: #e91e8c !important; color: #fff !important; }
  .event .tab-content { padding-top: 16px !important; }
  .event-list-content { padding: 18px 16px 18px !important; margin-top: 12px !important; }
  .event-list-content h2 { font-size: 16px !important; }
  .event-list-content p { font-size: 13px !important; }
}

/* ── 17. Breadcrumb inner-page banner ── */
@media (max-width: 767px) {
  .breadcrumb-area { min-height: 180px !important; padding-top: 80px !important; padding-bottom: 24px !important; }
  .breadcrumb-title h2 { font-size: 26px !important; letter-spacing: 0 !important; line-height: 1.25 !important; }
  .breadcrumb-title p { font-size: 14px !important; }
  .breadcrumb ol { font-size: 13px !important; }
}

/* ── 18. Mobile CTA button — always above mobile nav ── */
@media (max-width: 767px) {
  body { padding-bottom: 80px !important; }
  .owc-mobile-register {
    bottom: 16px !important;
    padding: 15px 36px !important;
    font-size: 15px !important;
    border-radius: 50px !important;
  }
}

/* ── 19. Counter area stat circles → pill tiles on mobile ── */
@media (max-width: 767px) {
  .counter-area { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* ── 20. Fix any remaining overflow / clip issues ── */
@media (max-width: 767px) {
  .p-relative { overflow: visible !important; }
  [class*="col-"] { word-break: break-word; }
  .text-outline { display: none !important; }
  .section-t { display: none !important; }
  /* Tighter list spacing in info boxes */
  .owc-info-list li, ul.owc-list li { margin-bottom: 10px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIX v3 — Event/Schedule section & remaining blank gaps
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── Schedule: fix nav stacking (old CSS sets display:inline-block) ── */
  .event .nav,
  .event .nav.nav-tabs,
  .event .nav-tabs { display: flex !important; }
  .event .nav-fill .nav-item { margin-bottom: 0 !important; flex: 1 1 0 !important; }
  .event a.nav-item.nav-link {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    padding: 10px 6px !important; font-size: 11px !important;
    border-radius: 0 !important; border: none !important;
    border-bottom: 2px solid transparent !important;
    white-space: normal !important; text-align: center !important;
    line-height: 1.2 !important; gap: 4px !important;
  }
  .event a.nav-item.nav-link.active, .event a.nav-item.nav-link.show {
    background: none !important; color: #e91e8c !important;
    border-bottom-color: #e91e8c !important;
  }
  .event .nav-content strong { font-size: 11px !important; display: block !important; }
  .event .nav-content span { font-size: 10px !important; display: none !important; }
  .event .owc-tab-ico { font-size: 18px !important; margin-right: 0 !important; top: 0 !important; }

  /* ── Schedule: section title margin & section padding ── */
  .event.fix.pt-120.pb-120 { padding-top: 48px !important; padding-bottom: 48px !important; }
  .event .section-title.mb-60 { margin-bottom: 24px !important; }

  /* ── Schedule: event-list-content — remove the 150px padding-bottom ── */
  .event-list-content.fix {
    padding: 18px 14px !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    padding-bottom: 18px !important;
  }
  .event-list-content h2 { font-size: 15px !important; margin-bottom: 6px !important; }
  .event-list-content p { font-size: 13px !important; margin-bottom: 8px !important; }
  .event .user { margin-bottom: 10px !important; }
  .event .user img { width: 40px !important; height: 40px !important; }
  .event .user .title h6 { font-size: 12px !important; }
  .event .col-lg-2 { flex: 0 0 100% !important; max-width: 100% !important; margin-bottom: 0 !important; }

  /* ── Tab content padding ── */
  .event .tab-content { padding: 12px 0 0 !important; }
  .event .tab-content.py-3 { padding-top: 12px !important; padding-bottom: 0 !important; }

  /* ── About section: feature boxes 2-col grid ── */
  #about.about-area .col-lg-6:first-child {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
  }

  /* ── About section: remove the pl-30 padding on mobile ── */
  .about-content.s-about-content.pl-30 { padding-left: 0 !important; }

  /* ── Fix the convener section (between team and event) ── */
  .owc-convener-spotlight {
    grid-template-columns: 110px 1fr !important;
    border-radius: 14px !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .owc-convener-img img {
    height: 100% !important; min-height: 190px !important;
    border-radius: 14px 0 0 14px !important;
    object-position: center top !important;
  }
  .owc-convener-bio { padding: 14px 12px !important; }
  .owc-convener-name { font-size: 0.95rem !important; margin-bottom: 6px !important; }
  .owc-convener-eyebrow { font-size: 8px !important; letter-spacing: 1.5px !important; }
  .owc-convener-titles span { font-size: 10px !important; }
}

/* ══════════════════════════════════════════════════
   OWC 2026 — COMPREHENSIVE MOBILE FIX v2
   Covers all pages at ≤767px
   ══════════════════════════════════════════════════ */

/* ── Global: prevent horizontal overflow on all pages ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after { box-sizing: border-box; }

/* ── All images: never overflow their container ── */
img { max-width: 100%; height: auto; }

/* ════════════════════════════
   MOBILE  ≤ 767px
   ════════════════════════════ */
@media (max-width: 767px) {

  /* ── Prevent any section from causing horizontal scroll ── */
  section, .team-area, .about-area, .contact-area,
  .counter-area, .event, .event.fix, .breadcrumb-area {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  /* ── Watermark text — keep it from overflowing ── */
  .section-t, .team-t {
    overflow: hidden !important;
    max-width: 100% !important;
    pointer-events: none;
  }
  .section-t h2, .team-t h2 {
    font-size: 80px !important;
    white-space: nowrap;
  }

  /* ── Navbar mobile ── */
  .header-area .container { padding: 0 16px !important; }
  .responsive { display: block !important; }

  /* ── Hero section ── */
  .slider-area .slider-bg {
    min-height: auto !important;
    padding: 100px 0 60px !important;
  }
  .slider-content h2, .slider-content h5 {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
    line-height: 1.2 !important;
  }
  .slider-content p { font-size: 14px !important; }

  /* ── Index: Minister / Team cards ── */
  .single-team { margin-bottom: 24px !important; }
  .team-img img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .team-info { padding: 16px !important; }
  .team-info h4 { font-size: 16px !important; }

  /* ── About page: minister image cards ── */
  .owc-minister-card img {
    height: 280px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  /* About page CTA banner */
  .owc-about-cta {
    padding: 36px 22px !important;
    border-radius: 16px !important;
  }
  .owc-about-cta h2 { font-size: 22px !important; }
  .owc-about-cta p { font-size: 14px !important; }
  /* About page story/host section */
  .owc-host-card { padding: 24px 18px !important; }
  /* About page story image */
  .about-img img { width: 100% !important; height: auto !important; margin: 0 !important; }
  /* Remove negative margins on mobile */
  .about-img { margin-left: 0 !important; margin-right: 0 !important; }

  /* ── Venue page ── */
  .venue-map iframe { height: 240px !important; }

  /* ── Contact/Register page ── */
  .owc-form-wrap { padding: 24px 16px !important; border-radius: 12px !important; }
  .contact-area .col-lg-8, .contact-area .col-lg-4 {
    flex: 0 0 100% !important; max-width: 100% !important;
  }
  .reg-info-box { margin-bottom: 24px !important; }

  /* ── Gallery ── */
  .owc-gallery-masonry { column-count: 2 !important; column-gap: 8px !important; }
  .owc-gallery-masonry img { margin-bottom: 8px !important; border-radius: 8px !important; }

  /* ── Counter / Stats section ── */
  .counter-area .col-lg-3 { flex: 0 0 50% !important; max-width: 50% !important; margin-bottom: 24px; }
  .count-icon, .count-text h2 { font-size: 28px !important; }

  /* ── Footer ── */
  .footer-top .col-xl-3,
  .footer-top .col-xl-4 { flex: 0 0 100% !important; max-width: 100% !important; margin-bottom: 28px; }
  .footer-social { margin-top: 12px; }

  /* ── FAQ section ── */
  .owc-faq-section { padding: 32px 20px !important; }

  /* ── Breadcrumb ── */
  .breadcrumb-area { padding: 60px 0 40px !important; }
  .breadcrumb-title h2 { font-size: clamp(1.3rem, 6vw, 1.8rem) !important; }

  /* ── CTA / Theme banner ── */
  .counter-area h2 { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; line-height: 1.25 !important; }
  .counter-area p { font-size: 14px !important; }

  /* ── Fix column stacking ── */
  .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-5, .col-lg-4, .col-lg-3 {
    /* Bootstrap already handles this, but ensure no fixed widths override */
    max-width: 100%;
  }

  /* ── Speakers page: collapse padding ── */
  .owc-ps-collapse { padding: 18px 18px 24px !important; }

  /* ── Row gutters on small screens ── */
  .row { margin-left: -12px !important; margin-right: -12px !important; }
  .row > [class*="col-"] { padding-left: 12px !important; padding-right: 12px !important; }
}

/* ════════════════════════════
   TABLET  768px – 991px
   ════════════════════════════ */
@media (min-width: 768px) and (max-width: 991px) {

  /* Minister portrait cards on about page */
  .owc-minister-card img { height: 320px !important; }

  /* Speaker cards */
  .owc-ps-photo { width: 280px !important; }
  .owc-ps-bio { padding: 32px 30px !important; }

  /* About CTA */
  .owc-about-cta { padding: 48px 32px !important; }
  .owc-about-cta h2 { font-size: 28px !important; }
}

/* ════════════════════════════
   LARGE DESKTOP ≥ 1440px
   ════════════════════════════ */
@media (min-width: 1440px) {
  .owc-ps-photo { width: 440px; }
  .owc-ps-bio { padding: 60px 64px; }
}
