.about-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 1.2fr);
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.about-split-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(58, 39, 23, 0.15);
  display: block;
}

.about-split-text h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.about-split-text p {
  margin: 0 0 10px;
  color: #56442d;
  line-height: 1.7;
}

.about-heading {
  text-align: center;
  padding: 6px 0 4px;
}

.about-heading h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.about-divider {
  width: 180px;
  max-width: 70%;
  margin: 0 auto;
  display: block;
  opacity: 0.72;
}

.about-benefits {
  padding: 0;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  justify-content: center;
  gap: 24px;
}

.about-benefit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  text-align: center;
}

.about-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(230, 180, 54, 0.14);
  color: #b57a1e;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 180, 54, 0.24);
  margin: 0 auto;
}

.about-benefit h3 {
  margin: 0;
  font-size: 16px;
}

.about-benefit-lead {
  margin: 0;
  color: #56442d;
  line-height: 1.6;
  font-size: 13px;
}

.about-benefit-media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(58, 39, 23, 0.08);
  box-shadow: 0 10px 22px rgba(58, 39, 23, 0.1);
}

.about-benefit-media {
  margin-top: auto;
}

.about-benefit-foot {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(58, 39, 23, 0.08);
  color: #56442d;
  line-height: 1.6;
  font-size: 13px;
}

.about-note {
  text-align: center;
  color: #56442d;
  max-width: 880px;
  margin: 0 auto;
}

.about-note p {
  margin: 0;
  line-height: 1.6;
}

.about-note p + p {
  margin-top: 6px;
}

.about-benefit-card {
  background: #fffaf2;
  border: 1px solid #ead8bd;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(58, 39, 23, 0.08);
  min-height: 480px;
  justify-content: space-between;
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.about-benefit-card:hover {
  transform: translateY(-5px);
}

.about-benefit-card::before {
  content: "";
  position: absolute;
  inset: 14px 12px 16px;
  border-radius: 20px;
  border: 2px solid rgba(200, 134, 28, 0.5);
  box-shadow:
    0 0 0 10px rgba(230, 180, 54, 0.08),
    0 14px 36px rgba(200, 134, 28, 0.12);
  background: transparent;
  opacity: 0.9;
  pointer-events: none;
}

.about-benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-icon-wrap {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(230, 180, 54, 0.2);
  color: #c8861c;
}

.benefit-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.benefit-desc {
  font-size: 14px;
  color: #766450;
  line-height: 1.6;
}

.benefit-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  margin-top: auto;
  border: none;
  background: transparent;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  border-radius: inherit;
}

.benefit-caption {
  font-size: 14px;
  color: #766450;
  font-style: normal;
  line-height: 1.6;
  margin-top: 8px;
}
