/* ==============================
   RWJBH Top Docs 2025 – Unique CSS
   Namespace: td25-
   ============================== */

:root {
  --td25-blue: #0c5a8a;
  --td25-navy: #003462;
  --td25-red:  #d62828;
  --td25-gray-900:#1e293b;
  --td25-gray-800:#334155;
  --td25-gray-700:#475569;
  --td25-gray-600:#64748b;
  --td25-gray-500:#94a3b8;
  --td25-gray-300:#e2e8f0;
  --td25-gray-200:#eef2f7;
  --td25-gray-100:#f7f9fc;
  --td25-white:#ffffff;
  --td25-accent:#af8d54;

  --td25-max: 1400px;
  --td25-radius-lg: 18px;
  --td25-radius-md: 12px;
  --td25-radius-sm: 8px;
  --td25-shadow-lg: 0 20px 40px rgba(3, 18, 33, 0.18);
  --td25-shadow-md: 0 12px 24px rgba(3, 18, 33, 0.12);
  --td25-shadow-sm: 0 6px 12px rgba(3, 18, 33, 0.08);

  --td25-font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* Root wrapper – add class="td25" to a parent container for isolation */
.td25 { font-family: var(--td25-font-sans); color: var(--td25-gray-900); line-height: 1.45; }

/* Typographic scale */
.td25 h1,.td25 .td25-h1 { font-size: clamp(28px, 4.4vw, 54px); font-weight: 800; line-height: 1.05; margin: 0 0 .35em; }
.td25 h2,.td25 .td25-h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; line-height: 1.15; margin: 0 0 .6em; }
.td25 h3,.td25 .td25-h3 { font-size: clamp(18px, 2.1vw, 24px); font-weight: 700; margin: 0 0 .5em; }
.td25 p { font-size: clamp(15px, 1.5vw, 18px); color: var(--td25-gray-700); margin: 0 0 1em; }
.td25 .td25-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--td25-blue); font-size: 14px; margin-bottom: .4rem; }

/* Layout helpers */
.td25 .td25-wrap { max-width: var(--td25-max); margin: 0 auto; padding: 0 20px; }
.td25 .td25-grid { display: grid; gap: 24px; }
.td25 .td25-flex { display: flex; gap: 16px; align-items: center; }
.td25 .td25-center { text-align: center; }

/* Section spacing */
.td25 section { padding: 28px 0; }
@media (min-width: 992px) {
  .td25 section { padding: 56px 0; }
}

@media (min-width: 992px) {
  .td25.td25-getchecked section { padding: 0px 0; }
}

/* Buttons */
.td25 .td25-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; border-radius: 999px; padding: 12px 20px; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease;
}
.td25 .td25-btn:focus { outline: 2px solid var(--td25-accent); outline-offset: 2px; }
.td25 .td25-btn--primary { background: var(--td25-red); color: var(--td25-white); box-shadow: var(--td25-shadow-sm); }
.td25 .td25-btn--primary:hover { transform: translateY(-1px); box-shadow: var(--td25-shadow-md); }

/* Cards */
.td25 .td25-card { background: var(--td25-white); border-radius: var(--td25-radius-md); box-shadow: var(--td25-shadow-sm); }

/* Utilities */
.td25 .td25-muted { color: var(--td25-gray-600); }
.td25 .td25-hide { display: none; }

