/* Full Page Callout */
.full-callout-wrap { overflow: hidden; position: relative; background-color: hsl(var(--siteColor4)); }
.full-callout { overflow: hidden; display: flex; flex-wrap: wrap; width: 100%; height: 100%; box-shadow: var(--dropShadow), var(--dropShadow); color: hsl(var(--white)); text-align: center; }
.full-callout-img { flex-grow: 1; object-fit: cover; width: 100%; height: 100%; }
.full-callout-info { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; font-size: 1.25rem; text-align: left; }
.full-callout-info .title { font-family: var(--siteFont1), sans-serif; font-size: 2rem; font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.25; text-align: center; text-transform: uppercase; font-weight: var(--wMedium); text-shadow: 0.125rem 0.125rem 0.125rem hsla(var(--black), 0.1); }
.full-callout-list { list-style: none; width: 100%; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; padding: 0; }
.full-callout-list li { flex-grow: 1; flex-basis: 50%; max-width: 15rem; display: flex; flex-direction: column; justify-content: center; position: relative; padding: 1rem; line-height: 1.25; text-align: center; }
.full-callout-list li:after { content: ""; display: none; width: auto; height: 3rem; position: absolute; top: 50%; left: 100%; transform: translate(0, -50%); border-right: 0.125rem solid hsl(var(--white)); border-bottom: 0; }
.full-callout-list li:first-child:after { display: block; }
.full-callout-list li span { font-size: 3rem; }
.full-callout .btn { overflow: hidden; position: relative; z-index: 1; margin: 2.5rem auto 0; padding: 1.5rem 3.5rem; background-color: hsl(var(--white)); border-radius: var(--borderRadiusPill); font-size: 1.5rem; color: hsl(var(--siteColor4)); text-transform: capitalize; transition: all 0.25s; }
.full-callout .btn:hover { background-color: hsl(var(--siteColor1)); color: hsl(var(--white)); }
/*
.full-callout .btn:after { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1; background: hsl(46, 97.3%, 71.4%); background: linear-gradient(180deg, hsl(46, 97.3%, 71.4%) 0%, hsl(46, 95%, 92.2%) 100%); transition: all 0.25s; }
.full-callout .btn:hover:after { height: 200%; }
*/
@media (min-width: 768px) {
  .full-callout-list li { flex-basis: 0; }
  .full-callout-list li:after { display: block; }
  .full-callout-list li:last-child:after { display: none; }
}
@media (min-width: 1025px) {
  .full-callout-img-wrap { max-width: 50%; flex-basis: 50%; }
  .full-callout-info { max-width: 50%; flex-basis: 50%; }
}
@media (min-width: 1200px) {
  .full-callout-info { padding: 2rem 4rem; }
  .full-callout-list li:after { content: ""; display: block; width: auto; height: 3rem; position: absolute; top: 50%; left: 100%; transform: translate(0, -50%); border-right: 0.125rem solid hsl(var(--white)); border-bottom: 0; }
  .full-callout-list li:last-child:after { display: none; }
}
@media (min-width: 1400px) {
  .full-callout-list li { padding: 1rem 2rem; }
}