section.the-specifics-section {
  position: relative;
  overflow: hidden;
}
section.the-specifics-section .top .headline {
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 45px;
}
section.the-specifics-section .top .headline::before {
  width: 418px;
  height: 2px;
  background-color: var(--secondary-color, #97ca3e);
  content: '';
  position: absolute;
  bottom: 0;
}
.the-specifics-items {
  display: grid;
  gap: 142px;
}
.the-specifics-items .the-specifics-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 154px;
  align-items: center;
}
.the-specifics-items .the-specifics-item.reverse-column .right-image {
  grid-column-start: 1;
  grid-row-start: 1;
}
.the-specifics-items .the-specifics-item .right-image {
  display: flex;
}
.the-specifics-items .the-specifics-item .right-image picture {
  display: flex;
  width: 100%;
}
.the-specifics-items .the-specifics-item .right-image img {
  width: 100%;
}
@media screen and (max-width: 1399px) {
  .the-specifics-items .the-specifics-item {
    gap: 50px;
  }
}
@media screen and (max-width: 1179px) {
  .the-specifics-items .the-specifics-item {
    grid-template-columns: 1fr;
  }
  .the-specifics-items .the-specifics-item .right-image {
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .the-specifics-items .the-specifics-item .right-image {
    display: none;
  }
  /* Opt-in via "Show Image on Mobile": the image drops to the bottom of the
     item (grid-row-start:auto puts it after the text in source order) instead
     of being hidden and re-added by hand inside the editor. Beats the
     .reverse-column rule above on source order, so it stays at the bottom
     for reversed rows too. */
  .the-specifics-items .the-specifics-item .right-image.show-on-mobile {
    display: flex;
    grid-column-start: 1;
    grid-row-start: auto;
    margin-top: 10px;
  }
  .the-specifics-items {
    gap: 90px;
  }
  section.the-specifics-section .top .headline {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1023px) {
  section.the-specifics-section .top .headline {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  section.the-specifics-section .top .headline::before {
    width: 276px;
  }
  .the-specifics-items {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.the-specifics-section .top .headline::before {
    width: 120px;
  }
  .the-specifics-items {
    gap: 44px;
  }
}
