body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f4f7fb;
}

.hero {
  padding: 64px 0 58px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy2));
}

.heroInner {
  width: var(--max);
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: .98;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero p {
  max-width: 800px;
  margin: 18px 0 0;
  color: #e7eef7;
  font-size: 18px;
  line-height: 1.6;
}

.newsWrap {
  flex: 1;
  width: var(--max);
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 0 64px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.toolbar h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  text-transform: uppercase;
}

.newsList {
  display: grid;
  gap: 18px;
}

.post {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(6, 27, 50, .08);
}

.postMeta {
  margin-bottom: 8px;
  color: #637287;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.post h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.12;
  text-transform: uppercase;
}

.post h3 a:hover,
.post h3 a:focus {
  color: var(--red);
}

.summary {
  margin: 0 0 14px;
  color: #3d4a5a;
  font-size: 16px;
  line-height: 1.6;
}

.readBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  color: var(--white);
  font-weight: 1000;
  text-transform: uppercase;
  background: var(--navy);
  border-radius: 8px;
}

.empty {
  padding: 34px;
  color: #5d6978;
  line-height: 1.6;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

@media (max-width: 760px) {
  .hero {
    padding: 38px 0 40px;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 36px);
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 3.2px;
  }

  .newsWrap {
    padding: 32px 0 46px;
  }

  .toolbar {
    display: block;
  }

  .post {
    padding: 18px 16px;
    border-left-width: 4px;
  }

  .post h3 {
    font-size: 22px;
  }

  .summary {
    font-size: 15px;
  }
}
