.zaoksky-page,
.zaoksky-point-page {
  color: #2f342f;
  font-size: 16px;
  line-height: 1.65;
}

.zaoksky-page .zaoksky-lead {
  padding: 18px 22px;
  margin: 0 0 24px;
  border-left: 4px solid #5c8b6c;
  background: #f4f8f1;
}

.zaoksky-page .zaoksky-lead P,
.zaoksky-point-page P {
  margin: 0 0 14px;
}

.zaoksky-page H2,
.zaoksky-point-page H2 {
  margin-top: 32px;
  color: #244e34;
  line-height: 1.25;
}

.zaoksky-page H3,
.zaoksky-point-page H3 {
  color: #315f42;
  line-height: 1.3;
}

.zaoksky-image,
.zaoksky-point-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 14px 0 20px;
  border-radius: 6px;
}

.zaoksky-note,
.zaoksky-point-note {
  padding: 16px 18px;
  margin: 18px 0;
  border: 1px solid #d8e5d1;
  border-radius: 6px;
  background: #fbfdf8;
}

.zaoksky-checklist,
.zaoksky-point-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 22px;
}

.zaoksky-point-page UL {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 22px;
}

.zaoksky-checklist LI,
.zaoksky-point-list LI,
.zaoksky-point-page LI {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.zaoksky-checklist LI:before,
.zaoksky-point-list LI:before,
.zaoksky-point-page LI:before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #5c8b6c;
  border-radius: 50%;
  background: #fff;
}

.zaoksky-checklist LI:after,
.zaoksky-point-list LI:after,
.zaoksky-point-page LI:after {
  content: "";
  position: absolute;
  top: 0.53em;
  left: 5.5px;
  width: 8px;
  height: 5px;
  border: solid #315f42;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.zaoksky-point-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 10px;
}

.zaoksky-point-card {
  display: flex;
  min-height: 132px;
  align-items: stretch;
  color: #2f342f;
  text-decoration: none;
  border: 1px solid #dbe5d4;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.zaoksky-point-card:hover {
  color: #244e34;
  border-color: #8db178;
  box-shadow: 0 8px 24px rgba(49, 95, 66, 0.13);
  text-decoration: none;
}

.zaoksky-point-card__image {
  flex: 0 0 150px;
  align-self: stretch;
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background: #fff;
}

.zaoksky-point-card__image IMG {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zaoksky-point-card__body {
  display: block;
  flex: 1 1 auto;
  padding: 14px 16px;
}

.zaoksky-point-card__name {
  display: block;
  margin-bottom: 7px;
  color: #244e34;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.25;
}

.zaoksky-point-card__text {
  display: block;
  color: #4b544b;
  font-size: 14px;
  line-height: 1.45;
}

.zaoksky-back-link {
  margin-top: 28px;
}

@media(max-width: 768px) {
  .zaoksky-page .zaoksky-lead {
    padding: 15px 16px;
  }

  .zaoksky-point-cards {
    grid-template-columns: 1fr;
  }

  .zaoksky-point-card {
    min-height: 112px;
  }

  .zaoksky-point-card__image {
    flex-basis: 116px;
    min-height: 112px;
  }

  .zaoksky-point-card__body {
    padding: 12px 13px;
  }

  .zaoksky-point-card__name {
    font-size: 16px;
  }}

