.productColumn {
  padding: 120px 0;
  background-color: #eef5ff;
}

.productColumn__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}

.productColumn__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.productColumn__top-text {
  color: #1c327c;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.productColumn__title {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.productColumn__title-accent {
  color: #1c327c;
}

.productColumn__intro {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 770px;
}

.productColumn__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.productColumn__card {
  position: relative;
  height: 583px;
  border-radius: 10px 10px 80px 10px;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease;
}

.productColumn__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}
.productColumn__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.productColumn__cardContent {
  position: relative;
  z-index: 1;
}

.productColumn__cardTitle {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-decoration: none;
}

.productColumn__cardLink {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  text-decoration: none;
}

@media (max-width: 992px) {
  .productColumn__grid {
    grid-template-columns: 1fr;
  }
  .productColumn__card {
    height: 420px;
    padding: 32px;
  }
  .productColumn__title {
    font-size: 36px;
  }
  .productColumn__cardTitle {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .productColumn {
    padding: 50px 0;
  }
  .productColumn__header {
    margin-bottom: 24px;
  }
  .productColumn__intro {
    font-size: 16px;
  }
  .productColumn__card {
    height: 220px;
  }
}
