.inner-page {
  background: var(--paper);
}

.inner-hero {
  background: linear-gradient(115deg, var(--navy-deep), #075578);
  color: var(--white);
  overflow: hidden;
  padding: 165px 0 95px;
  position: relative;
}

.inner-grid {
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  inset: 0;
  mask-image: linear-gradient(to right, transparent, black);
  position: absolute;
}

.inner-hero::after {
  border: 1px solid rgba(100, 221, 245, .15);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -150px;
  top: -210px;
  width: 520px;
}

.inner-hero .container {
  z-index: 1;
}

.breadcrumb-nav {
  align-items: center;
  color: rgba(255, 255, 255, .52);
  display: flex;
  font-size: .74rem;
  gap: .7rem;
  margin-bottom: 3.8rem;
}

.breadcrumb-nav a:hover {
  color: var(--cyan-light);
}

.breadcrumb-nav i {
  font-size: .55rem;
}

.inner-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.inner-hero h1 span {
  color: var(--cyan-light);
}

.inner-hero .col-lg-4 > p {
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.news-archive {
  padding: 85px 0 120px;
}

.archive-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.4rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.category-filter {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .65rem .9rem;
}

.category-filter:hover,
.category-filter.active {
  background: var(--navy);
  color: var(--white);
}

.news-search {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  min-width: 255px;
  padding: 0 1rem;
}

.news-search i {
  color: var(--blue);
}

.news-search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: .84rem;
  outline: 0;
  padding: .8rem;
  width: 100%;
}

.archive-featured {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(1, 38, 58, .08);
  display: grid;
  grid-template-columns: 48% 52%;
  margin-bottom: 6rem;
  min-height: 450px;
}

.archive-featured[hidden],
[data-news-card][hidden] {
  display: none !important;
}

.archive-featured-visual {
  align-items: center;
  background: radial-gradient(circle at 25% 20%, rgba(100, 221, 245, .35), transparent 25%), linear-gradient(145deg, #087cac, var(--navy-deep));
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.archive-featured-visual::after,
.archive-card-visual::after {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  right: -100px;
  top: -100px;
  width: 280px;
}

.archive-featured-visual .news-tag,
.archive-card-visual .news-tag {
  background: var(--cyan);
  color: var(--navy-deep);
  left: 1.5rem;
  position: absolute;
  top: 1.5rem;
  z-index: 2;
}

.archive-monogram {
  color: rgba(255, 255, 255, .12);
  font-family: "Manrope", sans-serif;
  font-size: 18rem;
  font-weight: 800;
  line-height: 1;
}

.archive-featured-content {
  align-self: center;
  padding: 4rem;
}

.archive-date {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: .72rem;
  gap: .6rem;
}

.archive-date i {
  background: var(--cyan);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.archive-featured h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 1rem 0 1.2rem;
}

.archive-featured h2 a:hover,
.archive-card h3 a:hover {
  color: var(--blue);
}

.archive-featured p {
  color: var(--muted);
}

.article-link {
  color: var(--blue);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  gap: .6rem;
  margin-top: 1rem;
}

.article-link:hover {
  color: var(--navy);
  gap: .85rem;
}

.archive-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.archive-heading .eyebrow {
  margin-bottom: .8rem;
}

.archive-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin: 0;
}

.archive-count {
  color: var(--muted);
  font-size: .78rem;
}

.archive-card {
  background: var(--white);
  border: 1px solid transparent;
  height: 100%;
  transition: .3s ease;
}

.archive-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.archive-card-visual {
  align-items: center;
  background: linear-gradient(145deg, #087cac, var(--navy));
  color: rgba(255, 255, 255, .18);
  display: flex;
  height: 220px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.archive-card-visual > i {
  font-size: 5rem;
}

.visual-tax { background: linear-gradient(145deg, #0b7591, #02384e); }
.visual-people { background: linear-gradient(145deg, #138bb0, #18435d); }
.visual-management { background: linear-gradient(145deg, #006ca6, #032f4a); }
.visual-growth { background: linear-gradient(145deg, #047a9d, #064466); }
.visual-calendar { background: linear-gradient(145deg, #0c86a8, #05334e); }

.archive-card-body {
  padding: 1.8rem;
}

.archive-card h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  margin: .8rem 0;
}

.archive-card p {
  color: var(--muted);
  font-size: .88rem;
  margin: 0;
}

.empty-news {
  background: var(--white);
  margin-top: 2rem;
  padding: 4rem 2rem;
  text-align: center;
}

.empty-news i {
  color: var(--cyan);
  font-size: 2rem;
}

.empty-news h3 {
  margin-top: 1rem;
}

.empty-news p {
  color: var(--muted);
}

.archive-pagination {
  align-items: center;
  display: flex;
  gap: .35rem;
  justify-content: center;
  margin-top: 4rem;
}

.archive-pagination a,
.archive-pagination span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: .78rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.archive-pagination a:hover,
.archive-pagination a.active {
  background: var(--navy);
  color: var(--white);
}

.archive-pagination a.disabled {
  opacity: .35;
  pointer-events: none;
}

.newsletter-band {
  background: linear-gradient(120deg, var(--navy-deep), #065477);
  color: var(--white);
  padding: 80px 0;
}

.newsletter-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.newsletter-form {
  background: var(--white);
  display: flex;
  padding: .4rem;
}

.newsletter-form input {
  border: 0;
  flex: 1;
  font-size: .88rem;
  min-width: 0;
  outline: 0;
  padding: 0 1rem;
}

.newsletter-form button {
  background: var(--cyan);
  border: 0;
  color: var(--navy-deep);
  font-size: .8rem;
  font-weight: 700;
  padding: 1rem 1.4rem;
}

.newsletter-band small {
  color: rgba(255, 255, 255, .48);
  display: block;
  margin-top: .6rem;
}

.article-hero {
  background: var(--paper);
  padding: 155px 0 75px;
}

.article-hero .breadcrumb-nav {
  color: var(--muted);
  margin-bottom: 3.5rem;
}

.article-hero .breadcrumb-nav a:hover {
  color: var(--blue);
}

.article-hero .news-tag {
  display: table;
  margin: 0 auto 1.4rem;
}

.article-hero h1 {
  color: var(--navy-deep);
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  text-align: center;
}

.article-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 auto 1.7rem;
  max-width: 780px;
  text-align: center;
}

.article-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .76rem;
  gap: 1.5rem;
  justify-content: center;
}

.article-meta i {
  color: var(--blue);
  margin-right: .35rem;
}

.article-container {
  padding-bottom: 110px;
}

.article-cover {
  align-items: flex-end;
  background: radial-gradient(circle at 75% 15%, rgba(100, 221, 245, .24), transparent 25%), linear-gradient(130deg, var(--navy-deep), #087ba6);
  color: var(--white);
  display: flex;
  height: 520px;
  justify-content: space-between;
  margin-bottom: 5rem;
  overflow: hidden;
  padding: 4rem;
  position: relative;
}

.article-cover::after {
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  inset: 0;
  position: absolute;
}

.article-cover-mark {
  color: rgba(255, 255, 255, .1);
  font-family: "Manrope", sans-serif;
  font-size: 27rem;
  font-weight: 800;
  left: 5%;
  line-height: .75;
  position: absolute;
  top: 2rem;
}

.article-cover > div {
  margin-left: auto;
  max-width: 480px;
  position: relative;
  text-align: right;
  z-index: 1;
}

.article-cover small {
  color: var(--cyan-light);
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: .7rem;
  text-transform: uppercase;
}

.article-cover strong {
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}

.article-share {
  align-items: center;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: sticky;
  top: 120px;
}

.article-share > span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.article-share a,
.article-share button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue);
  display: flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.article-share a:hover,
.article-share button:hover,
.article-share button.copied {
  background: var(--navy);
  color: var(--white);
}

.article-body {
  color: #334e5d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.95;
}

.article-body .article-lead {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.75;
}

.article-body h2 {
  color: var(--navy-deep);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 3.2rem 0 1rem;
}

.article-body ul {
  padding-left: 1.2rem;
}

.article-body li {
  margin-bottom: .6rem;
  padding-left: .4rem;
}

.article-body li::marker {
  color: var(--cyan);
}

.article-body blockquote {
  border-left: 4px solid var(--cyan);
  color: var(--navy);
  font-size: 1.55rem;
  font-style: italic;
  margin: 3rem 0;
  padding: .8rem 0 .8rem 2rem;
}

.article-body blockquote p {
  margin: 0;
}

.article-callout {
  background: #eaf6f9;
  display: grid;
  font-family: "DM Sans", sans-serif;
  gap: 1rem;
  grid-template-columns: 44px auto;
  margin: 3rem 0;
  padding: 2rem;
}

.article-callout > i {
  color: var(--blue);
  font-size: 1.7rem;
}

.article-callout strong {
  color: var(--navy);
}

.article-callout p {
  font-size: .92rem;
  line-height: 1.7;
  margin: .3rem 0 0;
}

.article-author {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 74px auto;
  margin-top: 4rem;
  padding: 2rem 0;
}

.author-mark {
  align-items: center;
  background: var(--navy);
  color: var(--cyan-light);
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.article-author span {
  color: var(--muted);
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
}

.article-author strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.article-author p {
  color: var(--muted);
  font-size: .82rem;
  margin: .25rem 0 0;
}

.article-navigation {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}

.article-navigation a {
  background: var(--white);
  min-height: 140px;
  padding: 1.6rem;
}

.article-navigation a:last-child {
  text-align: right;
}

.article-navigation a:hover {
  background: var(--navy);
  color: var(--white);
}

.article-navigation span {
  color: var(--blue);
  display: block;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: .7rem;
  text-transform: uppercase;
}

.article-navigation a:hover span {
  color: var(--cyan-light);
}

.article-navigation strong {
  font-family: "Manrope", sans-serif;
  font-size: .9rem;
}

.related-news {
  background: var(--white);
  padding: 100px 0;
}

.related-news .archive-card {
  background: var(--paper);
}

.article-cta {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
}

.article-cta .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.article-cta .eyebrow {
  margin-bottom: .7rem;
}

.article-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

@media (max-width: 991.98px) {
  .archive-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .news-search {
    max-width: 420px;
  }

  .archive-featured {
    grid-template-columns: 1fr;
  }

  .archive-featured-visual {
    min-height: 360px;
  }

  .article-share {
    flex-direction: row;
    margin-bottom: 2rem;
    position: static;
  }

  .article-share > span {
    margin: 0 .5rem 0 0;
  }
}

@media (max-width: 767.98px) {
  .inner-hero {
    padding: 135px 0 70px;
  }

  .inner-hero .breadcrumb-nav {
    margin-bottom: 2.5rem;
  }

  .inner-hero h1 {
    font-size: 2.7rem;
  }

  .news-archive {
    padding: 60px 0 80px;
  }

  .category-filters {
    flex-wrap: nowrap;
    margin: 0 -12px;
    overflow-x: auto;
    padding: 0 12px 8px;
  }

  .category-filter {
    flex: 0 0 auto;
  }

  .news-search {
    max-width: none;
    min-width: 0;
  }

  .archive-featured {
    margin-bottom: 4rem;
  }

  .archive-featured-visual {
    min-height: 270px;
  }

  .archive-featured-content {
    padding: 2rem 1.5rem;
  }

  .archive-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-height: 52px;
  }

  .article-hero {
    padding: 130px 0 55px;
  }

  .article-hero .breadcrumb-nav {
    margin-bottom: 2.5rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .article-hero h1 {
    font-size: 2.6rem;
  }

  .article-meta {
    gap: .7rem 1rem;
  }

  .article-container {
    padding-bottom: 75px;
  }

  .article-cover {
    height: 330px;
    margin-left: -12px;
    margin-right: -12px;
    padding: 2rem 1.5rem;
  }

  .article-cover-mark {
    font-size: 18rem;
  }

  .article-cover strong {
    font-size: 1.65rem;
  }

  .article-body {
    font-size: 1.03rem;
  }

  .article-body .article-lead {
    font-size: 1.2rem;
  }

  .article-body h2 {
    font-size: 1.65rem;
  }

  .article-body blockquote {
    font-size: 1.3rem;
    padding-left: 1.3rem;
  }

  .article-navigation {
    grid-template-columns: 1fr;
  }

  .article-navigation a:last-child {
    text-align: left;
  }

  .article-cta .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.8rem;
  }
}
