.twis-fees {
  --fees-navy: #183451;
  --fees-navy-deep: #0e2035;
  --fees-orange: #ec7f2d;
  --fees-sky: #eaf5fb;
  --fees-line: rgba(24, 52, 81, .14);
  --fees-muted: #637082;
  color: #17202a;
  font-family: "Inter", system-ui, sans-serif;
}
.twis-fees-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--fees-navy), #2e6f9f);
  color: #fff;
}
.twis-fees-hero span {
  color: rgba(255,255,255,.78);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.twis-fees-hero h2 {
  margin: 8px 0;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}
.twis-fees-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.78);
}
.twis-fees-registration {
  min-width: 220px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
}
.twis-fees-registration strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.twis-fees-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.twis-fees-cards article {
  padding: 22px;
  border: 1px solid var(--fees-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(24, 52, 81, .08);
}
.twis-fees-cards h3 {
  margin: 0 0 14px;
  color: var(--fees-navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
}
.twis-fees-cards dl {
  margin: 0;
  display: grid;
  gap: 8px;
}
.twis-fees-cards div,
.twis-fees-info-grid li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.twis-fees-cards dt,
.twis-fees-info-grid strong {
  color: var(--fees-muted);
  font-weight: 800;
}
.twis-fees-cards dd {
  margin: 0;
  color: var(--fees-navy-deep);
  font-weight: 900;
}
.twis-fees-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--fees-line);
  border-radius: 8px;
}
.twis-fees-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
}
.twis-fees-table th,
.twis-fees-table td {
  padding: 14px;
  border-bottom: 1px solid var(--fees-line);
  text-align: left;
  white-space: nowrap;
}
.twis-fees-table th {
  background: #f4f9fc;
  color: var(--fees-navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.twis-fees-table tbody tr:last-child td {
  border-bottom: 0;
}
.twis-fees-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.twis-fees-info-grid article {
  padding: 22px;
  border-radius: 8px;
  background: #fffaf3;
  border: 1px solid rgba(236, 127, 45, .2);
}
.twis-fees-info-grid h3 {
  margin: 0 0 14px;
  color: var(--fees-navy);
  font-size: 20px;
}
.twis-fees-info-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.twis-fees-info-grid p {
  color: var(--fees-muted);
}
@media (max-width: 900px) {
  .twis-fees-hero,
  .twis-fees-cards,
  .twis-fees-info-grid {
    grid-template-columns: 1fr;
  }
  .twis-fees-hero {
    display: grid;
    padding: 24px;
  }
}