/* Accessible details/summary base (used later for accordions) */
.td25 details.td25-acc { background: var(--td25-gray-200); border: 1px solid var(--td25-gray-300); border-radius: 10px; overflow: hidden; }
.td25 details.td25-acc summary { list-style: none; cursor: pointer; padding: 14px 16px; font-weight: 800; color: var(--td25-gray-900); display: flex; align-items: center; justify-content: space-between; }
.td25 details.td25-acc summary::-webkit-details-marker { display: none; }
.td25 details.td25-acc[open] { background: #e9f2f8; }
.td25 details.td25-acc[open] > summary { border-bottom: 1px solid var(--td25-gray-300); }
.td25 details.td25-acc summary::after { content: ""; width: 22px; height: 22px; border-radius: 999px; outline: 2px solid var(--td25-gray-500); display: inline-block; }
.td25 details.td25-acc[open] summary::after { background: var(--td25-blue); outline-color: var(--td25-blue); }

/* Image reset inside modules */
.td25 img { max-width: 100%; height: auto; display: block; }







/* ==============================
   MODULE 1: HEADER + HERO
   ============================== */
   
/* Wrap the entire hero in its own container with relative positioning */
.td25-hero {
  position: relative;   /* keep hero content positioned to this only */
  margin-bottom: 40px;  /* space between hero and accordions */
  
}

.btn.v1.red.green:hover {
    box-shadow: 0 3px 0 0 #33cc33;
}

.btn.v1.red.green:hover {
    box-shadow: 0px 3px 0px 0.00px #0a2443;
    background-color: #33cc33;
    color: #FFFFFF;
}

/* Keep the image 100% width, block-level */
.td25-hero-img {
  line-height: 0; /* removes extra gap from inline images */
}
.td25-hero-img img {
  width: 100%;
  display: block;
}

/* Position text overlay independent of outside flow */
.td25-hero-content.mainstage {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--td25-white);
  max-width: 100%;
  width: 77em;
  z-index: 2;
}   
   
   
   

.td25-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px !important;
}

.td25-hero-logo img {
  max-height: 48px;
  width: auto;
}

.td25-hero-contact a {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--td25-blue);
  transition: color 0.2s ease;
}
.td25-hero-contact a:hover {
  color: var(--td25-red);
}

.td25-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--td25-shadow-lg);
  margin-bottom: 32px;
}

.td25-hero-content.mainstage {
    position: absolute; /* Hover over the image */
    top: 85%;           /* Center vertically */
    left: 50%;          /* Center horizontally */
    transform: translate(-50%, -50%); /* Perfect center */
    color: #fff;        /* Make text visible over image */
    text-align: center;
    z-index: 2;         /* Ensure it’s above the image */
    max-width: 90%;     /* Optional: prevent overly wide text */
}

.td25-hero-content {
  max-width: 800px;
}
.td25-hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 0.5em;
  color: var(--td25-white);
}
.td25-hero-content h1 .td25-accent {
  color: var(--td25-red);
}
.td25-hero-content .td25-subtitle {
  font-size: 20px;
  color: var(--td25-blue);
  margin-bottom: 1em;
}

/* Responsive Tweaks */
@media (max-width: 1600px) {
  .td25-hero-content.mainstage {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    max-width: 90%;
}
}

@media (max-width: 1440px) {
  .td25-hero-content.mainstage {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    max-width: 90%;
}
}

@media (max-width: 1280px) {
  .td25-hero-content.mainstage {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    max-width: 90%;
}
}

@media (max-width: 1024px) {
     .td25-hero-content.mainstage {
        position: unset;
        top: 11%;
        left: 50%;
        transform: none;
        color: #fff;
        text-align: center;
        z-index: 2;
        max-width: 90%;
    }
    
    .td25-hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 0.5em;
    color: var(--td25-blue);
}
}

@media (max-width: 768px) {
  .td25-hero-header {
    flex-direction: column;
    gap: 12px;
  }
  .td25-hero-content h1 {
    font-size: 26px;
  }
  .td25-hero-content p {
    font-size: 15px;
  }
  
  
}


/* ==============================
   MODULE 2: PHYSICIAN SPECIALTY ACCORDIONS
   ============================== */

.td25-accordion-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--td25-gray-100);
  margin: 2em 0;
}

.td25-accordion-container {
  display: flex;
  flex-wrap: wrap;
  
}

.td25-accordion {
  margin-top: 24px;
  max-width: 289px;
  margin-left: auto;
  margin-right: auto;
}

