/*
Theme Name: CPFC24
Version: 1.5
Author: Levi @ Pixel & Hammer
Author URI: http://pixelandhammer.com/
*/
/* Header styles */
:root{
  --link-color: #272323;
  --donate: #F28D1F;
  --header-height: 105px;
	--accent-color: #F28D1F;	
}

*{box-sizing:border-box}
body{margin:0;}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid rgba(39,35,35,0.06);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  height:var(--header-height);
  display:flex;
  align-items:center;
  padding:0.5rem 1rem;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
}
.logo-box{
  width:105px;
  height:100px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 1px 2px rgba(0,0,0,0.04);
  border-radius:6px;
  overflow:hidden;
  flex-shrink:0;
}
.logo{
  width:100px;
  height:100px;
  object-fit:contain;
}

.main-nav{
  margin-left:12px;
  flex:1;
}
.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:0.5rem;
justify-content: end;
}
.nav-item{
  position:relative;
}
.nav-link{
  background:transparent;
  border:0;
  color:var(--link-color);
  font-size:16px;
  padding:0.6rem 0.8rem;
  cursor:pointer;
	color: #272323;
    font-family: "Lato", sans-serif;
    font-weight: 700;
  display:flex;
  align-items:center;
  gap:0.4rem;
}
.nav-link:focus{outline:2px solid rgba(242,141,31,0.2);outline-offset:2px}

.chev{
  display:inline-block;
  transition:transform 180ms ease;
  font-size:12px;
}

.has-dropdown .dropdown{
  position:absolute;
  left:0;
  top:calc(100% + 8px);
  min-width:180px;
  background:#fff;
	display: none;
  border:1px solid rgba(39,35,35,0.06);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  border-radius:8px;
  padding:0.25rem 0;
  opacity:0;
  transform-origin:top left;
  transform:translateY(-6px) scaleY(0.98);
  transition:opacity 180ms ease, transform 200ms cubic-bezier(.2,.9,.2,1);
}
.has-dropdown.open .dropdown{
  display:block;
  opacity:1;
  transform:translateY(0) scaleY(1);
}
.has-dropdown.open .chev{
  transform:rotate(180deg);
}
.dropdown li{padding:0}
.dropdown a{
  display:block;
  padding:0.5rem 1rem;
  color:var(--link-color);
  text-decoration:none;
  font-size:15px;
	color: #272323;
    font-family: "Lato", sans-serif;
    font-weight: 500;
}
.dropdown a:hover{background:rgba(39,35,35,0.03)}

ul li.donate-item.nav-item a {
    background-color: #f28e20;
	color: white;
}
.donate-btn{
  display:inline-block;
  background:var(--donate);
  color:#fff;
  padding:0.5rem 0.9rem;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
	 font-family: "Lato", sans-serif;
    font-weight: 700;
}

/* Small screens - stacked */
@media (max-width:800px){
  .header-inner{padding:0.5rem}
  .nav-list{gap:0.25rem}
  .donate-item{margin-left:0}
}

/* Hamburger (hidden on desktop) */
.hamburger{
  display:none;
  background:transparent;
  border:0;
  padding:0.4rem;
  margin-left:8px;
  cursor:pointer;
}
.hamburger-box{display:inline-block;width:28px;height:18px;position:relative}
.hamburger-inner{position:absolute;top:50%;left:0;right:0;height:2px;background:var(--link-color);transform:translateY(-50%);transition:all 200ms ease}
.hamburger-inner::before,.hamburger-inner::after{content:'';position:absolute;left:0;right:0;height:2px;background:var(--link-color);}
.hamburger-inner::before{top:-8px}
.hamburger-inner::after{bottom:-8px}
.hamburger[aria-expanded="true"] .hamburger-inner{background:transparent}
.hamburger[aria-expanded="true"] .hamburger-inner::before{transform:translateY(8px) rotate(45deg)}
.hamburger[aria-expanded="true"] .hamburger-inner::after{transform:translateY(-8px) rotate(-45deg)}

/* Mobile menu panel */
.menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.4);opacity:0;visibility:hidden;transition:opacity 220ms ease,visibility 220ms;z-index:999}
.menu-overlay.is-visible{opacity:1;visibility:visible}

