.tips-section {
  display: flex;
  flex-direction: column;
}
.tips-content {
  display: flex;
  border-bottom: 2px solid var(--white-color);
}
.tips__image-wrapper {
  height: 680px;
  aspect-ratio: 5/6;
  border-right: 2px solid var(--white-color);
}
.tips__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: var(--white-color);
  height: 680px;
}
.tips-grid__row {
  display: flex;
  gap: 2px;
  height: 100%;
}
.tips-grid__item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--black-color);
  flex: 1 0 0;
}
.tips-grid__item-icon {
  margin-left: auto;
}
.tips-grid__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tips-grid__item-title {
  font-family: "Roboto Mono", monospace;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
}
.tips-grid__item-description {
  font-family: "Roboto Mono", monospace;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.42px;
  line-clamp: 2;
}

/***** RESPONSIVE *****/

@media screen and (max-width: 560px) {
  .tips-content {
    flex-direction: column;
  }
  .tips__image-wrapper {
    height: 550px;
    width: 100%;
    aspect-ratio: auto;
  }
  .tips-grid {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
  }
  .tips-grid__item-title {
    font-size: 14px;
  }
  .tips-grid__item-description {
    font-size: 12px;
  }
  .tips-grid__item {
    padding: 40px 20px;
    flex: auto;
    gap: 14px;
  }
  .tips-grid__item-icon {
    width: 42px;
    height: 20px;
  }
  .tips-grid__row {
    flex-wrap: wrap;
  }
}
