/* Start custom CSS *//* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Work Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  color: #00263e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── Hero Banner ─── */
.trh-hero {
  background: #00263e;
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%, #004e7a 0%, transparent 70%);
  pointer-events: none;
}
.trh-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.trh-hero__heading {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 1rem + 3vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.trh-hero__sub {
  font-size: clamp(0.9375rem, 0.85rem + 0.4vw, 1.0625rem);
  color: #b0cdd9;
  line-height: 1.7;
  margin: 0;
}

/* ─── Quick Navigation ─── */
.trh-quick-nav {
  background: #f7f9fa;
  border: 1px solid #e2ecf1;
  border-radius: 12px;
  padding: 28px 24px;
  margin: 0 auto;
  max-width: 1000px;
}
.trh-quick-nav__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009dd8;
  margin-bottom: 20px;
}
.trh-quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.trh-nav-card {
  background: #ffffff;
  border: 1px solid #e2ecf1;
  border-radius: 10px;
  padding: 18px;
  text-decoration: none;
  transition: box-shadow 200ms, border-color 200ms;
}
.trh-nav-card:hover {
  border-color: #009dd8;
  box-shadow: 0 4px 16px rgba(0, 157, 216, 0.1);
}
.trh-nav-card__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.trh-nav-card__title {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #00263e;
  margin-bottom: 6px;
}
.trh-nav-card__desc {
  font-size: 0.8125rem;
  color: #4f6a7a;
  line-height: 1.4;
}

/* ─── Resource Section ─── */
.trh-section {
  padding: 48px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.trh-section__icon {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.trh-section__heading {
  font-family: 'Georgia', serif;
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  font-weight: 400;
  color: #00263e;
  margin-bottom: 8px;
}
.trh-section__desc {
  font-size: 0.9375rem;
  color: #4f6a7a;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 70ch;
}
.trh-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ─── Resource Cards ─── */
.trh-resource {
  background: #ffffff;
  border: 1px solid #e2ecf1;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 200ms, transform 200ms;
}
.trh-resource:hover {
  box-shadow: 0 8px 24px rgba(0, 38, 62, 0.1);
  transform: translateY(-2px);
}
.trh-resource__label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #009dd8;
  margin-bottom: 10px;
  background: #e6f4fb;
  padding: 4px 10px;
  border-radius: 4px;
}
.trh-resource__title {
  font-family: 'Georgia', serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #00263e;
  margin-bottom: 12px;
  line-height: 1.3;
}
.trh-resource__desc {
  font-size: 0.875rem;
  color: #4f6a7a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.trh-resource__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #009dd8;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 180ms;
}
.trh-resource__btn:hover { background: #007eb0; }
.trh-resource__btn svg { flex-shrink: 0; width: 13px; height: 13px; }/* End custom CSS */