.mobile-menu{position:fixed;top:0;right:-320px;width:320px;height:100vh;background:#fff;box-shadow:-14px 0 30px rgba(0,0,0,0.12);z-index:1000;transition:right 300ms cubic-bezier(.2,.9,.2,1);display:flex;flex-direction:column}
.mobile-menu-inner{padding:1rem;}
.mobile-menu .mobile-close{background:transparent;border:0;font-size:22px;padding:0.25rem 0.5rem;cursor:pointer}
.mobile-nav-list{list-style:none;padding:1rem 0;margin:0;display:flex;flex-direction:column;gap:0.25rem}
.mobile-item .mobile-link{background:transparent;border:0;padding:0.6rem 0;display:flex;align-items:center;justify-content:space-between;font-size:16px;color:var(--link-color);cursor:pointer}
.mobile-item .dropdown{position:static;box-shadow:none;border:0;padding-left:0  ;display:none}
.mobile-item .dropdown{opacity:0;max-height:0;overflow:hidden;transition:opacity 180ms ease,max-height 220ms ease;padding-left:0}
.mobile-item.open .dropdown{display:block;opacity:1;max-height:400px;padding-left:0.5rem}
.mobile-item .dropdown a{padding:0.5rem 0 0.5rem 1rem}

/* When menu open */
.mobile-menu.is-open{right:0}

/* Show hamburger and hide inline nav on small screens */
@media (max-width:800px){
  .hamburger{display:inline-block}
  .main-nav{display:none}
}

/* Prevent body scroll when menu open (toggle .menu-open on body via JS) */
body.menu-open{overflow:hidden}


.aligncenter { text-align:center; }

.alignleft { float:left; margin-right:30px; margin-bottom:30px; }

.alignright { float:right; margin-left:30px; margin-bottom:30px; }

.threecols h2 {
    text-align: center;
    color: #262626;
    font-family: clarendon-urw, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    margin: 15px auto 10px;
	max-width: fit-content;
	border-bottom: 5px solid #F28D1F;
	padding: 0 15px 10px;
}

section.threecols .container.wizy {
    display: flex;
    flex-wrap: nowrap;
}

.threecols {
	padding: 40px 0;
}

section.threecols .container.wizy div {
    padding: 50px 25px;
    text-align: left;
}


html .threecols .wizy img {
    max-width: 80px;
    height: auto;
    margin: 0;
}

html footer .container div.col.first p.phone {
    text-align: left;
}

footer .container div.col.first {
    text-align: left !important;
}

footer .first.col h2 {
    font-family: clarendon-urw, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 29px;
    margin: 15px 0 10px;
    color: white;
    line-height: 35px;
}

form#gform_2 input, form#gform_3 input, form#gform_4 input, form#gform_5 input, form#gform_6 input {
    border-bottom: 4px solid #F28D1F;
}

html header div.logo img {
    max-width: 130px;
}

.mobilemen {
	display: none;
}
a.menu-btn.mobilemen {
    text-align: center;
    color: white;
    font-family: clarendon-urw, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    margin: 15px auto 10px;
    max-width: fit-content;
    padding: 10px;
    background-color: #F28D1F;
}

html header nav .bottom ul li a {
    font-size: 17px;
    padding: 5px;

}

html body .wizy form .gform_body div .gfield label, html body .wizy form .gform_body div .gfield legend {
    visibility: visible;
    height: initial;
    color: white;
}

@media (max-width: 1020px) {
	section.threecols .container.wizy {
    display: block;
    flex-wrap: wrap;
}
	.mobilemen {
		display: inline-block;
	}
	
	section.threecols .container.wizy div {
    padding: 20px 15px;
    text-align: left;
		width: 100%;
}
}


@media (max-width: 700px) {
	html body header div.logo {
		width: 151px;
	}
	
	html header div.logo img {
    max-width: 130px;
    display: block;
    height: auto;
}
	
	html body header nav {
    	width: 60%;
	}
	
}


ul li.nav-item a {
    background: transparent;
    border: 0;
    color: var(--link-color);
    font-size: 16px;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    color: #272323;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-list .current-menu-item > a,
.nav-list .current-menu-parent > a,
.nav-list .current-menu-ancestor > a {
  color: var(--accent-color);
  font-weight: 700;
  position: relative;
}

.nav-list .current-menu-item > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
}
/* ===== Home Hero ===== */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  width: 100%;
  background-color: #0a1f44; /* fallback */
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate; /* keeps overlay stacking sane */
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgb(2 71 107 / 85%);
    z-index: 0;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2rem, 6vw, 6rem) 0; /* vertical rhythm */
}

.home-hero__copy {
  max-width: 720px;
  margin-left: clamp(1rem, 6vw, 8rem); /* left-anchored block */
  margin-right: clamp(1rem, 4vw, 4rem);
  color: #fff;
  text-wrap: balance;
}

