/*
 * Theme Name: Marmon Medical Manufacturing
 * Description: WordPress theme for Marmon Medical Manufacturing migration from a static site to a dynamic WordPress site.
 * Author: Real Art
*/

/* RESETS */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
button {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

/******************************/
/* GLOBALS */
/******************************/
* {
  font-family: "Montserrat", sans-serif;
}
p,
li,
a {
  color: #5b6770;
  font-size: 20px;
  line-height: 33px;
  font-weight: 400;
}
a {
  font-weight: 700;
}
h1 {
  color: #0e193d;
  font-size: 48px;
  line-height: 104%;
  font-weight: 300;
}
h2 {
  color: #0e193d;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
button {
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
}
.white {
  color: #fff;
}
.ltBlue {
  color: #1079f0;
}
.blue {
  color: #0e193d;
}
@media (max-width: 1200px) {
  p,
  li,
  a {
    font-size: 20px;
    line-height: 33px;
  }
  h1 {
    font-size: 36px;
    line-height: 104%;
  }
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
  button {
    font-size: 20px;
    line-height: 100%;
  }
}
@media (max-width: 782px) {
  p,
  li,
  a {
    font-size: 16px;
    line-height: 24px;
  }
  h1 {
    font-size: 34px;
    line-height: 100%;
  }
}

/******************************/
/* NAVIGATION */
/******************************/
.nav {
  padding: 20px 0;
}
.n_Wrapper {
  width: calc(100% - 200px);
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: fit-content(100%) fit-content(100%);
  justify-content: space-between;
  align-items: center;
}
.nw_Logo {
  width: 275px;
  position: relative;
  z-index: 2;
}
.nwl_Desktop {
  display: flex;
  gap: 40px;
}
.nwl_Mobile {
  display: none;
}
.nwld_Link {
  text-decoration: none;
  font-weight: 400;
  font-size: 26px;
  color: #0032a0;
}
.nwld_Link:hover {
  color: #1079f0;
}
@media (max-width: 1200px) {
  .nw_Logo {
    width: 225px;
  }
  .nwl_Desktop {
    gap: 20px;
  }
  /* .nwld_Link {
    font-size: 18px;
  } */
}
@media (max-width: 1000px) {
  .nwld_Link {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .nw_Logo {
    width: 200px;
  }

  .nwld_Link {
    font-size: 18px;
  }

  .nwl_Desktop {
    gap: 15px;
  }
}
@media (max-width: 782px) {
  .n_Wrapper {
    width: calc(100% - 40px);
  }
  .nwl_Desktop {
    display: none;
  }
  .nwl_Mobile {
    display: block;
  }
  .nw_Logo {
    width: 200px;
  }
}

.header {
  transition: transform 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
}

.header--hidden {
  transform: translateY(-100%);
}


/******************************/
/* MOBILE MENU */
/******************************/
.mobileMenu {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  transition: left 0.5s cubic-bezier(0.04, 1.1, 0.74, 0.99);
}
.mobileMenu.open {
  left: 0%;
}
.mm_Wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 40px;
}
.mmw_Close {
  position: absolute;
  height: fit-content;
  width: fit-content;
  top: 20px;
  right: 40px;
}
.mmw_Links {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(3, fit-content(100%));
  grid-gap: 40px;
  align-content: center;
}
.mmwl_Link {
  font-size: 40px;
  text-decoration: none;
  color: #0032a0;
  font-weight: 300;
}

.mmwl_Link:hover {
  color: #1079f0;
}

/******************************/
/* HERO SECT */
/******************************/
.heroSection {
  position: relative;
  width: 100%;
  height: 700px;
}
.hs_Background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs_Logo {
  position: absolute;
  height: 350px;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 1200px) {
  .heroSection {
    height: 600px;
  }
}
@media (max-width: 1000px) {
  .hs_Logo {
    height: 250px;
  }
  .heroSection {
    height: 500px;
  }
}
@media (max-width: 782px) {
  .hs_Logo {
    height: 175px;
  }
  .heroSection {
    height: 300px;
  }
}

/******************************/
/* ABOUT SECT */
/******************************/
.aboutSection {
  margin: 100px 0;
}
.as_Wrapper {
  width: calc(100% - 200px);
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.asw_Divider {
  border-bottom: solid 1px #0e193d;
  width: 80px;
}
.asw_Copy a {
  color: #1079f0;
  text-decoration: none;
  border-bottom: solid 1px #1079f0;
}
.asw_Copy a:hover {
  color: #0e193d;
  border-bottom: solid 1px #0e193d;
}

@media (max-width: 1200px) {
  .as_Wrapper {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
}
@media (max-width: 782px) {
  .as_Wrapper {
    width: calc(100% - 40px);
  }
  .asw_Headline span {
    display: none;
  }
}
/******************************/
/* PARTNER SECT */
/******************************/
.partnerSect {
  padding: 100px 0;
  background-color: #f6f6f6;
}
.ps_Wrapper {
  width: calc(100% - 200px);
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.psw_Grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pswg_Item {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  padding: 20px;
  gap: 20px;
}
.pswg_Item:nth-child(n + 2) {
  border-left: solid 1px #0e193d;
}
.pswgi_IconWrapper {
  width: 185px;
  height: 125px;
}
.pswgiiw_Icon {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .pswgi_IconWrapper {
    width: 140px;
    height: 90px;
  }
}
@media (max-width: 782px) {
  .ps_Wrapper {
    width: calc(100% - 40px);
  }
  .psw_Headline span {
    display: none;
  }
  .psw_Grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .pswg_Item {
    padding: 40px 0;
  }
  .pswg_Item:nth-child(n + 2) {
    border-top: solid 1px #0e193d;
    border-left: none;
  }
  .pswgi_IconWrapper {
    width: 185px;
    height: 125px;
  }
  .pswgi_Subhead {
    font-size: 20px;
    line-height: 24px;
  }
}

/******************************/
/* SOLUTIONS SECT */
/******************************/
.solutionsSect {
  margin: 100px 0;
}
.ss_Wrapper {
  width: calc(100% - 200px);
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(auto, 500px) minmax(500px, auto);
  grid-gap: 100px;
}
.ssw_Copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ssw_AccordionSect {
  width: 100%;
  border-top: solid 1px #0e193d;
  border-bottom: solid 1px #0e193d;
  height: fit-content;
}
.sswas_Accordion:nth-child(n + 2) {
  border-top: solid 1px #0e193d;
}
.sswas_Accordion.active .icon_2 {
  display: none;
}
.sswasa_Top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.sswasa_Bot {
  box-sizing: border-box;
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.3s cubic-bezier(0.39, 0.77, 0.65, 0.99);
  padding: 0 20px;
}
.sswasab_SpacerTop {
  height: 20px;
}
.sswasab_Column {
  width: 100%;
  -webkit-column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-count: 2;
  -moz-column-gap: 40px;
  column-count: 2;
  column-gap: 30px;
}
.sswasabc_Bullet {
  display: list-item;
  page-break-inside: avoid;
  break-inside: avoid-column;
  margin-left: 15px;
  color: #0e193d;
}
.sswasab_SpacerBot {
  height: 50px;
}

@media (max-width: 1200px) {
  .ss_Wrapper {
    grid-template-columns: minmax(auto, 500px) minmax(400px, auto);
  }
}
@media (max-width: 1200px) {
  .ss_Wrapper {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 782px) {
  .ss_Wrapper {
    width: calc(100% - 40px);
  }
  .sswasab_Column {
    width: 100%;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/******************************/
/* FORM SECT */
/******************************/
.formSect {
  background-color: #0e193d;
  color: #fff;
  padding: 100px 0;
}
.fs_Wrapper {
  width: calc(100% - 200px);
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 400px 550px;
  justify-content: space-between;
}
.fsw_Copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fswc_Body {
  color: #fff;
  text-wrap: balance;
}
.fswc_Support {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #1079f0;
  margin-top: 15px;
}
.fswc_Support .fswc_Support_phone a {
  color: #1079f0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}
.fswc_Support .fswc_Support_phone a:hover {
  color: #fff;
}
.fswc_ContactWrapper {
  margin-top: 40px;
}
.fswccw_Contact {
  text-decoration: none;
}
.fswccw_Contact:hover {
  color: white;
}
.fsw_FormWrapper {
  position: relative;
}
.fswfw_Form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  transition: opacity 0.3s ease-out;
}
.fswfw_Loader {
  height: fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  transform-origin: center center;
  animation: formLoader 2s;
  animation-iteration-count: infinite;
}
.fsw_FormWrapper.loading .fswfw_Loader {
  opacity: 1;
}
.fsw_FormWrapper.success .fswfw_Loader {
  opacity: 0;
}
@keyframes formLoader {
  100% {
    transform: rotate(360deg);
  }
}
.fsw_FormWrapper.loading .fswfw_Form {
  opacity: 0;
}
.fsw_FormWrapper.success .fswfw_Form {
  display: none;
}
.fswfw_Success {
  display: none;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 20px;
}
.fsw_FormWrapper.success .fswfw_Success {
  display: flex;
}

.fswfw_Field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  position: relative;
}
.fswfw_Field.half {
  width: calc(50% - 10px);
}
.fswfwf_Error {
  display: none;
  color: #1079f0;
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 10px;
}
.fswfwf_Error.error {
  display: block;
}
.fswfwf_Error.textArea {
  top: 35px;
}
.fswfwf_Input {
  background-color: transparent;
  border: none;
  border-bottom: solid 1px white;
  padding: 15px;
  font-size: 18px;
  color: white;
  width: 100%;
  box-sizing: border-box;
}
.fswfwf_TextArea {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background-color: rgba(217, 217, 217, 0.2);
  border: none;
  border-bottom: solid 1px white;
  resize: none;
  color: white;
}
.fswfwf_Input::placeholder,
.fswfwf_TextArea::placeholder {
  color: white;
}
.fswfwf_Input.error,
.fswfwf_TextArea.error {
  border-bottom: solid 1px #1079f0;
}
.fswfwf_Input.error::placeholder,
.fswfwf_TextArea.error::placeholder {
  color: #1079f0;
}
.fswfwf_FileInputReplace {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
}
.fswfwf_FileInputReplace:hover p {
  color: #1079f0;
}
.fswfwf_FileInputReplace:hover path {
  stroke: #1079f0;
}
.fswfwf_FileInputReminderText {
  font-size: 12px;
  margin-top: -15px;
}
.fswfwf_FileInput {
  display: none;
}
.fswfwf_SubmitBtn {
  margin-top: 20px;
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 15px;
  color: #1079f0;
  border: solid 1px #1079f0;
  border-radius: 40px;
  background: none;
  box-shadow: none;
  cursor: pointer;
  font-weight: 700;
}
.fswfwf_SubmitBtn:hover {
  background-color: #1079f0;
  color: white;
}
.fswfwf_SubmitBtn:hover path {
  stroke: white;
}

.wpcf7-not-valid {
  border-bottom: 1px solid #1079f0;
}

.wpcf7-not-valid::placeholder {
  color: #1079f0;
}

.wpcf7-not-valid-tip {
  color: #1079f0;
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 10px;
}

.textAreaField .wpcf7-not-valid-tip {
  top: 35px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  margin: 0;
  padding: 15px 0 0 0;
}

@media (max-width: 1200px) {
  .fs_Wrapper {
    grid-template-columns: 350px 450px;
  }
}
@media (max-width: 1000px) {
  .fs_Wrapper {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .fswc_ContactWrapper {
    margin-top: 0;
  }
  .fswfwf_SubmitBtn {
    gap: 120px;
  }
}
@media (max-width: 782px) {
  .fs_Wrapper {
    width: calc(100% - 40px);
  }
  .fswfw_Field.half {
    width: 100%;
  }
  .fswfwf_SubmitBtn {
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }
}

/******************************/
/* FOOTER SECT */
/******************************/
.footer {
  background-color: #1079f0;
  padding: 40px 0;
}
.f_Wrapper {
  width: calc(100% - 200px);
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, fit-content(100%));
  justify-content: space-between;
  align-items: center;
  color: white;
}
.fw_Link {
  font-weight: 400;
}
@media (max-width: 1000px) {
  .f_Wrapper {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .f_Wrapper {
    width: calc(100% - 40px);
  }
}

/******************************/
/* PRIVACY POLICY */
/******************************/
.privacyPolicy {
  margin: 100px 0;
}
.pp_Wrapper {
  width: calc(100% - 200px);
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pp_Wrapper a {
  color: #1079f0;
  font-weight: 400;
}
@media (max-width: 782px) {
  .pp_Wrapper {
    width: calc(100% - 40px);
  }
}

/******************************/
/* ARCHIVE PAGE */
/******************************/

.container {
  width: calc(100% - 200px);
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.archive-featured .container {
  align-items: flex-start;
  text-align: left;
}

.archive-featured .archive-featured-title {
  font-weight: 300;
  margin-bottom: 40px;
  margin-top: 40px;
}

@media (max-width: 1000px) {
  .archive-featured .archive-featured-title {
    font-size: 34px;
  }
}

@media (max-width: 782px) {
  .container {
    width: calc(100% - 40px);
  }
}
/******************************/
/* SWIPER STYLES */
/******************************/

.archive-hero {
  overflow: hidden;
}

.blog .swiper {
  width: 100%;
  position: relative;
  overflow: visible !important;
}

/* .swiper-wrapper {
  width: calc(100% - 200px);
} */

.archive-hero .swiper-button-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.archive-hero .swiper-button-prev,
.archive-hero .swiper-button-next {
  all: unset;
  width: 40px;
  height: 40px;
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.archive-hero .swiper-button-prev:hover,
.archive-hero .swiper-button-next:hover {
  color: rgba(3, 22, 51, 1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.blog .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.blog .swiper-slide img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1);
}

@media (max-width: 1000px) {
  .blog .swiper-slide img {
    height: 350px;
  }
}

.blog .swiper-slide-active .hero-article::after {
  opacity: 1;
}

.blog .hero-article {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
  width: 100%;
}

.blog .hero-article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(15, 120, 240, 1); */
  background: RGBA(15, 120, 240, 1);
  background: linear-gradient(
    180deg,
    rgba(15, 120, 240, 1) 20%,
    rgba(3, 22, 51, 1) 80%
  );
  mix-blend-mode: multiply;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
  z-index: 1;
}

.blog .hero-content {
  position: absolute;
  inset: 0;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.blog .hero-content .asw_Divider {
  border-bottom: solid 1px #fff;
  width: 75px;
  margin-bottom: 15px;
}

@media (min-width: 1000px) {
  .blog .hero-meta {
    max-width: 70%;
  }
}

.blog .hero-title {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: left;
}

.blog .hero-title a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  line-height: 100%;
}

.blog .hero-author-date {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #fff;
}

.blog .hero-author {
  font-weight: 600;
}

.blog .hero-date {
  font-weight: 400;
}

.blog .hero-excerpt {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}

.blog .hero-cta .read-more {
  font-size: 22px;
  line-height: 1;
  width: 225px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, background 0.3s ease;
}

.blog .hero-cta .read-more .label {
  flex: 1;
}

.blog .hero-cta .read-more .arrow {
  /* display: inline-block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg); */
  transition: all 0.3s ease;
}

.blog .hero-cta .read-more .arrow svg path {
  transition: all 0.3s ease;
}

.blog .hero-cta .read-more:hover {
  background: #fff;
  color: #003b7a;
}

.blog .hero-cta .read-more:hover .arrow svg path {
  stroke: #003b7a;
}

@media (max-width: 1000px) {
  .blog .hero-cta .read-more {
    width: 200px;
    font-size: 20px;
  }
}

@media (max-width: 782px) {
  .blog .archive-hero .container {
    width: 100%;
  }
  .blog .swiper {
    overflow: hidden !important;
  }
  .blog .swiper-slide img {
    object-fit: none;
  }

  .blog .hero-content {
    padding: 2rem 20px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0rem;
  }

  .blog .hero-content .hero-meta {
    max-width: 70%;
  }

  .blog .hero-content .hero-excerpt {
    display: none;
  }

  .blog .archive-hero .swiper-button-wrapper {
    width: calc(100% - 40px);
    margin: 2rem auto 0 auto;
  }
}

@media (max-width: 600px) {
  .blog .hero-content {
    gap: 0;
  }

  .blog .hero-content .hero-meta {
    max-width: 100%;
  }

  .blog .hero-content .hero-excerpt {
    display: none;
  }

  .blog .hero-cta {
    width: 100%;
    /* margin-top: 1rem; */
  }

  .blog .hero-cta .read-more {
    width: 100%;
  }
}

/******************************/
/* ARCHIVE INTRO */
/******************************/

.blog .archive-intro {
  margin: 70px 0 100px 0;
}

.blog .archive-intro .archive-intro-title {
  color: #0e193d;
  font-size: 48px;
  line-height: 104%;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .blog .archive-intro .container {
    gap: 20px;
    text-align: left;
    align-items: start;
  }
}

@media (max-width: 1000px) {
  /* .blog .archive-intro .container {
    text-align: left;
    align-items: start;
  } */

  .blog .archive-intro .archive-intro-title {
    font-size: 36px;
    /* margin-bottom: 20px; */
  }
}

/******************************/
/* ARCHIVE POSTS */
/******************************/

.blog .archive-posts {
  margin: 100px 0;
}

.blog .archive-posts-container {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 60px;
  align-items: start;
  text-align: left;
}

@media (max-width: 1000px) {
  .blog .archive-posts-container {
    grid-template-columns: 1fr;
  }

  .blog .archive-related-wrapper {
    max-width: 100%;
  }
}

/* .archive-related-wrapper {
  flex: 0 0 275px; 
  max-width: 275px;
  padding-right: 60px;
} */

.blog .archive-related-title {
  color: #0e193d;
  font-size: 48px;
  line-height: 104%;
  font-weight: 300;
}

.blog .archive-related-description {
  font-size: 20px;
  line-height: 1.5;
  color: #5b6770;
  margin-top: 15px;
}

@media (max-width: 1000px) {
  .blog .archive-related-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .blog .archive-related-description {
    font-size: 16px;
    line-height: 22px;
  }
}

.blog .archive-posts-grid {
  flex: 1; /* takes up remaining space */
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.blog .tease-post {
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  gap: 30px;
  padding: 30px 0 30px 25px;
  border-bottom: 1px solid #5b6770;
  align-items: start;
}

.blog .tease-post:first-child {
  border-top: 1px solid #5b6770;
}

.blog .tease-post:hover {
  background-color: #f6f6f6;
}

.blog .tease-post-thumbnail {
  /* aspect-ratio: 180 / 130; */
  aspect-ratio: 97/130;
  width: 100%;
  max-width: 240px;
  min-width: 90px;
  overflow: hidden;
  /* flex-shrink: 0; */
}

@media (min-width: 1200px) {
  .blog .tease-post-thumbnail {
    aspect-ratio: 180 / 130;
  }
}

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

.blog .tease-post-title {
  margin: 0 0 0.5rem;
  font-size: 20px;
  font-weight: 700;
  color: #0e193d;
}

.blog .tease-post-title a {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
  transition: all 0.15s ease;
}

.blog .tease-post-title a:hover {
  text-decoration: underline;
}

.blog .tease-post-excerpt {
  margin: 0 0 1rem;
  color: #0e193d;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

.blog .tease-post-meta {
  color: #0e193d;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
}

.blog .tease-post-arrow {
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.blog .tease-post-arrow a {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  padding: 0 15px 0 0;
  transition: all 0.3s ease;
}

/* .blog .tease-post:hover .tease-post-arrow a {
  transform: translateX(5px);
} */

@media (max-width: 600px) {
  .blog .tease-post-meta {
    flex-direction: column;
    gap: 0;
  }

  .blog .tease-post-meta .tease-post-divider {
    display: none;
  }

  .blog .tease-post {
    gap: 15px;
    padding: 30px 0 30px 15px;
  }

  .blog .tease-post-arrow svg {
    max-width: none;
  }
}

/******************************/
/* ARCHIVE PAGINATION */
/******************************/

.blog .pagination-block {
  text-align: center;
  margin-top: 2rem;
}

.blog .pgn_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .pgn_list li {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .pgn_list a,
.blog .pgn_list span {
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.4em 0.75em;
  line-height: 1.2;
  font-size: 15px;
  color: #003b7a;
  text-decoration: none;
  transition: all 0.15s ease;
}

.blog .pgn_list .pgn_first a,
.blog .pgn_list .pgn_prev a,
.blog .pgn_list .pgn_next a,
.blog .pgn_list .pgn_last a,
.blog .pgn_list .pgn_first span,
.blog .pgn_list .pgn_prev span,
.blog .pgn_list .pgn_next span,
.blog .pgn_list .pgn_last span {
  font-size: 18px;
}

/* Prevent hover effect on disabled items */
.blog .pgn_list li:not(.disabled) a:hover,
.blog .pgn_list li:not(.disabled) span:hover {
  background-color: #003b7a;
  color: #fff;
}

.blog .pgn_list .current span,
.blog .pgn_list .current a {
  font-weight: bold;
  background-color: #003b7a;
  color: #fff;
}

.blog .pgn_list .disabled span {
  opacity: 0.5;
  cursor: not-allowed;
}

/******************************/
/* BLOG PAGE (SINGLE POST) */
/******************************/

/******************************/
/* BLOG HERO SECTION */
/******************************/

.single-post .blog-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.single-post .blog-hero-image-wrapper {
  position: relative;
  width: 100%;
}

.single-post .blog-hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 120, 240, 1);
  background: linear-gradient(
    180deg,
    rgba(15, 120, 240, 1) 20%,
    rgba(3, 22, 51, 1) 80%
  );
  mix-blend-mode: multiply;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.single-post .blog-hero-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1);
}

.single-post .blog-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 2rem;
  color: white;
  max-width: 1200px;
}

.single-post .blog-hero-content.container {
  gap: 20px;
}

.single-post .blog-hero-content .asw_Divider {
  border-bottom: solid 1px #fff;
}

.single-post .blog-hero-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.single-post .blog-hero-content .hero-author-date {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #fff;
}

.single-post .blog-hero-content .hero-author {
  font-weight: 700;
  margin-right: 25px;
}

.single-post .blog-hero-content .hero-date {
  font-weight: 400;
}

.single-post .blog-hero-content .hero-divider {
  display: none;
}

/* @media (max-width: 1000px) {
  .single-post .blog-hero-title {
    font-size: 36px;
  }
} */

@media (max-width: 1000px) {
  .single-post .blog-hero-title {
    font-size: 36px;
  }

  .single-post .blog-hero-image {
    height: 350px;
    aspect-ratio: unset;
    object-fit: none;
  }
}

@media (max-width: 782px) {
  .single-post .blog-hero-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .single-post .blog-hero-content .hero-author-date {
    font-size: 16px;
  }

  .single-post .blog-hero-content .hero-author {
    margin-right: 0px;
  }

  .single-post .single-content-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .single-post .blog-hero-content .hero-divider {
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .single-post .blog-hero-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .single-post .blog-hero-content .hero-author-date {
    font-size: 15px;
  }
}

/******************************/
/* BLOG CONTENT SECTION */
/******************************/

.single-post .single-content-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.single-post .single-content-section.container {
  align-items: stretch;
}

.single-post .single-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  text-align: left;
  align-items: start;
}

.single-post .single-article {
  max-width: 700px;
  width: 100%;
}

.single-post .single-article h1 {
  /* margin-top: 1rem; */
  margin-bottom: 1rem;
}

.single-post .single-article h2 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 1rem;
}

.single-post .single-article h3 {
  color: #0e193d;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 1rem;
}

.single-post .single-article p {
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 1rem;
}

.single-post .single-article a {
  color: #1079f0;
  text-decoration: none;
  border-bottom: solid 1px #1079f0;
}

.single-post .single-article a:hover {
  color: #0e193d;
  border-bottom: solid 1px #0e193d;
}

.single-post .single-article ul,
.single-post .single-article ol {
  margin-bottom: 1rem;
}

.single-post .single-article blockquote {
  padding: 3.5rem 0;
  margin: 3rem 0;
  border-top: 1px solid #5b6770;
  border-bottom: 1px solid #5b6770;
  color: #0e193d;
}

.single-post .single-article blockquote p {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.12;
  color: #0e193d;
}

.single-post .single-article blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 20px;
  line-height: 33px;
  font-style: normal;
  color: #5b6770;
}

.single-post .single-article figcaption {
  font-size: 15px;
  color: #5b6770;
  margin-top: 25px;
}

.single-post .single-article hr {
  border: none;
  border-top: 1px solid #5b6770;
  margin: 2rem 0;
}

.single-post .sidebar-heading {
  color: #0e193d;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.single-post .sidebar-post {
  display: grid;
  grid-template-columns: 100px 1fr 15px;
  gap: 30px;
  border-bottom: 1px solid #5b6770;
  padding: 30px 5px 30px 15px;
  align-items: start;
}

.single-post .sidebar-post .tease-post-divider {
  display: none;
}

.single-post .sidebar-post:first-of-type {
  border-top: 1px solid #5b6770;
}

.single-post .sidebar-post:hover {
  background-color: #f6f6f6;
}

.single-post .sidebar-post .tease-post-thumbnail {
  width: 100px;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-post .sidebar-post .tease-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post .tease-post-title {
  font-size: 1rem;
  margin-bottom: 15px;
}

.single-post .tease-post-title a {
  color: #0e193d;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2;
  transition: all 0.15s ease;
}
.single-post .tease-post-title a:hover {
  color: #0032a0;
}

.single-post .tease-post-meta {
  font-size: 15px;
  color: #666;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
}

.single-post .single-sidebar {
  position: sticky;
  top: 4rem;
}

.single-post .single-sidebar .tease-post-arrow {
  display: flex;
  align-items: start;
  height: 100%;
}
.single-post .single-sidebar .tease-post-arrow a {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* .single-post .single-sidebar .tease-post:hover .tease-post-arrow a {
  transform: translateX(5px);
} */

@media (max-width: 1200px) {
  /* .single-post .single-article h1 {
    font-size: 20px;
  } */
  .single-post .single-article blockquote p {
    font-size: 26px;
  }
}

@media (max-width: 1000px) {
  .single-post .single-content-grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .single-post .sidebar-post {
    gap: 30px;
  }

  .single-post .single-article p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 900px) {
  .single-post .single-content-section {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}

@media (max-width: 782px) {
  .single-post .single-content-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .single-post .single-article h3 {
    font-size: 26px;
  }

  .single-post .single-article blockquote {
    padding: 2.5rem 0;
    margin: 2rem 0;
  }
}

@media (max-width: 600px) {
  .single-post .sidebar-post {
    gap: 10px;
  }
}
