.content-page {
  background: #f6f7f2;
  color: #1f241f;
}

.content-hero {
  padding: 86px 0 44px;
  background: linear-gradient(180deg, #101510 0%, #1a2419 100%);
  color: #fff;
}

.content-hero__inner,
.content-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.content-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  background: #1b3e96;
  color: #f4c542;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .78rem;
}

.content-hero h1 {
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.05;
  max-width: 920px;
  margin-bottom: 18px;
}

.content-intro {
  max-width: 760px;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}

.content-layout {
  padding: 42px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.content-main {
  display: grid;
  gap: 22px;
}

.content-panel,
.content-card {
  background: #fff;
  border: 1px solid rgba(27, 62, 150, .10);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(20, 26, 18, .06);
}

.content-panel {
  padding: 26px;
}

.content-panel h2,
.content-panel h3 {
  margin-bottom: 14px;
  color: #1d291b;
}

.content-panel h2::after,
.content-panel h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: #f4c542;
  border-radius: 999px;
}

.content-panel p {
  line-height: 1.8;
  color: #4b5449;
  margin-bottom: 16px;
}

.content-points {
  display: grid;
  gap: 10px;
}

.content-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.content-points i {
  color: #f4c542;
  margin-top: 4px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.content-card {
  padding: 18px;
  color: #223020;
  display: grid;
  gap: 8px;
  border-top: 4px solid #1b3e96;
  transition: transform .2s ease, border-color .2s ease;
}

.content-card:hover,
.content-card:focus {
  transform: translateY(-2px);
  border-color: #f4c542;
  outline: none;
}

.content-card span {
  color: #51604e;
  line-height: 1.6;
}

.mini-projects {
  display: grid;
  gap: 16px;
}

.mini-project {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 30, 20, .08);
}

.mini-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.content-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.content-panel--dark {
  background: #1b3e96;
  color: #fff;
  border-left: 6px solid #f4c542;
}

.content-panel--dark p {
  color: rgba(255,255,255,.84);
}

.content-links {
  display: grid;
  gap: 10px;
}

.content-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.content-links a:hover,
.content-links a:focus {
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
  outline: none;
}

.content-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: #1b3e96;
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid rgba(27, 62, 150, .12);
}

.content-btn:hover,
.content-btn:focus {
  background: #f4c542;
  color: #1f241f;
  outline: none;
}

@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .content-hero__inner,
  .content-layout {
    width: min(100% - 28px, 1180px);
  }

  .mini-project {
    grid-template-columns: 1fr;
  }
}
