.block-overseeding {
  width: 100%;
  background: #fff;
  padding: var(--section-pad-y) 0;
}

.block-overseeding__inner {
  width: 100%;
  padding-inline: var(--layout-inline);
  box-sizing: border-box;
}

.block-overseeding__head {
  margin-bottom: var(--section-head-gap);
}

.block-overseeding__head-main {
  min-width: 0;
  flex: 1;
  width: 100%;
}

.block-overseeding__title {
  margin: 0;
  max-width: 675px;
  font-family: "Ubuntu", var(--font), system-ui, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: #252529;
}

.block-overseeding__panel {
  position: relative;
  overflow: hidden;
  min-height: 476px;
  background:
    linear-gradient(0deg, rgba(37, 37, 41, 0.34), rgba(37, 37, 41, 0.34)),
    url("../../assets/hero-normal.webp") center/cover no-repeat;
}

.block-overseeding__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 37, 41, 0.18) 0%, rgba(37, 37, 41, 0.08) 35%, rgba(37, 37, 41, 0.3) 100%);
  pointer-events: none;
}

.block-overseeding__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 476px;
  padding: 30px 19px 20px;
  box-sizing: border-box;
}

.block-overseeding__lead {
  margin: 0;
  max-width: 675px;
  font-family: "Roboto", var(--font), system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: #fcfefe;
}

.block-overseeding__lead span {
  color: #eab300;
}

.block-overseeding__metrics {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr) 0 minmax(0, 1fr) 0 minmax(0, 1fr);
  column-gap: 8px;
  margin-top: auto;
  align-items: center;
}

.block-overseeding__metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 154px;
  padding: 20px 21px 25px 20px;
  background: rgba(240, 242, 242, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-sizing: border-box;
}

.block-overseeding__metric-caption {
  margin: 0;
  max-width: 292px;
  font-family: "Roboto", var(--font), system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(252, 254, 254, 0.92);
}

.block-overseeding__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  padding: 6px 10px;
  margin-inline: -14px;
  background: #eab300;
  color: #fcfefe;
  z-index: 3;
}

.block-overseeding__connector svg {
  display: block;
  width: 8px;
  height: 16px;
  flex: 0 0 auto;
}

.block-overseeding__metric-value {
  margin: auto 0 0;
  font-family: "Roboto", var(--font), system-ui, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  color: #fcfefe;
}

@media (max-width: 1100px) {
  .block-overseeding__metric {
    min-height: 140px;
    padding: 16px 18px 20px 16px;
  }

  .block-overseeding__metric-value {
    font-size: clamp(1.125rem, 2.2vw, 1.875rem);
    line-height: 1.2;
  }

  .block-overseeding__metric-caption {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .block-overseeding__head-top {
    gap: clamp(8px, 2vw, 16px);
  }

  .block-overseeding__panel,
  .block-overseeding__content {
    min-height: 0;
  }

  .block-overseeding__content {
    padding: 22px 16px 16px;
  }

  .block-overseeding__lead {
    max-width: 100%;
    font-size: clamp(1.2rem, 4vw, 1.75rem);
    line-height: 1.2;
  }

  .block-overseeding__metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .block-overseeding__connector {
    display: none;
  }

  .block-overseeding__metric {
    min-height: 124px;
    padding-right: 28px;
  }

  .block-overseeding__metric-value {
    font-size: clamp(1.25rem, 4.2vw, 1.875rem);
    line-height: 1.15;
    word-break: break-word;
  }

  .block-overseeding__title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    line-height: 1.1;
  }
}
