.sky-sim-section,
.sky-sim-section * {
  box-sizing: border-box;
}

.sky-sim-section {
  width: 100%;
  background: #fbf5eb;
  overflow: hidden;
}

.sky-sim-grid {
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  gap: 48px;
  align-items: center;
}

.sky-sim-content,
.sky-sim-panel {
  min-width: 0;
}

.sky-sim-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #852c1f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sky-sim-eyebrow::before {
  content: "";
  flex: 0 0 32px;
  width: 32px;
  height: 2px;
  background: currentColor;
}

.sky-sim-heading {
  margin: 0;
  color: #071e23;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.sky-sim-description {
  margin-top: 22px;
  color: #637473;
  font-size: 19px;
  line-height: 1.65;
}

.sky-sim-description p,
.sky-sim-priority-text p {
  margin: 0;
}

.sky-sim-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.sky-sim-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sky-sim-button:hover {
  transform: translateY(-2px);
}

.sky-sim-button--primary {
  color: #fff;
  background: #a6432b;
  border: 1px solid transparent;
  box-shadow: 0 10px 22px rgba(166, 67, 43, .16);
}

.sky-sim-button--secondary {
  color: #071e23;
  background: #fffaf2;
  border: 1px solid #d8d3c8;
}

.sky-sim-panel {
  padding: 36px;
  border: 1px solid #d8d2c7;
  border-radius: 24px;
  background: #fbf5eb;
}

.sky-sim-panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 32px;
  padding: 9px 14px;
  border: 1px solid #d8d2c7;
  border-radius: 999px;
  background: #fff;
  color: #071e23;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.sky-sim-priorities {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.sky-sim-priority {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.sky-sim-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #112822;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.sky-sim-priority-title {
  margin: -2px 0 10px;
  color: #071e23;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.sky-sim-priority-text {
  color: #637473;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .sky-sim-grid {
    grid-template-columns: 1fr !important;
    gap: 34px;
  }

  .sky-sim-heading {
    font-size: clamp(40px, 7vw, 64px);
  }
}

@media (max-width: 767px) {
  .sky-sim-section {
    padding: 18px !important;
  }

  .sky-sim--panel-first .sky-sim-panel {
    order: -1;
  }

  .sky-sim-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .sky-sim-eyebrow::before {
    flex-basis: 24px;
    width: 24px;
  }

  .sky-sim-heading {
    font-size: clamp(36px, 12vw, 52px);
  }

  .sky-sim-description {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .sky-sim-buttons {
    align-items: stretch;
  }

  .sky-sim-button {
    width: 100%;
  }

  .sky-sim-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .sky-sim-panel-label {
    margin-bottom: 26px;
  }

  .sky-sim-priorities {
    gap: 26px;
  }

  .sky-sim-priority {
    gap: 14px;
  }

  .sky-sim-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .sky-sim-priority-title {
    font-size: 25px;
  }

  .sky-sim-priority-text {
    font-size: 15px;
  }
}
