:root {
  --page-bg: #f5f1ef;
  --card-bg: #f3eeec;
  --text-primary: #262320;
  --text-secondary: #6e6a66;
  --text-link: #a78562;
  --border-soft: rgba(104, 94, 84, 0.08);
  --shadow-soft: 0 0 0 1px rgba(111, 100, 89, 0.03), 0 6px 18px rgba(52, 42, 34, 0.03);
  --container-width: 1114px;
}
 
img {
  display: block;
  width: 100%;
  height: auto;
}

.industry-solutions {
  padding: clamp(30px, 3.125vw, 60px) 0;
  background: var(--page-bg);
}

.industry-solutions__container {
  margin: 0 auto;
}

.industry-solutions__header {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.industry-solutions__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.81vw, 54px);
  line-height: 1.13;
  letter-spacing: -0.042em;
  font-weight: 500;
}

.industry-solutions__intro {
  margin: 16px auto 0;
  max-width: 840px;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 32px;
  align-items: stretch;
}

.industry-card {
  display: flex;
  flex-direction: column;
  /*min-height: 535px;*/
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.industry-card__media {
  aspect-ratio: 349 / 230;
  overflow: hidden;
  background: #eee7e2;
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.industry-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.industry-card__description {
  margin: 14px 0 0;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

.industry-card__cta {
  margin-top: auto;
  padding-top: 30px;
  font-size: clamp(14px, 0.89vw, 17px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-link);
  text-decoration: none;
}

.industry-card__cta:hover,
.industry-card__cta:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em; color: var(--text-link);
}

@media (max-width: 1100px) {


  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }


}

@media (max-width: 767px) {
  .industry-card__description {
    line-height: 1.52;
    margin: 10px 0 0;
  }

  .industry-solutions__header {
    margin-bottom: 28px;
  }

  .industry-solutions__title {
    line-height: 1.02;
  }

  .industry-solutions__intro {
    line-height: 1.7;
  }

  .industry-solutions__intro br,
  .industry-card__description br {
    display: none;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card__body {
    padding: 15px;
  }

  

  .industry-card__cta {
    padding-top: 15px;
  }
}
