.section-min-three-columns {
  background: url("../images/background_section-min-three-columns.png") center center /
    cover no-repeat;
  padding: 81px 190px;
  color: #fff;
  text-align: center;
  width: auto;
}

.section-min-three-columns__container {
  max-width: 1059px;
  margin: 0 auto;
}

.section-min-three-columns__main-title {
  font-family: "PP Editorial New", serif;
  font-style: italic;
  font-size: clamp(40px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 44px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-min-three-columns__subtitle {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: clamp(24px, 2vw, 24px);
  line-height: 1.5;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-min-three-columns__subtitle strong {
  font-weight: 600;
  font-family: "PP Editorial New", serif;
  font-style: italic;
}

.section-min-three-columns__subtitle em {
  font-style: italic;
  font-family: "PP Editorial New", serif;
}

.section-min-three-columns__middle-text {
  font-family: "PP Editorial New", serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.4;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-min-three-columns__grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
}

.section-min-three-columns__column {
  text-align: left;
  position: relative;
  box-sizing: border-box;
}
.section-min-three-columns__column:nth-child(1) {
  grid-row: 1 / 6;
}
.section-min-three-columns__column:nth-child(2) {
  grid-row: 2 / 6;
}
.section-min-three-columns__column:nth-child(3) {
  grid-row: 3 / 6;
}

.section-min-three-columns__column {
  text-align: left;
  position: relative;
  padding-top: 20px;
}

.section-min-three-columns__column-title-bar {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 24px 0;
}

.section-min-three-columns__column-title {
  font-family: "PP Editorial New";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
}

.section-min-three-columns__column-content {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
}

.section-min-three-columns__column-content strong {
  font-weight: 600;
  color: #fff;
}

.section-min-three-columns__final-text {
  font-family: "PP Editorial New", serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .section-min-three-columns {
    padding: 80px 40px;
  }
  
  .section-min-three-columns__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .section-min-three-columns__column {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-min-three-columns {
    padding: 60px 20px;
  }

  .section-min-three-columns__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-min-three-columns__main-title {
    margin-bottom: 30px;
  }

  .section-min-three-columns__subtitle {
    margin-bottom: 40px;
  }
}
