/* Reusing valid BEM structure from previous template */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alegreya", serif;
  line-height: 1.2;
  background-color: #fff;
}

/* --- LAYOUT --- */
.layout-container {
  max-width: 930px;
  padding: 0px 10px;
  margin: 0 auto;
}

.layout-divider {
  background-color: #b1afaf;
  margin: 40px auto;
  margin-top: 20px;
  width: 20%;
  height: 2px;
}

/* --- HEADER --- */
.brand-header__logo {
  display: block;
  margin: 10px auto;
  width: 360px;
  height: auto;
}

.brand-header__title {
  color: #002e87;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

/* --- INTRO BANNER --- */
.intro-banner__text {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0px 10px 0px;
  font-style: italic;
}

.intro-banner__byline {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.intro-banner__link {
  color: #152ae6;
  text-decoration: underline;
}

/* --- BLOG POST (Feature Section) --- */
/* Layout Fix: Use float for text wrapping */
.blog-post {
  display: block;
  margin-bottom: 20px;
}

.blog-post::after {
  content: "";
  display: table;
  clear: both;
}

.blog-post__media {
  float: left;
  width: 50%;
  margin-right: 25px;
  margin-bottom: 10px;
}

.blog-post__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.blog-post__content {
  font-size: 18px;
  line-height: 1.5;
}

.blog-post__content p {
  margin-bottom: 15px;
}

/* --- LIST SECTION --- */
.list-section {
  margin-top: 30px;
}

/* --- NUMBERED LIST --- */
.numbered-list {
  font-size: 16px;
}

.numbered-list__item {
  line-height: 1.4;
  overflow: hidden; /* Creates BFC to prevent awkward wrapping around float */
}

.numbered-list__item strong {
  font-size: 18px;
  color: #002e87;
}

.numbered-list__item--highlight {
  margin-top: 20px;
}

.numbered-list__item--highlight strong {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  color: #000;
}

.numbered-list__link {
  color: #152ae6;
  text-decoration: underline;
  font-weight: 700;
}

/* --- CTS --- */
.culture-cta {
  margin: 30px 0;
  font-style: italic;
  text-align: center;
  font-size: 1.4rem;
}

.culture-cta__link {
  color: #152ae6;
  text-decoration: underline;
  font-weight: 700;
}

/* --- FOOTER INFO --- */
.footer-info {
  margin-top: 30px;
  text-align: left;
}

.footer-info__heading {
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-info__list {
  padding-left: 40px;
}

.footer-info__list-item {
  font-size: 0.85rem;
  color: #152ae6;
}

.footer-info__link {
  color: #152ae6;
  text-decoration: underline;
}

.footer-info__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.footer-info__nav-link {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 767px) {
  .blog-post__media {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer-info__nav {
    flex-wrap: wrap;
  }
}