.td25-acc-item {
  background: var(--td25-white);
  border-radius: var(--td25-radius-md);
  box-shadow: var(--td25-shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.td25-acc-item:hover {
  box-shadow: var(--td25-shadow-md);
}

.td25-acc-header {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 22px;
	font-size: 18px;
	font-weight: 700;
	color: var(--td25-gray-900);
	cursor: pointer;
	transition: background 0.2s ease;
	text-align: left;
}

.td25-acc-header:hover {
  background: var(--td25-gray-200);
}

.td25-acc-icon {
  font-size: 22px;
  color: var(--td25-blue);
  transition: transform 0.3s ease;
}

.td25-acc-body {
	max-height: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: max-height 0.4s ease, padding 0.3s ease;
	padding: 0 22px;
	background: var(--td25-gray-100);
}

.td25-acc-body ul {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}

.td25-acc-body li {
  padding: 6px 0;
  font-size: 16px;
  color: var(--td25-gray-700);
  border-bottom: 1px solid var(--td25-gray-300);
}

.td25-acc-body li:last-child {
  border-bottom: none;
}

.td25-acc-item.active .td25-acc-body {
  max-height: 500px;
}

.td25-acc-item.active .td25-acc-icon {
  transform: rotate(45deg);
}

/* Responsive Behavior */
@media (max-width: 1024px) {
  .td25-accordion {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
}
}



/* ==============================
   MODULE 3: CALL-TO-ACTION + FORM EMBED
   ============================== */
   
   #CallToAction {
   	margin-bottom: 15em;
    margin-top: 15em;
   }

.td25-cta-form {
    background: var(--td25-gray-300);
    padding-top: 10px !important;   /* overrides section default */
    padding-bottom: 10px !important;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}


.td25-cta-grid {
  margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  align-items: anchor-center;
}

.td25-cta-content{
  display: flex;
  align-items: center;
}

.td25new{
  display: flex;
  align-items: center;
}

.td25-cta-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--td25-red);
  line-height: 1.2;
}

.td25-cta-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--td25-white);
}

.td25-cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.td25-cta-benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
}
.td25-cta-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--td25-accent);
  font-weight: bold;
}

.td25-cta-btn {
  margin-top: 16px;
}

/* Form Wrapper */
.td25-cta-form-wrapper {
  background: var(--td25-white);
  border-radius: var(--td25-radius-md);
  box-shadow: var(--td25-shadow-lg);
  position: relative;
  margin-top: -10em;   /* pops out above gray background */
  margin-bottom: -10em; /* pops out below gray background */
  z-index: 2;
}

.td25-cta-form-wrapper iframe {
  border-radius: var(--td25-radius-sm);
  display: block;
  max-width: 100%;
  background: var(--td25-red);
}

.wrap-iframeblue iframe {
  border-radius: var(--td25-radius-sm);
  display: block;
  max-width: 100%;
  background: var(--td25-red);
}

/* Responsive Behavior */
@media (max-width: 992px) {
  .td25-cta-grid {
    grid-template-columns: 1fr;
  }
  .td25-cta-content {
    text-align: center;
  }
  .td25-cta-benefits li {
    text-align: left;
    display: inline-block;
    width: 100%;
  }
   .td25-cta-form-wrapper {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

/* Responsive Behavior */
@media (max-width: 800px) {
  #CallToAction {
    margin-bottom: 5em;
    margin-top: 5em;
}
}


/* ==============================
   MODULE 4: FEATURED TOP DOCS VIDEO GRID
   ============================== */

.td25-featured-docs {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--td25-blue);
  margin: 2em 0;
}

.td25-featured-docs .td25-wrap h2{
  color: var(--td25-white);
}

/* Grid Layout */
.td25-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

/* Doctor Card */
.td25-doc-card {
  background: var(--td25-white);
  border-radius: var(--td25-radius-md);
  box-shadow: var(--td25-shadow-sm);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.td25-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--td25-shadow-md);
}

