/* ========================================
   INFORMATION
======================================== */
.page-information {
  padding-top: 108px;
  padding-bottom: 88px;
}

.information-wrap {
  width: 100%;
  padding: 0 24px;
}

.information-panel {
  width: min(100%, 700px);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.information-hero {
  margin-bottom: 28px;
}

.information-title {
  margin: 0;
}

.information-title__main {
  display: block;
  margin: 0;
  font-size: clamp(34px, 7vw, 66px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #000;
}



.information-blocks {
  display: grid;
  gap: 18px;
}

.information-block {
  padding: 14px 14px 16px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
}

.information-block__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.information-block__rows {
  display: grid;
}

.information-block__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.information-block__row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.information-block__label {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}

.information-block__value {
  min-width: 0;
}

.information-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.information-button--ghost {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.22);
}

.information-button--ghost:hover {
  opacity: 0.68;
}

/* ========================================
   DRAWER INFORMATION LINK
======================================== */
.drawer-information {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-information__link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
  color: #000;
  opacity: 0.72;
}

/* ========================================
   MOBILE
======================================== */
@media (max-width: 640px) {
  .page-information {
    padding-top: 84px;
    padding-bottom: 56px;
  }

  .information-wrap {
    padding: 0 8px;
  }

  .information-panel {
    padding: 20px 12px 40px;
    border-radius: 24px;
  }

  .information-hero {
    margin-bottom: 22px;
  }

  .information-title__main {
    font-size: clamp(30px, 10.5vw, 48px);
  }

 

  .information-blocks {
    gap: 14px;
  }

  .information-block {
    padding: 12px 12px 14px;
    border-radius: 18px;
  }

  .information-block__title {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .information-block__row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 12px 0;
  }

  .information-block__label {
    font-size: 10px;
  }

  .information-button {
    min-width: 0;
    width: 100%;
    min-height: 34px;
    font-size: 8px;
  }

  .drawer-information {
    margin-top: 22px;
    padding-top: 14px;
  }

  .drawer-information__link {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

.information-back {
  margin-top: 24px;
  text-align: center;
}

.information-back__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  padding-bottom: 4px;
}

@media (max-width: 640px) {
  .information-back {
    margin-top: 20px;
  }

  .information-back__link {
    font-size: 11px;
  }
}

}