/* Red Report Hero Module - Additional Styles */

{# TURN IT OFF ON PURPOSE FOR RED REPORT#}
header.header.announce_prev .announce-bar.red-report {
   
}

/* Base resets for module */
.rr-hero * {
  box-sizing: border-box;
}

.rr-hero img {
  max-width: 100%;
  height: auto;
}

/* Full width override - break out of any parent container */
.rr-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: visible;
}

/* Ensure parent containers don't clip the ticker overflow */
.rr-hero__wrapper,
.dnd-section,
.dnd-column,
.dnd-module {
  overflow: visible !important;
}

/* Typography */
.rr-hero__headline {
  font-family: var(--font-family-primary, 'Inter', sans-serif);
}

.rr-hero__subheadline {
  font-family: var(--font-family-primary, 'Inter', sans-serif);
  
}
.rr-hero__subheadline p{
font-size: 25px;
font-style: normal;
font-weight: 400; 
line-height: 30px; /* 120% */
color: var(--Primary-Dark-Navy, #000E16);

}

/* Button hover effects */
.rr-hero__cta--primary {
  position: relative;
  overflow: hidden;
}

.rr-hero__cta--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.rr-hero__cta--primary:hover::before {
  left: 100%;
}

/* Ensure ticker tracks display inline */
.rr-hero__ticker-row {
  pointer-events: auto;
  display: flex !important;
  flex-wrap: nowrap !important;
}

.rr-hero__ticker-track {
  display: flex !important;
  flex-shrink: 0;
  flex-wrap: nowrap !important;
  align-items: center;
}

/* Lightning effect overlay for character (optional) */
.rr-hero__character-wrapper {
  position: relative;
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
  .rr-hero__left {
    padding: 40px 16px 100px;
  }
  
  .rr-hero__logo {
    max-width: 220px;
  }
  
  .rr-hero__headline {
    font-size: 16px;
  }
  
  .rr-hero__subheadline {
    font-size: 14px;
  }
  
  .rr-hero__cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .rr-hero__cta {
    font-size: 12px;
  }
  
  .rr-hero__ticker {
    height: 65px;
  }
  
  .rr-hero__ticker-row:nth-child(1) {
    bottom: 14px;
  }
  
  .rr-hero__ticker-row {
    padding: 8px 0;
  }
  
  .rr-hero__ticker-item {
    font-size: 10px;
  }
  
  .rr-hero__ticker-item span {
    padding: 0 16px;
  }
  
  .rr-hero__ticker-item::after {
    padding: 0 8px;
  }
}

/* Large screens */
@media (min-width: 1400px) {
  .rr-hero__logo {
    max-width: 400px;
  }
  
  .rr-hero__headline {
    font-size: 26px;
  }
  
  .rr-hero__subheadline {
    font-size: 20px;
  }
}

/* Extra large screens */
@media (min-width: 1800px) {
  .rr-hero__right {
    width: 55%;
  }
}

/* At 2150px+, character uses right positioning */
@media (min-width: 2150px) {
  .rr-hero__character {
    right: 0 !important;
  }
}

/* Composite image specific styles - uses LEFT positioning */
.rr-hero__composite {
  pointer-events: none;
}

/* Ensure overflow is visible for composite mode */
@media (min-width: 1025px) {
  .rr-hero__right {
    overflow: visible !important;
  }
  
  .rr-hero__visual-container {
    overflow: visible !important;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .rr-hero__ticker-track {
    transform: none !important;
  }
  
  .rr-hero__cta--primary::before {
    display: none;
  }
  
  .rr-hero__character {
    transform: none !important;
  }
}

/* Print styles */
@media print {
  .rr-hero__ticker {
    display: none;
  }
  
  .rr-hero__right {
    display: none;
  }
  
  .rr-hero {
    min-height: auto;
    width: 100%;
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }
}



@media (min-width: 1100px) {
    body header.header.announce_prev div.custom-menu-primary-mega div.dropdown .dropdown-content {
        top: 130px!important ;
    }
}    