/* Thumbnail */
.td25-doc-thumb {
  position: relative;
  overflow: hidden;
}
.td25-doc-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.td25-doc-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.td25-doc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.td25-doc-card:hover .td25-doc-overlay {
  opacity: 1;
}
.td25-play-icon {
  font-size: 40px;
  color: var(--td25-white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Card Text */
.td25-doc-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 4px;
}
.td25-doc-card p {
  font-size: 16px;
  color: var(--td25-gray-600);
  margin-bottom: 16px;
}

/* Video Modal */
.td25-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.td25-video-modal.active {
  display: flex;
}
.td25-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.td25-video-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 20px;
}
.td25-video-frame-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.td25-video-frame-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--td25-radius-md);
}

/* Close Button */
.td25-video-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--td25-red);
  color: var(--td25-white);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: var(--td25-shadow-md);
  z-index: 3;
}
.td25-video-close:hover {
  background: #a61c1c;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .td25-play-icon {
    font-size: 32px;
  }
  .td25-doc-card h3 {
    font-size: 18px;
  }
  .td25-doc-card p {
    font-size: 14px;
  }
}


/* ==============================
   MODULE 5: NETWORK HOSPITALS SHOWCASE
   ============================== */

.td25-hospitals {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--td25-white);
  text-align: center;
  background-image: linear-gradient(to bottom, #FFFFFF 15%, #F3F2ED 30%, #D7ECFA);
  border-radius: 10px;
}

.td25-hospitals h2 {
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--td25-red);
}
.td25-hospitals p {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--td25-gray-700);
}

/* Grid */
.td25-hospitals-grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;*/
  align-items: center;
}

/* Logo Card */
.td25-hospital-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  background: transparent;
  border-radius: var(--td25-radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.td25-hospital-card img {
  max-height: 7em;
  width: auto;
  transition: transform 0.3s ease;
}
.td25-hospital-card:hover {
  transform: translateY(-4px);
  background: transparent;
  
}
.td25-hospital-card:hover img {
  transform: scale(1.05);
}

/* Responsive Adjustments */

@media (min-width: 1024px) {
  .td25-1024
  {
  	display: block;
  }
  
  .td25-800
  {
  	display: none;
  }
  
}

@media (max-width: 800px) {
  .td25-1024
  {
  	display: none;
  }
  
  .td25-800
  {
  	display: block;
  }
  
}


@media (max-width: 768px) {
  .td25-hospitals-grid {
    gap: 20px;
  }
  .td25-hospital-card img {
    max-height: 7em;
  }
}


/* ==============================
   MODULE 6: FINAL CALL-TO-ACTION
   ============================== */

.td25-cta {
  background: var(--td25-primary);
  color: var(--td25-white);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--td25-radius-lg);
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: var(--td25-shadow-lg);
}

.td25-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
  font-weight: 800;
}

.td25-cta p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
  color: var(--td25-white);
}

/* CTA Buttons */
.td25-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.td25-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--td25-radius-md);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.td25-btn-primary {
  background: var(--td25-accent);
  color: var(--td25-white);
}

.td25-btn-primary:hover {
  background: var(--td25-accent-dark);
  transform: translateY(-2px);
}

.td25-btn-secondary {
  background: transparent;
  border: 2px solid var(--td25-white);
  color: var(--td25-white);
}

.td25-btn-secondary:hover {
  background: var(--td25-white);
  color: var(--td25-primary);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .td25-cta {
    padding: 40px 20px;
  }

  .td25-btn {
    width: 100%;
    text-align: center;
  }
}


/* ==============================
   MODULE 8: RUTGERS PARTNERSHIP SECTION
   ============================== */
.td25-rutgers {
  background-color: var(--td25-gray-50);
  padding: 80px 20px;
}

