﻿/* 
   BANNER CALLOUTS (4 Boxes in a Row, Two‐Line Titles, Larger Font & Padding)
   Updated so .c1 has the same purple color as the top header
*/

/*.banner-callout {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}*/

.sticky-bar-container { display:flex;flex-flow: row nowrap; width:100%; max-width:1800px; padding:6px 15px 0 15px; }

.logo-text  { width:38%; text-align:left; }

.sticky-bar-address  { width:62%; text-align:left; }

.logo-text h3 { color:#fff; font-size:18px; margin:0px; }

.sticky-bar-address p  { font-size:20px; }

.banner-callout {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 40px 40px;
	background-color: transparent;
	box-sizing: border-box;
	gap: 20px;
	margin-top: 300px !important;
	flex-flow: row nowrap;
}



.banner-callout li {
  list-style-type: none;
  margin: 20px;
}

.banner-callout ul li::before {
  content: "";
  display: none !important;
  opacity: 0 !important;
}

/* 
   Border Colors
   c1 updated to the same purple as the top bar 
*/
.c1 { border: 10px solid #5A3E85; }  /* Purple (matches header) */
.c2 { border: 10px solid #857969; }  /* Gray/Brown (PMS 404)      */
.c3 { border: 10px solid #3A6D7E; }  /* Teal example             */
.c4 { border: 10px solid #A56530; }  /* Brown (PMS 138)          */

/*
   .banner-callouts-top
   Dimensions & padding for each white box 
*/
/*.banner-callouts-top {
  display: block !important;
  width: 370px;             
  background: #fff !important;
  padding: 40px 10px !important;   Extra padding for a larger box 
  color: #000 !important;
  text-align: center !important;
  font-family: "ivypresto-display", serif;
  line-height: 1.2;
  list-style: none !important;
}*/
.banner-callouts-top {
	background-color: #ffffff;
	padding: 30px 0 !important;
	text-align: center;
	width: 100%;
	max-width: 260px;
	box-sizing: border-box;
	font-family: "ivypresto-display", serif;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-callouts-top.c4 {
  padding: 46px 0 !important;
}
/* 
   Two‐line Titles:
   line1: smaller
   line2: larger
*/
.banner-callouts-top .line1 {
  display: block;
  font-size: 24px; 
  font-weight: 400; 
  margin-bottom: 5px;
}

.banner-callouts-top .line2 {
  display: block;
  font-size: 24px;
  font-weight: 600; 
}

/*
   Responsive Breakpoint at 64em (~1024px):
   Boxes wrap & shrink for smaller screens
*/
@media only screen and (max-width: 64em) {

.sticky-bar-container { flex-wrap: wrap; padding-top:0px; }

.logo-text  { width:100%; text-align:center; }

.sticky-bar-address  { width:100%; text-align:center; }


  .banner-callout {
    flex-wrap: wrap;
  }
  .banner-callouts-top {
    width: 80% !important;
    margin: 20px auto !important;
    padding: 30px 10px !important;
  }
  .banner-callout li {
    margin: 15px auto;
  }
}
