.es-section {
  position: relative;
  background: #efefef;
  padding: 22px 16px 70px;
  overflow: hidden;
}

.es-section::before,
.es-section::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  height: 170px;
  transform: skewY(5deg);
  z-index: 0;
}

.es-section::before {
  top: 26px;
  background: #e4e1df;
}

.es-section::after {
  top: 228px;
  background: #e8e5e3;
}

.es-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.es-image img {
  width: 100%;
  min-height: 690px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.es-content {
  background: rgba(239, 239, 239, 0.92);
  padding: 6px 8px;
}

.es-content h1 {
  margin: 0 0 12px;
  color: #201f1f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.35vw, 44px);
  line-height: 1.2;
}

.es-content p {
  margin: 0 0 14px;
  color: #2d2d2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 0.95vw, 17px);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .es-wrap {
    grid-template-columns: 1fr;
  }

  .es-image img {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .es-section {
    padding: 14px 10px 44px;
  }

  .es-image img {
    min-height: 320px;
  }

  .es-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}
