:root {
--ndh-thc-navy: #0F2A44;
--ndh-thc-green: #5BD46D;
--ndh-thc-light: #EEF2F6;
--ndh-thc-muted: #6a7b8e;
--ndh-thc-radius: 24px;
--ndh-thc-shadow: 0 14px 30px rgba(15, 42, 68, 0.06);
}
.ndh-thc-page {
max-width: 1080px;
margin: 0 auto;
padding: 28px 22px 64px;
color: var(--ndh-thc-navy);
}
.ndh-thc-breadcrumb {
display: flex;
flex-wrap: wrap;
gap: 8px;
font-size: 0.92rem;
color: var(--ndh-thc-muted);
margin-bottom: 18px;
}
.ndh-thc-breadcrumb a { color: var(--ndh-thc-muted); text-decoration: none; }
.ndh-thc-breadcrumb a:hover { color: var(--ndh-thc-navy); }
.ndh-thc-breadcrumb [aria-current="page"] { color: var(--ndh-thc-navy); font-weight: 700; } .ndh-thc-hero {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 28px;
background: #fff;
border: 1px solid rgba(15, 42, 68, 0.08);
border-radius: 28px;
padding: 32px;
box-shadow: var(--ndh-thc-shadow);
margin-bottom: 28px;
align-items: start;
}
.ndh-thc-hero__main { min-width: 0; }
.ndh-thc-hero__title {
margin: 0 0 8px;
font: 800 clamp(1.8rem, 3.6vw, 2.6rem) / 1.05 Arial, sans-serif;
letter-spacing: -0.02em;
}
.ndh-thc-hero__address { margin: 0 0 6px; color: var(--ndh-thc-muted); font-size: 1.05rem; line-height: 1.5; }
.ndh-thc-hero__phone, .ndh-thc-hero__hours { margin: 0 0 6px; font-weight: 700; }
.ndh-thc-hero__phone a { color: var(--ndh-thc-navy); text-decoration: none; }
.ndh-thc-hero__phone a:hover { text-decoration: underline; }
.ndh-thc-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 18px;
}
.ndh-thc-hero__map { min-height: 240px; }
.ndh-thc-hero__map iframe {
width: 100%;
height: 240px;
border: 0;
border-radius: 18px;
background: var(--ndh-thc-light);
}
.ndh-thc-hero__map-link { margin: 8px 0 0; font-size: 0.9rem; }
.ndh-thc-hero__map-link a { color: var(--ndh-thc-muted); } .ndh-thc-section {
background: #fff;
border: 1px solid rgba(15, 42, 68, 0.08);
border-radius: var(--ndh-thc-radius);
padding: 28px;
margin-bottom: 24px;
box-shadow: var(--ndh-thc-shadow);
}
.ndh-thc-section h2 {
margin: 0 0 16px;
font: 800 clamp(1.3rem, 2.4vw, 1.7rem) / 1.1 Arial, sans-serif;
letter-spacing: -0.02em;
}
.ndh-thc-prose p { margin: 0 0 12px; line-height: 1.6; }
.ndh-thc-prose p:last-child { margin-bottom: 0; }
.ndh-thc-section--mock {
background: linear-gradient(135deg, #FFF 0%, #F4FBF6 100%);
border-color: rgba(91, 212, 109, 0.32);
}
.ndh-thc-section--cta {
background: linear-gradient(135deg, #0F2A44 0%, #123A5D 100%);
color: #fff;
border-color: transparent;
}
.ndh-thc-section--cta h2 { color: #fff; }
.ndh-thc-section--cta p { color: rgba(255, 255, 255, 0.86); line-height: 1.6; }
.ndh-thc-section__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 14px;
}
.ndh-thc-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 0 22px;
border-radius: 999px;
background: var(--ndh-thc-light);
color: var(--ndh-thc-navy);
font-weight: 800;
text-decoration: none;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ndh-thc-btn:hover {
transform: translateY(-1px);
box-shadow: 0 10px 22px rgba(15, 42, 68, 0.10);
}
.ndh-thc-btn--primary {
background: var(--ndh-thc-green);
color: #fff;
}
.ndh-thc-btn--primary:hover { box-shadow: 0 10px 22px rgba(91, 212, 109, 0.30); }
.ndh-thc-btn--ghost {
background: rgba(255, 255, 255, 0.10);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.ndh-thc-btn--ghost:hover { background: rgba(255, 255, 255, 0.16); } .ndh-thc-getting-to {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
}
.ndh-thc-info-card {
background: var(--ndh-thc-light);
border-radius: 18px;
padding: 18px;
}
.ndh-thc-info-card h3 { margin: 0 0 10px; font-size: 1.1rem; } .ndh-thc-faqs { display: grid; gap: 10px; }
.ndh-thc-faq {
border: 1px solid rgba(15, 42, 68, 0.08);
border-radius: 14px;
background: var(--ndh-thc-light);
padding: 14px 18px;
}
.ndh-thc-faq summary {
cursor: pointer;
font-weight: 800;
list-style: none;
}
.ndh-thc-faq summary::-webkit-details-marker { display: none; }
.ndh-thc-faq summary::after { content: " +"; float: right; color: var(--ndh-thc-muted); }
.ndh-thc-faq[open] summary::after { content: " −"; }
.ndh-thc-faq__answer { margin-top: 10px; }
.ndh-thc-nearby {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 10px;
}
.ndh-thc-nearby li { background: var(--ndh-thc-light); border-radius: 14px; padding: 14px 16px; }
.ndh-thc-nearby a { color: var(--ndh-thc-navy); font-weight: 700; text-decoration: none; }
.ndh-thc-nearby a:hover { text-decoration: underline; }
.ndh-thc-nearby__town { display: block; font-size: 0.85rem; color: var(--ndh-thc-muted); margin-top: 2px; font-weight: 600; } .ndh-thc-archive__head { text-align: center; margin-bottom: 28px; }
.ndh-thc-archive__head h1 { margin: 0 0 8px; font: 800 clamp(2rem, 4vw, 3rem) / 1.05 Arial, sans-serif; letter-spacing: -0.02em; }
.ndh-thc-archive__sub { color: var(--ndh-thc-muted); font-size: 1.05rem; margin: 0 0 18px; }
.ndh-thc-archive__head .ndh-thc-btn { margin: 4px 4px 0; }
.ndh-thc-archive__empty { padding: 40px; background: #fff; border: 1px dashed rgba(15, 42, 68, 0.16); border-radius: 18px; text-align: center; color: var(--ndh-thc-muted); }
.ndh-thc-region {
background: #fff;
border: 1px solid rgba(15, 42, 68, 0.08);
border-radius: var(--ndh-thc-radius);
padding: 24px;
margin-bottom: 18px;
box-shadow: var(--ndh-thc-shadow);
}
.ndh-thc-region__title { margin: 0 0 14px; font-size: 1.4rem; }
.ndh-thc-region__list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 8px;
}
.ndh-thc-region__link {
display: block;
padding: 12px 16px;
border-radius: 12px;
background: var(--ndh-thc-light);
color: var(--ndh-thc-navy);
text-decoration: none;
}
.ndh-thc-region__link:hover { background: rgba(91, 212, 109, 0.18); }
.ndh-thc-region__link strong { display: block; margin-bottom: 2px; }
.ndh-thc-region__meta { display: block; font-size: 0.85rem; color: var(--ndh-thc-muted); } @media (max-width: 800px) {
.ndh-thc-hero { grid-template-columns: 1fr; padding: 22px; }
.ndh-thc-section { padding: 22px; }
} .ndh-thc-page.ndh-thc-archive {
max-width: 1120px;
padding-top: 0;
}
.ndh-thc-archive__head {
position: relative;
overflow: hidden;
width: 100vw;
max-width: none;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
margin-top: 0;
margin-bottom: clamp(24px, 4vw, 36px);
padding: clamp(42px, 7vw, 78px) max(22px, calc((100vw - 1120px) / 2 + 22px));
text-align: left;
border-radius: 0;
box-shadow: none;
color: #fff;
background:
radial-gradient(circle at 88% 30%, rgba(91, 212, 109, 0.18) 0, rgba(91, 212, 109, 0.10) 20%, transparent 42%),
linear-gradient(135deg, #0F2A44 0%, #123A5D 100%);
}
.ndh-thc-archive__head::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,0));
pointer-events: none;
}
.ndh-thc-archive__head::after {
content: "";
position: absolute;
inset: auto -120px -190px auto;
width: 360px;
height: 360px;
border-radius: 50%;
background: rgba(91,212,109,.16);
}
.ndh-thc-archive__head h1,
.ndh-thc-archive__sub,
.ndh-thc-archive__head p {
position: relative;
z-index: 1;
}
.ndh-thc-archive__head h1 {
max-width: 900px;
margin: 0 0 10px;
color: #fff;
font-size: clamp(2.25rem, 5.2vw, 4.25rem);
line-height: 1.02;
letter-spacing: -0.055em;
}
.ndh-thc-archive__sub {
max-width: 760px;
margin: 0 0 20px;
color: rgba(255,255,255,.88);
font-size: clamp(1.05rem, 1.5vw, 1.18rem);
line-height: 1.6;
}
.ndh-thc-archive__head .ndh-thc-btn {
margin: 4px 8px 0 0;
min-height: 50px;
padding-inline: 24px;
box-shadow: 0 12px 24px rgba(0,0,0,.14);
}
.ndh-thc-archive__head .ndh-thc-btn:not(.ndh-thc-btn--primary) {
background: rgba(255,255,255,.10);
color: #fff;
border: 1px solid rgba(255,255,255,.18);
}
.ndh-thc-archive__head .ndh-thc-btn:not(.ndh-thc-btn--primary):hover {
background: rgba(255,255,255,.16);
}
@media (max-width: 800px) {
.ndh-thc-page.ndh-thc-archive {
padding-top: 0;
}
.ndh-thc-archive__head {
padding: 38px 18px 42px;
margin-bottom: 24px;
}
.ndh-thc-archive__head .ndh-thc-btn {
width: 100%;
margin-right: 0;
}
} .ndh-thc-facts {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 10px;
margin: 18px 0 0;
padding: 16px;
background: var(--ndh-thc-light, #EEF2F6);
border-radius: 16px;
}
.ndh-thc-facts__row {
display: flex;
flex-direction: column;
padding: 4px 8px;
}
.ndh-thc-facts dt {
font-size: 0.76rem;
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--ndh-thc-muted, #6a7b8e);
margin-bottom: 2px;
}
.ndh-thc-facts dd {
margin: 0;
font-weight: 700;
color: var(--ndh-thc-navy, #0F2A44);
font-size: 0.95rem;
} .ndh-thc-hero__map--static img {
width: 100%;
height: auto;
display: block;
border-radius: 18px;
box-shadow: 0 8px 22px rgba(15, 42, 68, 0.10);
} .ndh-thc-find-nearest {
background: linear-gradient(135deg, #0F2A44 0%, #123A5D 100%);
color: #fff;
border-radius: var(--ndh-thc-radius, 24px);
padding: 28px 28px 24px;
margin-bottom: 28px;
box-shadow: 0 14px 30px rgba(15, 42, 68, 0.18);
}
.ndh-thc-find-nearest__title {
margin: 0 0 4px;
color: #fff;
font: 800 clamp(1.4rem, 2.6vw, 1.85rem)/1.1 inherit;
letter-spacing: -0.02em;
}
.ndh-thc-find-nearest__sub {
margin: 0 0 16px;
color: rgba(255, 255, 255, 0.82);
line-height: 1.5;
}
.ndh-thc-find-nearest__form {
display: flex;
flex-wrap: wrap;
gap: 10px;
max-width: 540px;
}
.ndh-thc-find-nearest__form input[type="text"] {
flex: 1 1 220px;
min-width: 180px;
min-height: 48px;
padding: 0 18px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.22);
background: rgba(255, 255, 255, 0.96);
color: var(--ndh-thc-navy, #0F2A44);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.ndh-thc-find-nearest__form input[type="text"]::placeholder {
color: rgba(15, 42, 68, 0.4);
font-weight: 600;
text-transform: none;
letter-spacing: 0;
}
.ndh-thc-find-nearest__form input[type="text"]:focus {
outline: 3px solid var(--ndh-thc-green, #5BD46D);
outline-offset: 2px;
}
.ndh-thc-find-nearest__form .ndh-thc-btn {
flex: 0 0 auto;
}
.ndh-thc-find-nearest__results {
margin-top: 18px;
}
.ndh-thc-find-nearest__results-title {
margin: 0 0 10px;
color: #fff;
font-size: 1.05rem;
font-weight: 800;
}
.ndh-thc-find-nearest__results-title span {
font-weight: 600;
color: rgba(255, 255, 255, 0.72);
}
.ndh-thc-find-nearest__message {
margin: 0;
color: rgba(255, 255, 255, 0.88);
}
.ndh-thc-find-nearest__list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 8px;
counter-reset: nearest;
}
.ndh-thc-find-nearest__item { counter-increment: nearest; }
.ndh-thc-find-nearest__link {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 4px 16px;
padding: 14px 18px 14px 50px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.08);
color: #fff;
text-decoration: none;
position: relative;
transition: background 0.15s ease;
}
.ndh-thc-find-nearest__link::before {
content: counter(nearest);
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
width: 26px;
height: 26px;
border-radius: 50%;
background: var(--ndh-thc-green, #5BD46D);
color: #0F2A44;
font-weight: 900;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
}
.ndh-thc-find-nearest__link:hover {
background: rgba(255, 255, 255, 0.16);
color: #fff;
}
.ndh-thc-find-nearest__name {
font-weight: 800;
font-size: 1rem;
}
.ndh-thc-find-nearest__town {
grid-column: 1;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.72);
font-weight: 600;
}
.ndh-thc-find-nearest__distance {
grid-row: 1 / span 2;
grid-column: 2;
font-weight: 800;
font-size: 0.95rem;
color: var(--ndh-thc-green, #5BD46D);
white-space: nowrap;
}
.ndh-thc-visuallyhidden {
position: absolute !important;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.ndh-thc-archive__regions-title {
margin: 4px 0 14px;
font: 800 clamp(1.2rem, 2.4vw, 1.6rem)/1.1 Arial, sans-serif;
letter-spacing: -0.01em;
color: var(--ndh-thc-navy, #0F2A44);
}
@media (max-width: 600px) {
.ndh-thc-find-nearest { padding: 22px; }
.ndh-thc-find-nearest__form .ndh-thc-btn { width: 100%; }
} .ndh-thc-kicker {
margin: 0 0 8px;
color: var(--ndh-thc-green, #5BD46D);
font-size: .78rem;
font-weight: 900;
letter-spacing: .08em;
text-transform: uppercase;
}
.ndh-thc-split-section {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(260px, .9fr);
gap: 22px;
align-items: start;
}
.ndh-thc-readiness-card {
background: #fff;
border: 1px solid rgba(91, 212, 109, .28);
border-radius: 20px;
padding: 20px;
box-shadow: 0 12px 24px rgba(15,42,68,.06);
}
.ndh-thc-readiness-card h3 {
margin: 0 0 12px;
font-size: 1.05rem;
color: var(--ndh-thc-navy, #0F2A44);
}
.ndh-thc-readiness-card ul {
margin: 0;
padding: 0;
list-style: none;
display: grid;
gap: 10px;
}
.ndh-thc-readiness-card li {
position: relative;
padding-left: 28px;
color: var(--ndh-thc-navy, #0F2A44);
font-weight: 700;
line-height: 1.35;
}
.ndh-thc-readiness-card li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--ndh-thc-green, #5BD46D);
color: #0F2A44;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: .78rem;
font-weight: 900;
}
.ndh-thc-topic-grid,
.ndh-thc-day-grid,
.ndh-thc-popular-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
}
.ndh-thc-topic-card,
.ndh-thc-popular-card {
display: block;
min-height: 100%;
padding: 18px;
border-radius: 18px;
background: var(--ndh-thc-light, #EEF2F6);
color: var(--ndh-thc-navy, #0F2A44);
text-decoration: none;
border: 1px solid rgba(15,42,68,.06);
transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.ndh-thc-topic-card:hover,
.ndh-thc-popular-card:hover {
transform: translateY(-2px);
background: #fff;
box-shadow: 0 12px 24px rgba(15,42,68,.08);
}
.ndh-thc-topic-card span,
.ndh-thc-popular-card strong {
display: block;
margin-bottom: 6px;
font-size: 1.03rem;
font-weight: 900;
}
.ndh-thc-topic-card small,
.ndh-thc-popular-card span {
display: block;
color: var(--ndh-thc-muted, #6a7b8e);
font-size: .9rem;
font-weight: 650;
line-height: 1.45;
}
.ndh-thc-day-card {
padding: 18px;
border-radius: 18px;
background: #fff;
border: 1px solid rgba(15,42,68,.08);
box-shadow: 0 10px 22px rgba(15,42,68,.045);
}
.ndh-thc-day-card h3 {
margin: 0 0 8px;
color: var(--ndh-thc-navy, #0F2A44);
font-size: 1.05rem;
}
.ndh-thc-day-card p {
margin: 0;
color: var(--ndh-thc-muted, #6a7b8e);
line-height: 1.5;
font-weight: 600;
}
.ndh-thc-official-booking {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
background: #FFF8E8;
border-color: rgba(246, 173, 85, .35);
}
.ndh-thc-official-booking p { margin: 0; line-height: 1.55; color: var(--ndh-thc-muted, #6a7b8e); font-weight: 600; }
.ndh-thc-official-booking .ndh-thc-btn { flex: 0 0 auto; background: var(--ndh-thc-navy, #0F2A44); color: #fff; }
.ndh-thc-popular h2 { margin-bottom: 16px; }
.ndh-thc-region { overflow: hidden; }
.ndh-thc-region__title {
list-style: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin: 0 0 14px;
font-size: 1.4rem;
font-weight: 900;
}
.ndh-thc-region__title::-webkit-details-marker { display: none; }
.ndh-thc-region__title::after { content: "+"; color: var(--ndh-thc-muted, #6a7b8e); font-weight: 900; }
.ndh-thc-region[open] .ndh-thc-region__title::after { content: "−"; }
.ndh-thc-region__title em {
margin-left: auto;
font-style: normal;
font-size: .82rem;
font-weight: 900;
letter-spacing: .04em;
text-transform: uppercase;
color: var(--ndh-thc-muted, #6a7b8e);
background: var(--ndh-thc-light, #EEF2F6);
padding: 7px 10px;
border-radius: 999px;
}
@media (max-width: 800px) {
.ndh-thc-split-section { grid-template-columns: 1fr; }
.ndh-thc-official-booking { align-items: stretch; flex-direction: column; }
.ndh-thc-official-booking .ndh-thc-btn { width: 100%; }
} .ndh-thc-section__intro {
max-width: 760px;
margin: -4px 0 18px;
color: var(--ndh-thc-muted, #6a7b8e);
font-weight: 650;
line-height: 1.55;
}
.ndh-thc-ecosystem {
background: linear-gradient(135deg, rgba(15,42,68,.98), rgba(15,42,68,.92));
color: #fff;
border-color: rgba(255,255,255,.08);
}
.ndh-thc-ecosystem h2,
.ndh-thc-ecosystem .ndh-thc-section__intro { color: #fff; }
.ndh-thc-ecosystem .ndh-thc-section__intro { opacity: .86; }
.ndh-thc-ecosystem-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
}
.ndh-thc-ecosystem-card {
display: flex;
min-height: 100%;
flex-direction: column;
gap: 8px;
padding: 18px;
border-radius: 18px;
background: rgba(255,255,255,.08);
color: #fff;
text-decoration: none;
border: 1px solid rgba(255,255,255,.14);
box-shadow: 0 14px 28px rgba(0,0,0,.10);
transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.ndh-thc-ecosystem-card:hover {
transform: translateY(-2px);
background: rgba(255,255,255,.13);
border-color: rgba(91,212,109,.55);
color: #fff;
}
.ndh-thc-ecosystem-card__label {
width: fit-content;
padding: 6px 9px;
border-radius: 999px;
background: rgba(91,212,109,.18);
color: var(--ndh-thc-green, #5BD46D);
font-size: .74rem;
font-weight: 900;
letter-spacing: .04em;
text-transform: uppercase;
}
.ndh-thc-ecosystem-card strong {
display: block;
font-size: 1.02rem;
line-height: 1.25;
}
.ndh-thc-ecosystem-card small {
display: block;
color: rgba(255,255,255,.78);
font-size: .9rem;
line-height: 1.45;
font-weight: 650;
}
@media (max-width: 980px) {
.ndh-thc-ecosystem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
.ndh-thc-ecosystem-grid { grid-template-columns: 1fr; }
} .ndh-thc-transport-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
margin: 0 0 14px;
}
.ndh-thc-transport-grid__cell {
display: grid;
grid-template-columns: 36px 1fr;
grid-template-rows: auto auto auto;
column-gap: 12px;
row-gap: 2px;
padding: 14px 16px;
background: #fff;
border-left: 3px solid var(--ndh-thc-green, #5BD46D);
border-radius: 8px;
box-shadow: 0 2px 6px rgba(15, 42, 68, 0.04);
}
.ndh-thc-transport-grid__icon {
grid-row: 1 / span 3;
grid-column: 1;
align-self: center;
font-size: 1.6rem;
line-height: 1;
text-align: center;
}
.ndh-thc-transport-grid__label {
grid-column: 2;
grid-row: 1;
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ndh-thc-muted, #6a7b8e);
}
.ndh-thc-transport-grid__name {
grid-column: 2;
grid-row: 2;
font-weight: 800;
font-size: 1.02rem;
color: var(--ndh-thc-navy, #0F2A44);
line-height: 1.25;
}
.ndh-thc-transport-grid__meta {
grid-column: 2;
grid-row: 3;
font-size: 0.85rem;
color: var(--ndh-thc-muted, #6a7b8e);
}
.ndh-thc-transport-grid__sep {
color: rgba(106, 123, 142, 0.5);
padding: 0 2px;
} .ndh-thc-transport-grid__cell--empty {
border-left-color: rgba(106, 123, 142, 0.35);
background: rgba(238, 242, 246, 0.5);
}
.ndh-thc-transport-grid__cell--empty .ndh-thc-transport-grid__icon {
opacity: 0.45;
filter: grayscale(1);
}
.ndh-thc-transport-grid__cell--empty .ndh-thc-transport-grid__name {
color: var(--ndh-thc-muted, #6a7b8e);
font-weight: 700;
}
.ndh-thc-transport-grid__cell--empty .ndh-thc-transport-grid__meta {
font-style: italic;
} .ndh-thc-accessibility-section { }
.ndh-thc-accessibility-status {
padding: 14px 18px;
border-radius: 12px;
margin-bottom: 18px;
border-left: 4px solid var(--ndh-thc-green, #5BD46D);
background: rgba(91, 212, 109, 0.08);
}
.ndh-thc-accessibility-status p { margin: 0; line-height: 1.55; }
.ndh-thc-accessibility-status strong { font-weight: 800; color: var(--ndh-thc-navy, #0F2A44); }
.ndh-thc-accessibility-status--positive {
border-left-color: var(--ndh-thc-green, #5BD46D);
background: rgba(91, 212, 109, 0.10);
}
.ndh-thc-accessibility-status--negative {
border-left-color: #f0a020;
background: rgba(240, 160, 32, 0.10);
}
.ndh-thc-accessibility-status--neutral {
border-left-color: var(--ndh-thc-navy, #0F2A44);
background: rgba(15, 42, 68, 0.05);
}
.ndh-thc-accessibility-dvsa {
background: #fff;
border: 1px solid rgba(15, 42, 68, 0.10);
border-radius: 12px;
padding: 18px 22px 14px;
}
.ndh-thc-accessibility-dvsa h3 {
margin: 0 0 6px;
font-size: 1.05rem;
color: var(--ndh-thc-navy, #0F2A44);
}
.ndh-thc-accessibility-dvsa > p {
margin: 0 0 10px;
line-height: 1.55;
}
.ndh-thc-accessibility-list {
list-style: none;
padding: 0;
margin: 8px 0 4px;
display: grid;
gap: 8px;
}
.ndh-thc-accessibility-list li {
padding-left: 28px;
position: relative;
line-height: 1.5;
}
.ndh-thc-accessibility-list li::before {
content: '✓';
position: absolute;
left: 4px;
top: 1px;
width: 18px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
color: var(--ndh-thc-green, #5BD46D);
font-weight: 900;
}
.ndh-thc-accessibility-list strong { color: var(--ndh-thc-navy, #0F2A44); font-weight: 800; }
.ndh-thc-accessibility-cta {
margin: 14px 0 0;
padding-top: 12px;
border-top: 1px dashed rgba(15, 42, 68, 0.12);
font-size: 0.95rem;
}
.ndh-thc-accessibility-cta a { font-weight: 700; } .ndh-thc-hero__phone-note {
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
font-size: 0.85em;
margin-left: 4px;
} .ndh-thc-nearest__list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 10px;
}
.ndh-thc-nearest__link {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 16px;
border-radius: 14px;
background: #fff;
border: 1px solid rgba(15, 42, 68, 0.10);
color: var(--ndh-thc-navy, #0F2A44);
text-decoration: none;
transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.ndh-thc-nearest__link:hover {
border-color: var(--ndh-thc-green, #5BD46D);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(15, 42, 68, 0.06);
}
.ndh-thc-nearest__icon {
flex: 0 0 auto;
font-size: 1.4rem;
line-height: 1;
opacity: 0.7;
}
.ndh-thc-nearest__text {
flex: 1 1 auto;
min-width: 0;
display: flex;
flex-direction: column;
gap: 2px;
}
.ndh-thc-nearest__name {
font-weight: 800;
font-size: 1rem;
line-height: 1.2;
color: var(--ndh-thc-navy, #0F2A44);
}
.ndh-thc-nearest__sub {
font-size: 0.82rem;
color: var(--ndh-thc-muted, #6a7b8e);
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ndh-thc-nearest__distance {
flex: 0 0 auto;
font-weight: 800;
font-size: 0.95rem;
color: var(--ndh-thc-navy, #0F2A44);
white-space: nowrap;
}
.ndh-thc-ad{text-align:center}
.ndh-thc-ad .ndh-pb{margin:0}