/* GRD Blocks — Text + Features.
   Only styles the new feature cards; the dark section, two-column layout, white text and
   right-side phone-image behaviour are inherited from the theme's .text-phone rules. */

.text-phone--features .text-phone__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* each stacked card: icon on the left, title beside it */
.text-phone--features .text-phone__feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  background: rgb(var(--astronaut-blue, 0 72 93)); /* lighter card on the prussian-blue section */
}

.text-phone--features .text-phone__feature-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.text-phone--features .text-phone__feature-icon img,
.text-phone--features .text-phone__feature-icon svg {
  width: 34px;
  height: 34px;
  object-fit: contain; /* never squashes, regardless of the source icon's ratio */
}

.text-phone--features .text-phone__feature-title {
  margin: 0;
  color: rgb(var(--white, 255 255 255));
  font-family: var(--font-primary, "Mulish", system-ui, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.text-phone--features .text-phone__features-placeholder {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

@media (max-width: 600px) {
  .text-phone--features .text-phone__feature {
    gap: 1rem;
    padding: 1rem 1.15rem;
  }
  .text-phone--features .text-phone__feature-icon {
    width: 48px;
    height: 48px;
  }
  .text-phone--features .text-phone__feature-icon img,
  .text-phone--features .text-phone__feature-icon svg {
    width: 28px;
    height: 28px;
  }
}
