.products *,
.products *::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.products :root {
  --color-dark: #202330;
  --color-white: #fff;
}

.products body {
  min-height: 100vh;
  background: var(--color-dark);
}

.products header {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 20px;
  color: black;
  text-align: center;
}
.products header p {
  margin-bottom: 16px;
  font-size: 25px; 
}
.products header h1 { 
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 25px;
}
.products header div {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 32px;
}
.products header a {
  font-size: 24px;
  color: var(--color-white);
  opacity: 1;
  transition: opacity 0.3s linear;
}
.products header a:hover {
  opacity: 0.8;
}

.l-cards {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.c-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  margin-top: 20px;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  /*background-color: lightgray;*/
  background-image: linear-gradient(135deg, gray, lightgray);
  border: 1px solid var(--color-dark);
}
.c-card .c-card__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.c-card .c-card__description .c-card__tagline {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.c-card .c-card__description .c-card__title {
  font-size: 36px;
}
.c-card .c-card__description .c-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
}
.c-card .c-card__description .c-card__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.c-card .c-card__description .c-card__cta a {
  width: max-content;
  padding: 12px 24px;
  border: 1px solid black;
  color: black;
  font-size: 16px;
  text-decoration: none;
}
.c-card .c-card__figure {
  position: relative;
  overflow: hidden;
}
.c-card .c-card__figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /*background-image: linear-gradient(135deg, rgba(0,31,77,0.7), rgba(0,51,102,0.7));*/
  background-image: linear-gradient(135deg, #001f4d, #003366);
}

.spacer {
  width: 100%;
  height: 100vh;
}