2026-05-14 19:05:46 -08:00
|
|
|
/* Hide Drupal's default page-title block on the front page — our H1 is inside the hero */
|
|
|
|
|
.path-frontpage .block-page-title-block {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-16 08:52:21 -08:00
|
|
|
.page-wrapper {
|
|
|
|
|
max-width: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-14 19:05:46 -08:00
|
|
|
/* ── Hero ───────────────────────────────────────────────────── */
|
|
|
|
|
.rpt-hero {
|
|
|
|
|
background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
|
|
|
|
|
padding: 5rem 1.5rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-hero__inner {
|
|
|
|
|
max-width: 680px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-hero__heading {
|
|
|
|
|
font-size: clamp(2rem, 5vw, 3.25rem);
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #1e3a8a;
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-hero__body {
|
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
color: #4b5563;
|
|
|
|
|
line-height: 1.7;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-hero__actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Shared buttons ─────────────────────────────────────────── */
|
|
|
|
|
.rpt-btn {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: background 0.15s, color 0.15s, border-color 0.15s;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-btn--primary {
|
|
|
|
|
background: #3b82f6;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border: 2px solid #3b82f6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-btn--primary:hover,
|
|
|
|
|
.rpt-btn--primary:focus {
|
|
|
|
|
background: #1d4ed8;
|
|
|
|
|
border-color: #1d4ed8;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-btn--secondary {
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #3b82f6;
|
|
|
|
|
border: 2px solid #3b82f6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-btn--secondary:hover,
|
|
|
|
|
.rpt-btn--secondary:focus {
|
|
|
|
|
background: #3b82f6;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-btn--outline {
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #3b82f6;
|
|
|
|
|
border: 1px solid #3b82f6;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-btn--outline:hover,
|
|
|
|
|
.rpt-btn--outline:focus {
|
|
|
|
|
background: #3b82f6;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Services section ───────────────────────────────────────── */
|
|
|
|
|
.rpt-services {
|
|
|
|
|
padding: 4rem 1.5rem;
|
2026-05-16 08:52:21 -08:00
|
|
|
background: #f3f4f6;
|
2026-05-14 19:05:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-services__header {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-services__heading {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #1e3a8a;
|
|
|
|
|
margin-bottom: 0.375rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-services__subtitle {
|
|
|
|
|
font-size: 1.0625rem;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-services__grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
max-width: 1040px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-service-card {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
border: 1px solid #e5e7eb;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-service-card__title {
|
|
|
|
|
font-size: 1.0625rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #111827;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rpt-service-card__body {
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|