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

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

.resources-hero {
  max-width: 900px;
  margin-bottom: 40px;
}

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

.resources-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;
}

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

.resources-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.resources-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

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

.resources-note-card {
  padding: 22px;
}

.resources-note-card h2 {
  margin: 0 0 10px;
  color: #172126;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.resources-note-card p {
  margin: 0;
  color: #53616c;
  font-size: 15px;
  line-height: 1.7;
}

.resources-table-card {
  overflow: hidden;
}

.resources-table-heading {
  padding: 24px 26px;
  border-bottom: 1px solid #dbe4ea;
  background: #f8fbfd;
}

.resources-table-heading h2 {
  margin: 0;
  color: #172126;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.resources-table-heading p {
  margin: 8px 0 0;
  color: #53616c;
  font-size: 16px;
  line-height: 1.55;
}

.resources-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.resources-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: #172126;
  font-size: 15px;
}

.resources-table th,
.resources-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e6edf1;
  text-align: left;
  vertical-align: top;
}

.resources-table th {
  color: #172126;
  background: #ffffff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resources-table tbody tr:nth-child(even) {
  background: #fbfdfe;
}

.resources-table tbody tr:hover {
  background: #eef8ff;
}

.resources-table td:first-child {
  font-weight: 800;
  white-space: nowrap;
}

.resources-state-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.resources-page .resources-table td .resources-state-cell img {
  width: 20px !important;
  max-width: 20px !important;
  height: 13px !important;
  max-height: 13px !important;
  object-fit: cover !important;
  border: 1px solid #dbe4ea;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(23, 33, 38, 0.08);
  display: inline-block !important;
  flex: 0 0 20px;
}

.resources-table a {
  color: #0879c8;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.resources-table a:hover {
  color: #055f9e;
  text-decoration: underline;
}

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

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

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

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

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

  .resources-sidebar {
    grid-template-columns: 1fr;
  }

  .resources-note-card,
  .resources-table-heading {
    padding: 20px;
  }

  .resources-table {
    min-width: 720px;
    font-size: 14px;
  }

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