.home-hero__copy h2 {
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    font-family: clarendon-urw, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 31px;
    max-width: fit-content;
}

.home-hero__copy p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    padding: 10px 0 20px;
    line-height: 30px;
}

.btn.btn-primary {
  display: inline-block;
	background-color: #f28e20;
    color: white;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
	font-size: 16px;
    padding: 0.6rem 0.8rem;
	font-family: "Lato", sans-serif;
    font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus-visible {
  opacity: 0.92;
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 55vh;
  }
  .home-hero__copy {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}


html body .threecols .wizy img {
    max-width: 80px;
    height: auto;
    margin: auto;
}


section.threecols.three .container.wizy div {
    padding: 50px 25px;
    text-align: left;
    width: 33.333%;
}

.zigzag .container div ul {
    margin: 0 0 0 20px !important;
}

.zigzag .container div ul li {
    padding: 0;
}

@media (max-width: 800px) {
    section.threecols .container.wizy div {
        width: 100% !important;
    }
}




/* ===== Footer (Balanced Layout, Light Theme, Orange Button) ===== */
.site-footer {
  background: #f2f2f2;
  color: #262626;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
}

.site-footer a {
  color: #262626;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Layout */
.site-footer .footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(480px, 3fr);
  align-items: start;
  justify-content: center; /* centers total grid in container */
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  max-width: 1200px;
  margin: 0 auto; /* centers whole footer block */
}

/* Brand section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-logo img {
  width: 240px;
  height: auto;
  display: block;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0.1);
  transition: filter 0.2s ease;
}
.footer-social a:hover img {
  filter: brightness(0);
}

/* Contact + Button */
.footer-contact .phone {
  margin: 0.25rem 0 0.5rem;
}
.footer-contact .phone a {
  font-weight: 600;
  color: #262626;
}
.footer-contact .button.orange {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background-color: #f28e20;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  font-family: "Lato", sans-serif;
  transition: background 0.2s ease, transform 0.15s ease;
}
.footer-contact .button.orange:hover,
.footer-contact .button.orange:focus-visible {
  background-color: #e27908;
  transform: translateY(-1px);
}

/* Right columns area */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center; /* centers all columns as a block */
  text-align: left; /* keep column copy left-aligned */
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 800px; /* keeps them tidy and visually balanced */
  margin: 0 auto;
}
.footer-col {
  line-height: 1.55;
  width: 100%;
  max-width: 240px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
    margin: 0.35rem 0;
    list-style: disc;
}
.footer-col a {
  opacity: 0.95;
}
.footer-col a:hover {
  opacity: 1;
  color: #000;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.9rem 0;
  background: #e6e6e6;
  text-align: center;
}
.footer-bottom .copyright {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  color: #262626;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    text-align: left;
  }
}
@media (max-width: 680px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .footer-social img {
    width: 24px;
    height: 24px;
  }
}



html a.button, html button.button, html html body div .tribe-events-widget-events-list__view-more a, html .gform_button {
    background-color: #f28e20;
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 0.6rem 0.8rem;
}

html body .container {
    max-width: 960px;
}

.people-table {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  border-collapse: collapse;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-align: left;
}

.people-table th,
.people-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
}

.people-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.people-table th {
  background-color: #f2f2f2;
  font-weight: 400;
}

.people-table {
  display: block;
  overflow-x: auto;
}

section.employ {
    padding: 50px 25px;
    text-align: center;
    background-color: #0082c4;
	  font-family: "Lato", sans-serif;
  font-weight: 400;
	display: flex;
	flex-wrap: none;
	align-items: center;
	
}

.employ .emp {
    background-color: white;
    width: 100%;
    max-width: 590px;
    margin: 15px auto;
    padding: 50px 30px 50px 130px;
    position: relative;
    text-align: left;
}

.employ .emp span {
    width: 120px;
    height: 100%;
    background-size: cover;
    background-position: top;
    position: absolute;
    left: 0;
    top: 0;
}

.emp h3 {
    display: inline-block;
    margin: 0 20px 0 0;
}
@media (max-width: 680px) {
	.emp h3 {
    display: block;
    margin: 0 0 20px 0;
}
}

html body .wizy table {
    margin: 30px auto !important;
}

.employ h2 {
    color: white;
    font-family: clarendon-urw, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    margin: 15px 0 50px;
}

html .wizy ul li ul {
    margin: 0;
    list-style: revert;
    padding-left: 30px;
}

html .wizy img.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

