/*
 Theme Name:   Astra Child
 Template:     astra
*/
:root {
  --pnw-color-primary: #2965b4;
  --pnw-color-secondary: #0d499f;
  --pnw-color-tertiary: #e0e8f5;
  --pnw-color-background: white;
  --pnw-card-radius: 15px;
  --pnw-shadow-md: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/*
 Theme Name:   Astra Child
 Template:     astra
*/
/*
 Theme Name:   Astra Child
 Template:     astra
*/
/*
 Theme Name:   Astra Child
 Template:     astra
*/
/* hentry causes bottom margin gaps in pages with background colors */
.hentry {
  margin: 0;
}

/* UL indentation */
ul.hl-list {
  padding-left: 1.5rem;
}

/*
 Theme Name:   Astra Child
 Template:     astra
*/
.pnw-icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2965b4;
  color: #fff;
}
.pnw-icon-circle__svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

/*
 Theme Name:   Astra Child
 Template:     astra
*/
.pnw-btn .wp-block-button__link {
  display: inline-block;
  width: auto;
  padding: 0.7rem 1.6rem;
  border: 3px solid #111;
  border-radius: 8px;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: #0d499f;
  color: white;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pnw-btn .wp-block-button__link:hover {
  background: #2965b4;
  color: #111;
}

/*
 Theme Name:   Astra Child
 Template:     astra
*/
/* This is a custom style for the Media & Text block to create a consistent 400px height with cropping. */
/* override the gap in the Media-Text box */
.entry-content .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 1rem;
}

.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 0 0 0;
}

.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  padding: 0 0 0 1rem;
  overflow-x: hidden;
}

/* The media container: acts as the 400px "window" */
.pnw-media-text .wp-block-media-text__media {
  height: 300px; /* fixed height for cropping */
  max-height: 400px;
  overflow: hidden; /* hide anything that sticks out */
  display: block; /* make sure it's a block element */
}

/* The image fills that box and gets cropped as needed */
.pnw-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 100%; /* fill the 400px height */
  object-fit: cover; /* IMPORTANT: crop instead of squish */
  object-position: 50% 50%; /* or adjust to taste */
  display: block;
}

@media (max-width: 720px) {
  .pnw-media-text .wp-block-media-text__media {
    max-height: 400px;
  }
  .entry-content .wp-block-media-text .wp-block-media-text__content,
  .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content,
  .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    padding: 0;
  }
  .ast-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .hide-media-mobile.wp-block-media-text > .wp-block-media-text__media {
    display: none;
  }
}
/*
 Theme Name:   Astra Child
 Template:     astra
*/
/* Put field and button on one line */
.wpforms-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpforms-form .wpforms-field-container {
  flex: 1;
}

/* Prevent button from stretching */
.wpforms-form .wpforms-submit-container {
  width: auto;
  margin: 0;
}

.wpforms-container input.wpforms-field-medium {
  max-width: 100%;
}

.wpforms-container .wpforms-submit-container {
  padding: 0;
  position: relative;
}

.wpforms-container .wpforms-field {
  padding: 0;
}

/*
 Theme Name:   Astra Child
 Template:     astra
*/
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  background: #e0e8f5;
  border-radius: 1.5rem;
  overflow: hidden;
}

.feature-strip {
  gap: 0 !important;
}

.feature-strip > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.feature-strip__item {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
}
.feature-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
}

@media (max-width: 900px) {
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-strip__item::after {
    display: none;
  }
  .feature-strip__item:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
  }
  .feature-strip__item:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 0;
    width: 70%;
    height: 1px;
  }
}
@media (max-width: 520px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .feature-strip__item::after {
    display: none !important;
  }
  .feature-strip__item::before {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 0;
    width: 70%;
    height: 1px;
  }
  .feature-strip__item:last-child::before {
    display: none;
  }
}
/*
 Theme Name:   Astra Child
 Template:     astra
*/
/*
 Theme Name:   Astra Child
 Template:     astra
*/
/*
 Theme Name:   Astra Child
 Template:     astra
*/
.pnw-contact-outer {
  transform: translateY(-80px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.36);
}

.pnw-contact-form {
  flex-wrap: wrap;
  flex-direction: column;
}

.pnw-contact-form .wpforms-form {
  flex-wrap: wrap;
  align-items: end;
}

.pnw-contact-form .wpforms-field-container {
  min-width: 300px;
}

.pnw-contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2965b4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.pnw-contact-card-icon svg {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.pnw-contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pnw-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.pnw-contact-card h4 {
  margin-top: 0.75rem;
  color: #2965b4;
}
.pnw-contact-card p {
  font-size: 1rem;
  flex-grow: 1;
}

/*# sourceMappingURL=main.css.map */
