/** GENERAL ****/
#content-pane-wrap-84 {
  padding: 0;
}
div#content-pane-wrap-75 {
    padding: 3rem 0 0;
}
div#content-pane-wrap-66 {
  padding: 2rem 0;
}
/**** BANNER ******/
/* Ensure parent containers don't clip the share popup */
.spotlight-banner, .spotlight-banner .content-wrap {
  overflow: visible !important;
}
/* Position the share popup correctly */
.social-link-more .more-share {
  position: absolute; /* absolute so it can overlay outside parent */
  z-index: 9999; /* above everything else */
  top: 100%; /* right below the share icon */
  left: 0; /* align left with icon */
  min-width: 180px; /* optional: set a minimum width */
  background: #fff; /* background for readability */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* subtle shadow */
  padding: 0.5rem 0; /* vertical padding */
  border-radius: 4px; /* optional: rounded corners */
  overflow: visible; /* ensure nothing inside is hidden */
}
/* Optional: spacing between icon and popup */
.social-link-more .more-share::before {
  content: "";
  display: block;
  height: 8px; /* small spacing arrow */
}
/* Keep inner items styled nicely */
.social-link-more .more-share .social-link-more-close {
  position: absolute;
  top: 4px;
  right: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}
/* Ensure hover/focus shows the popup */
.social-link-more:hover .more-share, .social-link-more:focus .more-share {
  display: block;
}

/* ===================================== SPOTLIGHT BANNER BASE ===================================== */
.spotlight-banner {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 55vh, 720px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 65%;
  overflow: hidden;
  color: #fff;
}
/* ===================================== GRADIENT OVERLAY ===================================== */
.spotlight-banner .screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgb(1 23 57 / 92%) 0%, rgb(22 39 62 / 84%) 50%, rgb(35 62 98 / 22%) 100%);
}
/* ===================================== SNOW CANVAS (NEW) ===================================== */
#spotlight-snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* ===================================== ACCESSIBILITY ===================================== */
@media (prefers-reduced-motion: reduce) {
  #spotlight-snow-canvas {
    display: none;
  }
}
.dashboard-2024-news-dynamic .grid-wrapper .flex-features figure .gradient {

    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 40%, rgb(0, 0, 0) 95%);
}
.dashboard-2024-news-dynamic .grid-wrapper .flex-features figure figcaption h2.title {
   font-size: 1.3rem;
    line-height: 1;
}
/* ===================================== ACCORDION Section ===================================== */
#content-pane-wrap-57 {
  padding: 30px 0;
  background: #fff;
  background-size: cover;
  background-position: center 90%;
  color: #fff;
}
#faq, .tech {
  padding: 40px;
  background: url(/Portals/1/Spotlight/2025/NORAD/norad-bg.jpg);
  background-size: cover;
  background-position: center 90%;
  color: #fff;
  border-radius: 4px;
}
.tech.image {
  margin: 2rem 0 1rem 2rem;
}
/* Image */
.image {
  text-align: center;
}
.image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
/* Container */
.techspecs {
  margin-top: 20px;
}
/* Heading */
.techspecs h3 {
  margin-bottom: 5px;
  color: #fff;
}
/* Table container */
.specstable {
  background: #254267;
     border-radius: 8px;
  width: 100%;
  overflow-x: auto; /* allow horizontal scroll on very small screens */
  box-sizing: border-box;
}
/* Header and rows */
.specstable .header, .specstable .row {
  display: flex;
  flex-wrap: nowrap; /* prevent wrapping */
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
/* Flex columns */
.specstable .half {
  flex: 1 1 50%;
  padding: 5px 10px;
  border: 0.1px solid #052842;
  box-sizing: border-box;
  text-align: left;
}
/* Optional: first column right-aligned */
.specstable .half:first-child {
  text-align: right;
}
/* Alternating row colors */
.specstable .row.odd {
  background: rgba(255, 255, 255, 0.1);
}
.specstable .row.even {
  background: rgba(255, 255, 255, 0.2);
}
/* Text styling */
.tech h2 {
  margin-bottom: 1rem;
  text-shadow: 2px 3px #042845;
  color: #fff;
  line-height: 1;
}
.specstable p, .specstable em {
  margin: 0;
  font-size: 16px;
  color: #fff;
}
.half:first-child {
  text-align: right;
}
.half:last-child {
  text-align: left;
}
/* Accordion container */
.sections#faq {
  margin: 2rem 0;
  color: #fff;
  text-align: center;
}
/* Accordion heading */
.sections#faq h2 {
  margin-bottom: 1rem;
  text-shadow: 2px 3px #042845;
  color: #fff;
  line-height: 1;
}
/* Accordion description */
.sections#faq p {
    text-align: left;
    font-size: 17px;
    padding: 0 10px;
    display: block;
}
/* Accordion cards */
.myaccordion .card {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
/* Card header */
.myaccordion .card-header {
  padding: 0;
}
/* Buttons */
.myaccordion .btn.btn-link {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  color: #003366;
  border-radius: 5px;
  transition: background 0.3s;
}
.myaccordion .btn.btn-link:hover {
  background: #f0f0f0;
  text-decoration: none;
}
/* Button layout */
.myaccordion .btn.btn-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* top-align icon with multi-line text */
  position: relative; /* for absolute icon inside */
  padding: 15px 20px;
  font-size: 18px;
  background: white;
  color: #003366;
  border-radius: 5px;
  line-height: 1.3;
}
/* Icon circle */
.myaccordion .fa-stack {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 10px;
}
.myaccordion .fa-stack i.fa-circle {
  width: 100%;
  height: 100%;
  font-size: 24px !important;
}
.myaccordion .fa-stack i.fa-plus, .myaccordion .fa-stack i.fa-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px !important;
}
/* Card body for smooth expansion */
.myaccordion .card-body {
  background: white;
  color: black;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
}
.sections#faq h2.mb-0 {
  margin-bottom: -3px;
  display: block;
}
/* Plus/minus icons */
.myaccordion .fa-stack i.fa-stack-1x {
  transition: transform 0.3s;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none;
  text-decoration: none !important;
}
/* ========================== SANTA TRACKER BLOCK ========================== */
#santa-tracker {
    display: block;
    background: url("/Portals/1/Spotlight/2025/NORAD/norad-bg.jpg") center top no-repeat;
    background-size: cover;
    margin-left: 2rem;
    padding: 20px 10px 0 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}
