@import url("https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");

:root {
  --nada-red: #d71920;
  --text: #24272a;
  --border: #e3e6e8;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  --green: #dff3e8;
  --peach: #fde8dd;
  --blue: #dff0fa;
  --pink: #fde1ea;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 52% 40%, rgba(120, 130, 140, 0.08), transparent 28rem),
    repeating-radial-gradient(circle at 52% 40%, rgba(120, 130, 140, 0.055) 0 2px, transparent 2px 28px),
    #ffffff;
}

blockquote{
	background:#f7f8f9;
	padding:10px;
	border: 1px solid #000;
	margin:30px 30px;
}

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid #edf0f2;
  background: rgba(255, 255, 255, 0.96);
}

.brand { display: inline-flex; align-items: center; gap: 13px; }

.brand-logo {
  color: var(--nada-red);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}

.brand-divider { width: 1px; height: 31px; background: #6b6f73; }
.brand-intel { color: #303438; font-size: 18px; letter-spacing: 0.2px; }

.page-shell {
  min-height: calc(100vh - 150px);
}

.hero { max-width: 1140px; margin: 0 auto; }

h1 {
  margin: 30px 0 30px 0;
  text-align: center;
  font-size: clamp(12px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.featured-panel {
  margin: 36px auto;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.featured-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(16px, 2vw, 16px);
  line-height: 1.2;
  font-weight: 600;
}

.featured-links {
  display: grid;
  grid-template-columns: repeat(1, minmax(180px, 1fr));
  gap: 14px;
}

.featured-links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  color: #2563eb; /*#202428;*/
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  background: #f7f8f9;
  border: 1px solid #e3e6e8;
}

.featured-links a::after {
  content: "›";
  margin-left: auto;
  padding-left: 16px;
  font-size: 24px;
  line-height: 1;
}

.featured-links a:hover,
.featured-links a:focus-visible {
  color: var(--nada-red);
  border-color: rgba(215, 25, 32, 0.35);
  outline: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: clamp(26px, 3.2vw, 42px);
  align-items: stretch;
}

.topic-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}


.topic-card__header {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 18px 14px;
  background: #fff;
}

.topic-card__header h2 {
  margin: 0;
  font-size: clamp(12px, 1.45vw, 14px);
  line-height: 1.15;
  font-weight:600;
  text-transform: uppercase;
}

.topic-card__body {
  position: relative;
  flex: 1;
  padding: 27px 18px 30px;
}

.topic-card--green .topic-card__body { background: var(--green); }
.topic-card--peach .topic-card__body { background: var(--peach); }
.topic-card--blue .topic-card__body { background: var(--blue); }
.topic-card--pink .topic-card__body { background: var(--pink); }

.topic-card ul { list-style: none; padding: 0; margin: 0; }

.topic-card li {
  margin: 0 0 10px;
  color: #334048;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.18;
}

.article-shell {
    width: 100vw;
}

.article-shell p{
	/*margin-left:1rem;*/
}	

.article-hero {
  padding: 40px 46px;
  margin-bottom: 28px;
}

.article-hero h1{
  text-transform:none;
}

.article-hero--green { background: var(--green); }
.article-hero--peach { background: var(--peach); }
.article-hero--blue { background: var(--blue); }
.article-hero--pink { background: var(--pink); }

.eyebrow {
  display: inline-block;
  margin: 0 0 22px 0;
  padding: 8px 14px;
  background: #4b4f54;
  color: #fff;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.article-hero h1 {
  text-align: left;
  margin: 0 5px 0 0;
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
	font-family: Roboto Serif, Arial, Helvetica, sans-serif;
}

.article-body p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5157;
}

.article-body ul li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom:10px;
}
.article-body th{
	border: 1px solid #000;
	padding:10px;
  font-size: 18px;
  color: #4a5157;
}
.article-body td{
font-size: 18px;
  line-height: 1.6;
  color: #4a5157;
	border: 1px solid #000;
	padding:10px;
}
  
.checklist ul li::marker {
  content: "☐  "; /* Use "□ " for an open checkbox style box */
  font-size: 1.1em; /* Custom box size */
}

.article-disclaimer{
	margin:50px 0;
}

.site-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 0 36px;
  border-top: 1px solid #edf0f2;
  background: rgba(255, 255, 255, 0.95);
}

.site-footer p { margin: 0; font-size: 21px; letter-spacing: 0.01em; }

@media (max-width: 1060px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .topic-card { min-height: 340px; }
}

@media (max-width: 760px) {
  .featured-links { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 66px; padding-inline: 20px; }
  .page-shell { padding: 34px 20px 58px; }
  .cards-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 0; }
  .site-footer { padding-inline: 20px; }
  .site-footer p { font-size: 17px; }
  .article-hero, .article-body { padding: 26px 22px; }
}


.article-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 30px;
  padding: 18px 20px;
  background: #f7f8f9;
  border: 1px solid var(--border);
}

.article-download p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 12px 18px;
  color: #fff;
  background: var(--nada-red);
  border: 2px solid var(--nada-red);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.download-button:hover,
.download-button:focus-visible {
  color: var(--nada-red);
  background: #fff;
  outline: none;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 24, 28, 0.72);
}

.access-gate[hidden] { display: none; }

.access-gate__panel {
  width: min(520px, 100%);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.3);
}

.access-gate__panel h1 {
  margin: 0 0 12px;
  text-align: left;
  font-size: 30px;
}

.access-gate__panel p {
  margin: 0 0 20px;
  color: #4a5157;
  line-height: 1.5;
}

.access-gate__panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.access-gate__panel input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #9aa3aa;
  font: inherit;
}

.access-gate__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.access-gate__actions button {
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: var(--nada-red);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.access-gate__error {
  margin: 0;
  color: var(--nada-red);
  font-weight: 700;
}

@media (max-width: 620px) {
  .article-download {
    align-items: stretch;
    flex-direction: column;
  }
}




.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2563eb;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 16px;
}

/* Arrow styling and smooth slide transition */
.back-arrow {
  fill: currentColor;
  transition: transform 0.2s ease-in-out;
  margin-left: 20px;
}

/* Hover effects */
.back-link:hover {
  color: #1d4ed8;
}

/* Shift the arrow to the left on hover */
.back-link:hover .back-arrow {
  transform: translateX(-4px);
}



/* Base style for the links */
.featured-links a {
  text-decoration: none;
  font-family: sans-serif;
  position: relative;
}

/* Common badge styling rules */
.badge-new::after,
.badge-updated::after {
  font-size: 12px !important;
  padding: 6px 6px;
  margin-left: 8px 8px;
  border-radius: 3px;
  vertical-align: middle;
}

/* Specific styling for the NEW label */
.badge-new::after {
  content: "New" !important;
  background-color: #22c55e; /* Green */
  color: white;
  padding-left:5px !important;
}

/* Specific styling for the UPDATED label */
.badge-updated::after {
  content: "Updated" !important;
  background-color: #3b82f6; /* Blue */
  color: white;
  padding-left:5px !important;
}

.indent {
    margin-left: 40px; /* Best practice: scales dynamically with text size */
  }