.features-section {
  padding: 90px 24px;
  background: #f7f8fa;
}

.features-section__header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.features-section__header h2 {
  margin: 0 0 18px;
  color: #103c5c;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
}

.features-section__header p {
  margin: 0;
  color: #687078;
  font-size: 1.1rem;
  line-height: 1.7;
}

.features-section__grid .field--name-field-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}

.features-section__grid .field--name-field-features > .field__item {
  display: flex;
  min-width: 0;
}

.field--name-field-features .paragraph {
  width: 100%;
}

.feature-card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  padding: 42px 32px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(16, 60, 92, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(16, 60, 92, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 70px;
  height: 4px;
  content: "";
  background: #c99a45;
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(201, 154, 69, 0.3);
  box-shadow: 0 22px 50px rgba(16, 60, 92, 0.14);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  width: 120px;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 26px;
  overflow: hidden;
  background: rgba(201, 154, 69, 0.10);
  border: 1px solid rgba(201, 154, 69, 0.18);
  border-radius: 50%;
}

.feature-card__icon .field,
.feature-card__icon .field__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.feature-card__icon img {
  display: block;
  width: 84px !important;
  height: 84px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 14px;
  color: #103c5c;
  font-size: 1.3rem;
  font-weight: 750;
  line-height: 1.3;
}

.feature-card__text {
  color: #687078;
  font-size: 1rem;
  line-height: 1.65;
}

.feature-card__text p {
  margin: 0;
}

@media (max-width: 991px) {
  .features-section {
    padding: 70px 22px;
  }

  .features-section__grid .field--name-field-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 55px 16px;
  }

  .features-section__header {
    margin-bottom: 35px;
  }

  .features-section__grid .field--name-field-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
    padding: 34px 24px;
  }
}
.feature-card__icon {
    width: 96px;
    height: 96px;
}

.feature-card__icon img {
    width: 84px !important;
    height: 84px !important;
}