/*
Theme Name: Utmost Lite
Theme URI:
Author: CodeGauge
Description: Ultra lightweight, SEO-friendly WordPress theme.
Version: 1.0.0
Text Domain: utmost-lite
*/
*{box-sizing:border-box;}
html,body{height:100%; margin:0;padding:0;}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#111;background:#fff;}
a{color:inherit;text-decoration:none;}
body p { font-size:15px; line-height:26px; color: #2c2f34;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Open Sans", Arial, sans-serif; font-weight:400; }

.container{max-width:1200px;margin-inline:auto;padding-inline:16px;}
.wrap { min-height: 80vh; }
.no-scroll{overflow:hidden;}
main { margin-bottom:80px !important; }
.padding-tb-30 { padding: 30px 0; }
.padding-tb-35 { padding: 35px 0; }
.padding-tb-50 { padding: 50px 0; }
.padding-tb-70 { padding: 70px 0; }
.padding-top-20 { padding-top:20px !important; }
.padding-top-30 { padding-top:30px !important; }
.padding-top-50 { padding-top:50px !important; }
.text-left p { text-align: left !important; }

.img_center p img { display: block; max-width: 100%; margin: 0 auto; margin-top:50px; }
.site-wrapper {
  min-height: 81.2vh;          /* full viewport height */
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1 1 auto;
  min-height: 0;               /* ✅ critical */                 /* this pushes footer down */
}


/* ===== Top strip ===== */
.top-strip{
 height: 3px;
    width: 100%;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(to right, #f76570 0%, #f76570 8%, #f3a46b 8%, #f3a46b 16%, #f3a46b 16%, #ffd205 16%, #ffd205 24%, #ffd205 24%, #1bbc9b 24%, #1bbc9b 25%, #1bbc9b 32%, #14b9d5 32%, #14b9d5 40%, #c377e4 40%, #c377e4 48%, #f76570 48%, #f76570 56%, #f3a46b 56%, #f3a46b 64%, #ffd205 64%, #ffd205 72%, #1bbc9b 72%, #1bbc9b 80%, #14b9d5 80%, #14b9d5 80%, #14b9d5 89%, #c377e4 89%, #c377e4 100%);
}

/* ===== Header ===== */
.site-header{background:#fff; box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:47px;
  gap:12px;
  position:relative;
}

/* Logo */
.logo{display:flex;align-items:center;justify-content:left; /* flex:1; */ }
.logo-text{font-weight:600; font-family: "Poppins", sans-serif; font-size:50px;letter-spacing:.3px;color:#08a63a;line-height:50px;}


/* Buttons */
.icon-btn{
  appearance:none;border:0;background:transparent;
  width:44px;height:44px;border-radius:10px;
  display:grid;place-items:center;
  cursor:pointer;font-size:20px;
}
.icon-btn:hover{background:#f2f4f7;}

/* IMPORTANT: hidden on desktop */
.burger{display:none;}
.search-btn{display:none;}

/* ===== Desktop Nav ===== */


.nav-desktop{
  display:flex;
  align-items:stretch;
  gap:0;
  white-space:nowrap;
}
.nav-desktop ul{ padding:0px; margin:0px;}
.nav-desktop ul li{ list-style:none; display:inline-block;}
.nav-desktop ul li a{
  display:flex;
  align-items:center;
  height:50px;
  padding:0 16px;
  font-size:13px;
  font-weight:600;
  color:#222;
}
.nav-desktop ul li a:hover{background:#05b548;color:#fff;}
.nav-desktop ul li a.active{background:#05b548;color:#fff;}
.nav-desktop .nav-list li.current-menu-item > a,
.nav-desktop .nav-list li.current_page_item > a {
  background-color: #1fa84f; /* same green */
  color: #fff;
}

/* Optional: smooth transition */
.nav-desktop .nav-list li a {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-desktop .nav-list li.current-menu-item:after > a,
.nav-desktop .nav-list li.current_page_item:after > a { 
content: "";
        width: 20px;
        height: 2px;
        position: absolute;
        margin-top: 17px;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        background: #2c2f34;
        transition: 0.3s;
}
	

/* ===== Sticky menu (desktop only) ===== */
.sticky-menu{
  position:fixed;
  top:0;
  left:0; right:0;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom:1px solid #e8ebf0;
  transform:translateY(-120%);
  transition:transform .18s ease;
  z-index:999;
}
.sticky-menu.show{transform:translateY(0);}
.sticky-inner{min-height:60px;display:flex;align-items:stretch;}
.nav-sticky{display:flex;align-items:stretch;gap:0;white-space:nowrap;overflow:auto;}
.nav-sticky ul { margin:0px; padding:0px; }
.nav-sticky li { display:inline; list-style:none; } 
.nav-sticky .nav-link{
  display:flex;align-items:center;
  height:60px;
  padding:0 15px;
  font-size:13px;
  font-weight:600;
  color:#222;
}
.nav-sticky .nav-link:hover{background:#05b548; color:#fff;}
.nav-sticky .nav-link.active{background:#05b548; color:#fff;}

/* ===== Overlay + Offcanvas ===== */
.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;visibility:hidden;
  transition:.18s ease;
  z-index:998;
}
.overlay.show{opacity:1;visibility:visible;}

.offcanvas{
  position:fixed;
  top:0; left:0;
  width:min(350px, 86vw);
  height:100vh;
  background:#161619;
  color:#fff;
  transform:translateX(-105%);
  transition:transform .2s ease;
  z-index:999;
  padding:16px 25px;
}
.offcanvas.open{transform:translateX(0);}

.offcanvas-top{display:flex;flex-direction:column;gap:14px;}
.offcanvas .close{align-self:flex-end;color:#ff3b30;font-size:22px; margin: 0 auto;}
.offcanvas .close img{ width:18px; height:18px; } 
.offcanvas-search{
  display:flex;gap:10px;align-items:center;
  border-radius:60px;
  padding: 2px 10px 2px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  rgb(0 0 0 / 5%)
}
.offcanvas-search input{
  border:0;outline:0;
  background:transparent;
  color:#fff;
  font-size:14px;
  height:35px;
}
.offcanvas-search .icon-btn{width:38px;height:38px;border-radius:12px;color:#fff;}
.offcanvas-search .icon-btn:hover{background:rgba(255,255,255,.08);}

.offcanvas-links{margin-top:12px;display:flex;flex-direction:column;}
.offcanvas-links ul { margin:0px; padding:0px; }
.offcanvas-links li { list-style:none; }
.offcanvas-links a{
  border-bottom:1px solid rgba(255,255,255,.08);
  display: block;
    padding: 15px 50px 15px 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.offcanvas-links a:hover{background:rgba(255,255,255,.06);}

/* Section spacing */
.top-content{
  padding-top:30px;
  text-align:center;
}

/* H1 (approx from screenshot) */
.top-content h1{
  margin: 0 0 0.5em;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:41px;
  line-height:1.4;
  font-weight:600;
  color:#2c2f34; /* sampled from screenshot */
  font-family: "Poppins", sans-serif;
}

.top-content h2{
  margin: 0 0 0.5em;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:40px;
  line-height:1.4;
  font-weight:600;
  color:#2c2f34; /* sampled from screenshot */
  font-family: "Poppins", sans-serif;
}


.top-content p strong{ font-weight:600; }
.top-content02 h2 {
  margin: 0 0 0.5em;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:27px;
  line-height:1.4;
  font-weight:600;
  color:#2c2f34; /* sampled from screenshot */
  font-family: "Poppins", sans-serif;
	}
.top-content02 h3 {
margin: 0 0 0.5em;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:23px;
  line-height:1.4;
  font-weight:600;
  color:#2c2f34; /* sampled from screenshot */
  font-family: "Poppins", sans-serif;
	}
/* H2 */
.tc-h2{
  margin: 0 0 0.5em;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:23px;
  line-height:1.4;
  font-weight:600;
  color:#2c2f34;
}
.tc-h1, .tc-h2
 {
    font-family: "Poppins", sans-serif;
}

/* Responsive */
@media (max-width:768px){
  .tc-h1{font-size:34px;}
  .tc-p{font-size:14px;line-height:1.7;}
  .tc-h2{font-size:22px;}
}



/*==================
Agenda Section style 
===================*/

.agenda{max-width:1200px;margin:20px auto;padding:0px;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;}
.agenda-box{
  border:1px solid #cfd6df;
  border-radius:6px;
  overflow:hidden;
  max-height:500px;       /* fixed box height */
  overflow-y:auto;        /* scroll inside */
  background:#fff;
}
.agenda-day{
  background: linear-gradient(135deg, #57B230 0%, #57B230 100%);
  color:#fff;
  font-weight:600;
  text-align:center;
  padding:12px;
  font-size: 13.5px;
}

/* accordion item borders */
.acc-item{border-top:1px solid #8f949a;}
.acc-item:first-of-type{border-top:0;}

/* HEAD ROW: full bar clickable */
.acc-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  /* background:#fff; */
  cursor:pointer;
  user-select:none;
}

/* hover like your screenshot */

/* .acc-head:hover{background-image: -webkit-linear-gradient(top, rgb(148, 204, 124), rgb(148, 204, 124)); border-bottom:1px solid #404040;} */


.acc-item:hover {background-image: -webkit-linear-gradient(top, rgb(148, 204, 124), rgb(148, 204, 124)); transition: 0.15s;}


/* open state = green bar */
.acc-item.is-open .acc-head{background:#9bd27b; border-bottom:1px solid #404040;}

/* time pill */
.time{
  min-width:52px;
  text-align:center;
  font-weight:700;
  font-size:12px;
  /* padding:4px 8px; */
  border:1px solid #cfd6df;
  border-radius:6px;
  background:#fff;
}
.flag{width:26px;text-align:center;}

/* title link inside head */
.match-link{
  flex:1;
  color:#111;
  font-weight:700;
  font-size:13px;
  text-decoration:none;
}
/* keep title readable on green bar */
.acc-item.is-open .match-link{color:#0b2a0f;}
.match-link:hover{text-decoration:underline;}
.match-title {color:#404040; font-family: arial, Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #404040;
    font-size: 13px;
    text-shadow: 0 0 0 #000; }

/* body */
.acc-body{
  background:#fff;
  border-top:1px solid #cfd6df;
    max-height:0;
  overflow:hidden;
  opacity:0;
  transition:
    max-height .35s ease,
    opacity .25s ease;
}
.acc-item.is-open .acc-body{
  opacity:1;
}
/* CHANNEL ROWS: full width clickable links */
.ch-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-top:1px solid #edf1f6;
  text-decoration:none;
  color:#1b1b1b;
}
.ch-row:first-child{border-top:0;}

/* hover like dropdown-content-hover.png */
.ch-row:hover{background:#f7f9fc;}
.ch-row:hover .ch-name{color:#0b57ff;} /* text color changes on hover */

.play{width:15px; opacity: 0.50; font-size: 11px; margin-left: 20px;}
.ch-name{flex:1;
    width: 100%;
    font-family: arial, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #789;}

/* quality pill */
.q{
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid #cfd6df;
  background:#fff;
  color:#111;
  white-space:nowrap;
}
.q-hi{border-color:#222;}



/*=======================
Agenda Section style end 
==========================*/

/*=========================
Home Cards Section styling
===========================*/

/* container */
.container{max-width:1200px;margin:0 auto;padding:0 16px;}

/* section title like screenshot */
.home_cards{padding:20px 0 28px;}
.red_title{
  text-align:center;
  margin:0 0 25px;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:24px;
  line-height:1.4;
  font-weight:600;
  color:#cf2e2e;
  font-family: "Poppins", sans-serif;
}

/* grid */
.chgrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:50px;
}

/* card */
.chcard{
  background:#fff;
  border-radius:12px;
  box-shadow: 3px 8px 12px 0px #00000070;
  padding:20px 18px;
  text-align:center;
  min-height:350px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* logo clickable area */
.chlogo{
  display:flex;
  align-items:center;
  justify-content:center;
  height:150px;            /* large clickable zone */
  border-radius:10px;
}
.chlogo img{
  max-width:100%;
  width:auto;
  height:auto;
}

/* description */
.chdesc{
  margin:8px 0 16px;
  font-size:13px;
  line-height:1.7;
  color:#666;
  min-height:44px;
}

/* green button */
.chbtn{
  align-self:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  padding:12px 16px;
  background:#1f5f1b;
  border:1px solid #0f2f0d;
  border-radius:6px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Open Sans", Arial, sans-serif;
}
.chbtn:hover{filter:brightness(.95);}
/*================== 
FAQ section styling
====================*/

.container{max-width:1200px;margin:0 auto;padding:0 16px;}

.faq{
  background:#fff;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}
.faq h2{
  text-align:center;
  margin:0 0 25px;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:24px;
  line-height:1.4;
  font-weight:600;
  color:#cf2e2e;
  font-family: "Poppins", sans-serif;
}
.faq h3{
  margin:0 0 8px;
  font-size:23px;
  line-height:1.4;
  font-weight:600;
  color:#2f3338;
  font-family: "Poppins", sans-serif;
  margin-top:25px;
}

.faq p{
  margin:0;
  font-size:15px;
  line-height:26px;
  color:#3f444a;
}

.faq a{
  /* color:#05b548;          green keyword like screenshot */
  background: linear-gradient(135deg, #05b548, #05b548);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight:600;
  text-decoration:none;
}

.faq a:hover{text-decoration:underline;}
.wrap-content { margin-top:30px; margin-bottom:70px; }
.wrap-content h1{ text-align:center; padding-bottom:15px; }
.wrap-content p{ margin-bottom:25px; line-height:26px;}


@media (max-width:768px){
  .faq-q{font-size:22px;}
  .faq-a{font-size:13.5px;line-height:1.8;}
}

/*====================== 
FAQ section styling end
=======================*/

/* responsive */
@media (max-width:1100px){
  .chgrid{grid-template-columns:repeat(3, minmax(0,1fr));}
}
@media (max-width:840px){
  .chgrid{grid-template-columns:repeat(2, minmax(0,1fr));}
}
@media (max-width:520px){
  .chgrid{grid-template-columns:1fr;}
}

/*==============================
Home Cards Section styling end
================================*/


/* ===== Responsive switch at 991px ===== */
@media (max-width:991px){
  /* .logo{flex:0;} */
  .logo-text{font-size:30px;}

  /* show icons on mobile only */
  .burger{display:grid;}
  .search-btn{display:grid;}

  /* hide desktop nav */
  .nav-desktop{display:none;}

  /* sticky menu only for desktop */
  .sticky-menu{display:none;}
}

@media (max-width:420px){
  .logo-text{font-size:24px;}
}

/*==============
Footer styling
===============*/

.site-footer{
  background:linear-gradient(180deg,#1b1c1f,#0f1012);
  color:#fff;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:13px;
  padding:20px 0; 
  line-height:32px;
}
.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
/* Left text */
.footer-left{white-space:nowrap;}

/* Right menu (ul/li) */
.footer-menu{
  list-style:none;
  display:flex;
  gap:10px;
  margin:0;
  padding:0;
}
.footer-menu li{margin:0;}
.footer-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:400;
}
.footer-menu a:hover{text-decoration:none; color:#05b548; transition: 0.15s; }
.ch-row:hover .ch-name, .ch-row:hover .q, .ch-row:hover .play  { color:#2e9afe  !important;}
/* Mobile */
@media (max-width:600px){
  .footer-wrap{
    flex-direction:column;
    gap:8px;
    padding:10px 0;
  }
}

/*=================
Footer styling end
===================*/

/*================
Scroll Up Styling
================*/
/* Scroll to top button */
#scrollTopBtn{
  position:fixed;
  right:18px;
  bottom:18px;
  width:35px;
  height:35px;
  border:none;
  border-radius:0px;
  background:#11a83a; /* green like screenshot */
  color:#fff;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;

  z-index:9999;
}

/* show state */
#scrollTopBtn.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.scrollicon img { width:13px; height:13px; }

/* hover */
#scrollTopBtn:hover{
  background:#0e8f32;
}

/* mobile safe */
@media (max-width:480px){
  #scrollTopBtn{
    right:14px;
    bottom:14px;
    width:40px;
    height:40px;
    font-size:18px;
  }
}

/*===================================
Channel Ifram script styling end
====================================*/


 .up-playerbox {
     max-width: 1200px;
     margin: 0 auto;
 }

 .up-iframeWrap {
     position: relative;
     width: 100%;
     padding-top: 56.25%;
     background: #000;
     overflow: hidden;
 }

 .up-iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border: 0;
 }

 .up-options {
     margin-top: 14px;
 }

 .up-optHead {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
     margin-bottom: 10px;
 }

 .up-hoverUrl {
     font-size: 13px;
     opacity: .85;
     word-break: break-all
 }

 .up-openBtn {
     margin-left: auto;
     font-size: 13px;
     padding: 8px 10px;
     border-radius: 10px;
     background: #111;
     color: #fff;
     text-decoration: none;
 }

 .up-btnRow {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
	 margin-top:25px;
 }

 .up-btn {
     border: 0;
     cursor: pointer;
     border-radius: 12px;
     padding: 10px 26px;
     font-weight: 400;
     background: #111;
	 font-size:16px;
	 line-height:26px;
     color: #18c45c;
     transition: transform .08s ease, opacity .12s ease;
	 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Open Sans", Arial, sans-serif;
 }

 .up-btn:hover {
     color:#008316;
 }

 .up-btn.is-active {
     opacity: 1;
 }

 
/* UL layout (optional but recommended) */
.nav-desktop .nav-list, .nav-sticky .nav-list{
  display:flex;
  gap: 10px;
  align-items:center;
  list-style:none;
  margin:0;
  padding:0;
}

/* each LI */
.nav-desktop .nav-list > li, .nav-sticky .nav-list li{
  position: relative; /* for dash positioning */
}

/* links */
.nav-desktop .nav-list > li > a, .nav-sticky .nav-list > li > a {
  display:block;
  padding: 17px 16px;
  border-radius: 0px;       /* pill look */
  text-decoration:none;
  font-weight:600;
  color:#111;
  line-height: 1;
  background: transparent;
  transition: background-color .2s ease, color .2s ease;
}
.nav-sticky .nav-list > li > a { padding:22px 16px !important;  }

/* hover */
.nav-desktop .nav-list > li > a:hover, .nav-sticky .nav-list > li > a:hover{
  background:#05b548;
  color:#fff;
}

/* ACTIVE background (same as hover) */
.nav-desktop .nav-list > li.current-menu-item > a,
.nav-desktop .nav-list > li.current_page_item > a{
  background:#05b548;
  color:#fff;
}

.nav-sticky .nav-list > li.current-menu-item > a,
.nav-sticky .nav-list > li.current_page_item > a{
  background:#05b548;
  color:#fff;
} 

/* dash underline (attached to LI, not A) */
.nav-desktop .nav-list > li.current-menu-item::after,
.nav-desktop .nav-list > li.current_page_item::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:7px;              /* adjust this */
  width:20px;
  height:2px;
  background:#2c2f34;;
  border-radius:2px;
}

/* dash underline (attached to LI, not A) */
.nav-sticky .nav-list > li.current-menu-item::after,
.nav-sticky .nav-list > li.current_page_item::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:7px;              /* adjust this */
  width:20px;
  height:2px;
  background:#2c2f34;;
  border-radius:2px;
}

/*=================
Search Styling
==============*/

/* ===== CSS Only Search Overlay ===== */

.search-toggle {
  display: none;
}

/* overlay base (hidden) */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

/* dark background */
.search-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
}

/* open state */
.search-toggle:checked~.search-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* inner box */
.search-overlay-inner {
  position: relative;
  max-width: 900px;
  margin: 70px auto 0;
  padding: 0 20px;
  z-index: 2;
  transform: translateY(-12px);
  transition: transform .25s ease;
}

.search-toggle:checked~.search-overlay .search-overlay-inner {
  transform: translateY(0);
}

/* close button */
.search-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 3;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* WP default search form styling */
.search-overlay form.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-overlay .search-field {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 0;
  outline: none;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 18px;
}

.search-overlay .search-field::placeholder {
  color: rgba(255, 255, 255, .8);
}

.search-overlay .search-submit {
  height: 48px;
  padding: 0 16px;
  border: 0;
  cursor: pointer;
}
.texthead03 {
    margin: 0 0 0.5em;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 600;
    color: #2c2f34;
}