/* --- Features Section --- */
.feature-container {
  /* width: 90%; */
  /* max-width: var(--container-width); */
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  color: #0F1113;
  letter-spacing: -2%;
  padding: 40px calc(var(--spacing-unit) * 4);
  text-align: center;
  margin-inline: auto;
}

.features-header p {
  color: inherit;
  letter-spacing: inherit;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  /* light */
  font-size: 36px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  overflow: visible;
}

.features-header h2 {
  color: inherit;
  letter-spacing: inherit;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: bold;
  font-size: 46px;
}

.features-layout {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.features-image {
  flex-shrink: 0;
  /* flex: 1 245px; */
  flex: 1 400px;
}

.features-list {
  flex: 1 400px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: stretch;
  margin: 5px
}

.feature-item {
  background: #FFFFFF;
  color: #0F1113;
  padding: 42px;
  border: none;
  /* margin: 8px; */
  border-radius: 25px;
  cursor: pointer;
  text-align: left;
  width: 700px;
}

.feature-item:hover {
  background: #0B1D37;
  color: #F5F5F5;
}

.feature-item h3 {
  color: inherit;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: var(--spacing-unit);
}

.feature-item p {
  color: inherit;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  /* light */
  font-size: 28px;
  letter-spacing: 0%;
}

.picture.active {
  display: block;
}

.feature-picture {
  /* we'll control visibility with aria-hidden + opacity */
  width: 100%;
  height: auto;
  /* height: 100%; */
  /* object-fit: fill; */
  /* object-fit: contain; */
}

/* Indicator container */
.indicators {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Circles */
.feature-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.feature-dot.active {
  background-color: #000;
}