.rights-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 84px;
  color: #172126;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.rights-page * {
  box-sizing: border-box;
}

.rights-topbar {
  margin-bottom: 28px;
}

.rights-back,
.rights-primary,
.rights-side-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.rights-back {
  border: 1px solid #1167ff;
  background: #ffffff;
  color: #1167ff;
}

.rights-back:hover {
  background: #eef8ff;
}

.rights-hero {
  max-width: 940px;
  margin-bottom: 26px;
}

.rights-eyebrow {
  margin: 0 0 12px;
  color: #199fe3;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rights-title {
  margin: 0;
  color: #172126;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.rights-intro {
  max-width: 860px;
  margin: 22px 0 24px;
  color: #53616c;
  font-size: 18px;
  line-height: 1.65;
}

.rights-primary {
  width: fit-content;
  border: 1px solid #1167ff;
  background: #1167ff;
  color: #ffffff;
}

.rights-primary:hover {
  background: #0d55d6;
}

.rights-notice,
.rights-card,
.rights-side-card {
  border: 1px solid #dbe4ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.06);
}

.rights-notice {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-left: 4px solid #199fe3;
  background: #eef8ff;
}

.rights-notice h2,
.rights-card h2,
.rights-side-card h2 {
  margin: 0;
  color: #172126;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

.rights-notice h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.rights-notice p,
.rights-card p,
.rights-side-card p,
.rights-table td {
  color: #53616c;
  font-size: 16px;
  line-height: 1.65;
}

.rights-notice p,
.rights-card p,
.rights-side-card p {
  margin: 0;
}

.rights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.rights-main {
  display: grid;
  gap: 22px;
}

.rights-card {
  overflow: hidden;
  padding: 26px;
}

.rights-card h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 18px;
}

.rights-card-intro {
  margin-bottom: 18px !important;
}

.rights-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rights-list article {
  padding: 18px;
  border: 1px solid #e1ebf1;
  border-radius: 8px;
  background: #f8fbfd;
}

.rights-list h3 {
  margin: 0 0 8px;
  color: #172126;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.rights-table-wrap {
  overflow-x: auto;
  border: 1px solid #dbe4ea;
  border-radius: 8px;
}

.rights-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.rights-table th,
.rights-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e1ebf1;
  text-align: left;
  vertical-align: top;
}

.rights-table th {
  color: #172126;
  background: #f8fbfd;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rights-table tr:last-child td {
  border-bottom: 0;
}

.rights-table strong {
  color: #172126;
  font-weight: 850;
}

.rights-side {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.rights-side-card {
  padding: 24px;
}

.rights-side-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.rights-side-card a:not(.rights-side-button) {
  display: block;
  color: #1167ff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

.rights-side-card a:not(.rights-side-button) + a {
  margin-top: 12px;
}

.rights-side-card a:hover {
  color: #0d55d6;
}

.rights-side-button {
  margin-top: 16px;
  width: fit-content;
  border: 1px solid #1167ff;
  background: #ffffff;
  color: #1167ff;
}

.rights-side-button:hover {
  background: #eef8ff;
  color: #1167ff;
}

@media (max-width: 980px) {
  .rights-layout {
    grid-template-columns: 1fr;
  }

  .rights-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rights-list,
  .rights-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .rights-page {
    padding: 38px 18px 64px;
  }

  .rights-title {
    font-size: 40px;
  }

  .rights-intro {
    font-size: 16px;
  }

  .rights-card,
  .rights-side-card,
  .rights-notice {
    padding: 22px;
  }

  .rights-table th,
  .rights-table td {
    padding: 14px;
  }
}