section.onecols {
    padding: 45px 0;
}

.emp a {
    display: block;
    padding: 11px 0 0;
}

.venue {
    color: #0082c4;
    font-family: clarendon-urw, serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    margin: 15px 0 10px;
}

/* ===== Sub Header ===== */
.sub-header {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 3rem 1rem;
}

.sub-header.multiply::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 71, 107, 0.85);
}

.sub-header h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.8rem, 2vw + 1rem, 3rem);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Layout ===== */
html body .blog-layout.container {
    max-width: 1400px;
	padding: 40px 25px;
}

/* Two-column page: 70/30 split */
.blog-layout {
  display: grid !important; /* ensure grid wins over rogue styles */
  grid-template-columns: 70% 30%;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

/* Stack only on small screens */
@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* Main column wrapper (not a grid) */
.blog-main {
  display: block;
  min-width: 0;
}

/* Posts grid (cards only) */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 1280px) {
  .posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .posts-grid { grid-template-columns: 1fr; }
}

/* ===== Post Card ===== */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.post-card:hover,
.post-card:has(a:focus-visible) {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.post-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f2f2f2, #e9e9e9);
  aspect-ratio: 16 / 9;
}

.post-card__body {
  padding: 1rem 1rem 1.25rem;
}

.post-card__title {
  font-size: clamp(1.1rem, 1.2vw + 0.9rem, 1.4rem);
  line-height: 1.25;
  margin: 0 0 0.25rem;
	font-family: "Lato", sans-serif;
}

.post-card__title a {
  text-decoration: none;
	font-family: "Lato", sans-serif;
}
.post-card__title a:hover,
.post-card__title a:focus-visible { text-decoration: underline; }

.post-card__date {
  display: inline-block;
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 0.5rem;
	font-family: "Lato", sans-serif;
}

.post-card__excerpt { margin: 0.25rem 0 0.75rem; }

.post-card__more {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: center;
    background-color: #00817A;
    color: white;
    padding: 10px;
    margin-top: 15px;
}
.post-card__more:hover,
.post-card__more:focus-visible { text-decoration: underline; }

/* ===== Pagination (full width, outside grid) ===== */
.blog-pagination {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
	font-family: "Lato", sans-serif;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  text-decoration: none;
}

.blog-pagination .page-numbers.current {
  font-weight: 700;
}

/* ===== Sidebar (NOT sticky) ===== */
.blog-sidebar {
  align-self: start;
  min-width: 0;
	font-family: "Lato", sans-serif;
	
	
}
.sidebar-section + .sidebar-section { margin-top: 2rem; }

.sidebar-section__title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #0082c4;
}

.sidebar-list,
.sidebar-tags {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li a,
.sidebar-tags li a {
  display: inline-block;
  padding: 0.35rem 0;
  text-decoration: none;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
	font-family: "Lato", sans-serif;
}

.sidebar-tags li a {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  font-size: 0.875rem;
	font-family: "Lato", sans-serif;
}

/* ===== Focus ===== */
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ===== Sidebar Search Form ===== */
.sidebar-section form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0.5rem 0;
}

.sidebar-section form input[type="text"] {
  flex: 1;
  padding: 0.6rem 0.9rem;
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px 0 0 8px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-section form input[type="text"]:focus {
  border-color: #0e4c92;
  box-shadow: 0 0 0 3px rgba(14,76,146,0.15);
}

.sidebar-section form input[type="submit"] {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0e4c92;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.sidebar-section form input[type="submit"]:hover,
.sidebar-section form input[type="submit"]:focus {
  background-color: #0c3f7a;
}

.sidebar-section form input[type="submit"]:active {
  transform: scale(0.98);
}

/* Mobile stacking */
@media (max-width: 600px) {
  .sidebar-section form {
    flex-direction: column;
    align-items: stretch;
  }
	
	html .wizy img.alignleft {
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
    display: block;
}

  .sidebar-section form input[type="text"],
  .sidebar-section form input[type="submit"] {
    border-radius: 8px;
  }

  .sidebar-section form input[type="submit"] {
    margin-top: 0.5rem;
  }
}

/* Optional placeholder style */
.sidebar-section form input[type="text"]::placeholder {
  color: rgba(0,0,0,0.45);
  font-style: italic;
}

.mobile-nav-list li ul.dropdown {
    z-index: 1;
}

html body a:hover {
    opacity: 1;
}

li.button a.nav-link:hover, .btn.btn-primary:hover, .button:hover {
    background-color: #00498f;
    color: white;
}

