.period-locks-page {
  display: grid;
  gap: 16px;
}

.period-lock-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(77, 160, 255, 0.16), transparent 34%),
    #ffffff;
}

.period-lock-kicker {
  margin: 0 0 4px;
  color: #1d6ff2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.period-lock-hero h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.period-lock-hero p {
  margin: 6px 0 0;
  color: #6d7788;
  font-weight: 700;
  line-height: 1.5;
}

.period-lock-form {
  display: grid;
  grid-template-columns: 170px 260px auto;
  gap: 10px;
  align-items: end;
  min-width: 600px;
}

.period-lock-section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.period-lock-section-header h3 {
  margin: 0;
  font-size: 20px;
}

.period-lock-section-header p {
  margin: 4px 0 0;
  color: #6d7788;
  font-weight: 700;
  font-size: 13px;
}

.period-lock-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.period-lock-status.locked {
  background: #fff1f1;
  color: #bd2b2b;
  border: 1px solid #ffd2d2;
}

.period-lock-status.unlocked {
  background: #eaf8f0;
  color: #17804a;
  border: 1px solid #c9efd8;
}

.period-lock-table {
  min-width: 980px;
}

.period-lock-table th,
.period-lock-table td {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .period-lock-hero {
    display: grid;
  }

  .period-lock-form {
    min-width: 0;
    grid-template-columns: 1fr;
  }
}