/* Make entire block clickable */
#santa-tracker a {
  display: block;
  color: inherit;
  text-decoration: none !important;
}
/* Remove underline from all children (h1, h2, h3, p, etc.) */
#santa-tracker a * {
  text-decoration: none !important;
}
/* Hover effect for the block */
#santa-tracker:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
/* Logo */
#santa-tracker .logo {
  max-width: 400px;
  width: 100%;
  padding: 40px 0;
  display: block;
  margin: 0 auto;
}
/* Timer */
#santa-tracker #timer {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
}
/* Timer description */
#santa-tracker p {
  color: #fff;
  text-align: center;
  margin: 0;
}
/* Phone number */
#santa-tracker .phonenumber h3 {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  margin: 10px 0 0 0;
  transition: color 0.3s ease;
  text-decoration: none !important; /* ensures no underline */
}
/* Hover effect for phone number */
#santa-tracker:hover .phonenumber h3 {
  color: #ffcc00;
}
/* World graphic */
#santa-tracker .world img {
  max-width: 400px;
  width: 100%;
  margin: 20px auto 0 auto;
  display: block;
}
/********* MORE SECTION ****/
#more {
    background-size: cover;
    padding: 4rem 0rem;
    background-image: url(/Portals/1/Spotlight/2025/NORAD/norad-bg.jpg);
    color: #fff;
    position: relative;
}
#more h2 {
  color: #fff;
  font-family: "Oswald";
  text-transform: uppercase;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
}
#more .card {
  position: relative;
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#more .card p {
  z-index: 9;
  color: #000;
  font-size: 1.2rem;
  top: 0px;
  font-weight: 600;
  right: 0px;
  background: #fff;
  padding: 10px 25px;
  transition: all 0.5s ease-out;
  text-align: center;
}
#more .card:hover p {
  text-align: center;
  text-decoration: none;
}
#more a:hover {
  text-decoration: none;
}
#more a:hover .card {
  transform: scale(1.08);
}
#more .card {
  transition: transform 0.3s ease-in-out;
}
/* Responsive  */
@media (max-width: 1199px) {
  div#module-9166 {
    margin: 1.3rem;
    padding: 0;
  }
	 .tech.image {
    margin: 2rem 0;
  }
	#santa-tracker {
   
    margin-left: unset;
    margin-top: 2rem;
   
}

@media (max-width: 768px) {
  .dashboard-2024-news-dynamic .grid-wrapper .flex-features figure figcaption h2.title {
    font-size: 1.5rem;
    line-height: 1.3;
}
	.myaccordion .btn.btn-link {
    font-size: 16px;
    padding: 12px 15px;
  }
  .myaccordion .card-body {
    font-size: 14px;
    padding: 12px;
  }
  #faq {
    margin: 0;
  }
  #santa-tracker {
    margin: 1rem 0;
  }
  #santa-tracker .logo, #santa-tracker .world img {
    max-width: 90%;
  }
  #santa-tracker #timer {
    font-size: 2rem;
  }
  #santa-tracker .phonenumber h3 {
    font-size: 1.5rem;
  }
  div#module-9166 {
    margin: 0 -15px 10px;
    padding: 0;
  }
  #content-pane-wrap-57 {
    padding: 4rem 0;
    background: url(/Portals/1/Spotlight/2025/NORAD/norad-bg.jpg);
    background-size: cover;
  }
  #faq, .tech {
            padding: 0;
        background: none;
        margin: 0;
  
  }
  .sections#faq {
        margin: 4rem 0;
    }
  #more {
    background: #254267;
  }
	.tech h2 {
    margin-bottom: 2rem;
    
}
}