.td25-rutgers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Column: Text */
.td25-rutgers-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--td25-blue);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.td25-rutgers-text h2 span {
  color: var(--td25-blue); /* red highlight */
}

.td25-rutgers-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--td25-gray-800);
  margin-bottom: 24px;
}

/* Right Column: Image */
.td25-rutgers-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.td25-rutgers-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* Button */
.td25-rutgers-text .td25-btn {
  margin-top: 12px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .td25-rutgers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .td25-rutgers-text {
    order: 2;
  }

  .td25-rutgers-image {
    order: 1;
  }
}


/* ==============================
   TD25: Patient Stories CTA (Finalized)
   ============================== */

.td25-patient-stories {
  background-color: var(--td25-navy);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
}

.td25-patient-stories-title {
  color: #ffffff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.1;
}

.td25-patient-stories-title a{
  color: #ffffff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.1;
}

.td25-patient-btn {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  border-radius: 0 !important;
  overflow: hidden;
  gap: 0 !important;
  box-shadow: 0 8px 24px rgba(3, 18, 33, 0.12);
}

/* Red label area */
.td25-patient-btn-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--td25-red);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 28px;           /* vertical padding removed so height matches arrow block */
  font-size: 14px;
  line-height: 48px;         /* enforce same height as arrow block */
  white-space: nowrap;
}

/* Blue arrow block */
.td25-patient-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5d9ccf;       /* lighter blue from mock */
  width: 56px;
  height: 48px;              /* match label height */
  flex-shrink: 0;
}

/* Ensure SVG is crisp and centered */
.td25-patient-btn-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Hover states */
.td25-patient-btn:hover .td25-patient-btn-label {
  background: #b61e20;
}
.td25-patient-btn:hover .td25-patient-btn-arrow {
  background: #4a88ba;       /* darker shade of light blue */
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .td25-patient-btn-label {
    padding: 0 18px;
    font-size: 13px;
    line-height: 44px;
  }
  .td25-patient-btn-arrow {
    width: 44px;
    height: 44px;
  }
  .td25-patient-stories {
    padding: 28px 16px;
  }
  .td25-patient-stories-title {
    font-size: 18px;
  }
}


/* ==============================
   TD25: Get Checked For
   ============================== */
.td25-getchecked {
  padding: 48px 20px;
  text-align: center;
}

.td25-gc-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--td25-navy);
  margin-bottom: 20px;
}

/* Two column red list */
.td25-gc-list ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.td25-gc-list {
  margin-bottom: 40px; /* increase this as needed */
}

.td25-gc-list li {
  font-size: 18px;
  font-weight: 700;
  color: var(--td25-red);
  text-align: left;
}

/* ==============================
   TD25 Video Grid
   ============================== */
.td25-video-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CMS block wrapper */
.td25-video-block {
  width: 100%;
}

/* Responsive 16:9 wrapper */
.td25-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
  border-radius: 4px;
}

.td25-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==============================
   Mobile adjustments
   ============================== */
@media (max-width: 768px) {
  .td25-gc-list ul {
    grid-template-columns: 1fr;
  }

  .td25-video-grid {
    grid-template-columns: 1fr;
  }
}



/* =======================
   VIDEO STACK LAYOUT
   ======================= */
.td25-video-stack {
  margin: 60px auto;
  width: 100%;
}

/* ----- Large full-width video ----- */
.td25-video-large {
  width: 100%;
  margin-bottom: 40px;
}

/* ----- 3-Up row below the hero video ----- */
.td25-video-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.td25-video-col {
  width: 100%;
}

/* ----- Universal video wrapper ----- */
.td25-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.td25-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ----- Content block between videos ----- */
.td25-video-content {
  margin: 40px 0 60px;
}

/* =======================
   RESPONSIVE BEHAVIOR
   ======================= */
@media (max-width: 900px) {
  .td25-video-row-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .td25-video-row-3 {
    grid-template-columns: 1fr;
  }
}
