/* ===== Ready Teams – Shared Styles (AFPIMS / Bootstrap 3) ===== */

/* ----- DNN / AFPIMS skin overrides -----
   Neutralizes the AFPIMS skin's centered fixed-width container so our
   pages render edge-to-edge (matches the Training page treatment).
   Only targets the skin's own wrappers — our own .container usages
   inside <main> are left alone. */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  max-width: 100% !important;
}

.wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-shadow: none !important;
}

.wrapper > .container,
#content > .container,
.skin-addpad > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hides the TOP header with search bar */
#main-header {
  display: none !important;
}

:root {
  --rt-black: #000000;
  --rt-white: #ffffff;
  --rt-gray: #808285;
  --rt-aubergine: hsl(263, 100%, 16%);
  --rt-grape: #7036FF;
  --rt-spearmint: #00B75B;
  --rt-508-green: #005B27;
  --rt-avocado: #73D30D;
  --rt-lemon-lime: #CEFF00;
  --rt-orange: #FF7300;
  --rt-508-orange: #9B2202;
  --rt-border: #e5e7eb;

  /* ---------- Type Ramp (fluid, single source of truth) ----------
     Body sizes: p minimum 18px per design spec.
     Heading sizes scale fluidly between mobile and desktop via clamp(). */
  --fs-body-sm: 18px;
  --fs-body: 20px;
  --fs-body-lg: clamp(20px, 0.4vw + 16px, 20px);

  --fs-h4: clamp(20px, 0.3vw + 17px, 20px);
  --fs-h3: clamp(24px, 0.5vw + 18px, 24px);
  --fs-h2: clamp(28px, 0.8vw + 19px, 28px);
  --fs-h1: clamp(32px, 1.3vw + 24px, 36px);
  --fs-display: clamp(34px, 3vw + 22px, 56px);
  --fs-hero: clamp(40px, 5vw + 20px, 72px);

  --fs-eyebrow: clamp(24px, 0.5vw + 18px, 24px);
  --fs-eyebrow-lg: clamp(28px, 1.2vw + 20px, 32px);

  --fs-btn: 18px;
  --fs-micro: 16px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "avenir-next-lt-pro", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "geom-graphic", sans-serif;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  color: var(--rt-black);
}

p {
  font-size: var(--fs-body);
}

ul[role="list"], ol[role="list"] {
  list-style: none;
  padding: 0;
}

/* ---------- Buttons ---------- */
a.btn-rt-grape,
.btn-rt-grape {
  background-color: var(--rt-grape) !important;
  color: var(--rt-white) !important;
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none;
}
a.btn-rt-grape:hover,
a.btn-rt-grape:focus,
.btn-rt-grape:hover,
.btn-rt-grape:focus {
  background-color: var(--rt-grape) !important;
  color: var(--rt-white) !important;
  text-decoration: none;
}

.btn-rt-secondary {
  background-color: var(--rt-black);
  color: var(--rt-lemon-lime) !important;
  border: 2px solid var(--rt-lemon-lime);
  border-radius: 4px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  width: auto;
  align-self: flex-start;
  text-decoration: none;
}
.btn-rt-secondary:hover,
.btn-rt-secondary:focus {
  background-color: var(--rt-lemon-lime);
  color: var(--rt-black) !important;
  text-decoration: none;
  opacity: 0.9;
}

.btn-rt-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--rt-white);
  border: 2px solid var(--rt-white);
  border-radius: 4px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none;
}
.btn-rt-outline-white:hover,
.btn-rt-outline-white:focus {
  color: var(--rt-white);
  text-decoration: none;
  opacity: 0.9;
}

.btn-rt-outline-dark {
  background: transparent;
  color: var(--rt-black);
  border: 2px solid var(--rt-black);
  border-radius: 4px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none;
}
.btn-rt-outline-dark:hover,
.btn-rt-outline-dark:focus {
  background: var(--rt-black);
  color: var(--rt-white);
  text-decoration: none;
}

/* ---------- Navbar ---------- */
.rt-navbar {
  background: rgba(0, 0, 0, 1);
  /* position: sticky; */
  position: relative;
  top: 0;
  /* No z-index: avoid creating a stacking context so the parent
     prevention.mil sticky navbar's dropdowns stay on top of us,
     and our own menu overlay (a child) can paint above the hero. */
  min-height: 60px;
  border: none;
  margin-bottom: 0;
}
.rt-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.rt-navbar-brand {
  color: var(--rt-white);
  font-weight: 800;
  font-size: var(--fs-h3);
  text-decoration: none;
  letter-spacing: 1px;
  margin-right: auto;
}
.rt-navbar-brand:hover {
  color: var(--rt-white);
  text-decoration: none;
}
.rt-navbar-brand .accent {
  color: var(--rt-lemon-lime);
}
.rt-navbar-logo {
  height: 80px;
  width: auto;
  display: block;
}
/* Hamburger toggle */
.rt-menu-check {
  display: none;
}
.rt-hamburger {
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.rt-navbar .rt-hamburger span {
  display: block;
  width: 72px;
  height: 9px;
  background: #ccc;
  border-radius: 6px;
  transition: transform 0.3s, opacity 0.3s;
}
.rt-navbar .rt-menu-check:checked ~ .rt-hamburger span:nth-child(1) {
  transform: translateY(19px) rotate(45deg);
}
.rt-navbar .rt-menu-check:checked ~ .rt-hamburger span:nth-child(2) {
  opacity: 0;
}
.rt-navbar .rt-menu-check:checked ~ .rt-hamburger span:nth-child(3) {
  transform: translateY(-19px) rotate(-45deg);
}
/* Menu overlay */
.rt-menu-overlay {
  position: absolute;
  top: 100%;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  transition: right 0.3s ease;
  z-index: 100;
  padding: 32px 0;
}
.rt-menu-check:checked ~ .rt-menu-overlay {
  right: 0;
}
.rt-menu-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rt-menu-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rt-menu-nav li a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: var(--fs-body);
  padding: 16px 32px;
  text-decoration: none;
  display: block;
}
.rt-menu-nav li a:hover {
  color: var(--rt-lemon-lime);
  background: rgba(255,255,255,0.05);
}

/* ---------- Hero ---------- */
.rt-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--rt-black);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.rt-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: left center;
  opacity: 1;
}
.rt-hero-stripe {
  display: block;
  width: 100%;
  height: 48px;
  background: var(--rt-grape);
}
@media (min-width: 992px) {
  .rt-hero-stripe {
    height: 56px;
  }
}
.rt-hero-gradient-lr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(
    to left,
    rgba(100, 40, 200, 0.35),
    transparent 60%
  );
}
.rt-hero-gradient-bt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    transparent 50%
  );
}
.rt-hero-content {
  position: relative;
  z-index: 3;
  margin-right: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .rt-hero-content {
    text-align: right;
    margin-right: 16px;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .rt-hero-content {
    margin-right: 48px;
    margin-bottom: 48px;
  }
}
.rt-hero-tagline {
  font-family: "geom-graphic", sans-serif;
  color: var(--rt-white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--fs-eyebrow-lg);
  margin-bottom: 4px;
}
.rt-hero-title {
  color: var(--rt-lemon-lime);
  font-weight: 700 !important;
  font-size: var(--fs-hero);
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 0;
  white-space: nowrap;
}
.rt-hero-desc {
  max-width: 480px;
}
@media (min-width: 768px) {
  .rt-hero-desc {
    margin-left: auto;
  }
}
.rt-hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-body-lg);
  margin-bottom: 24px;
}
.rt-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .rt-hero-buttons {
    justify-content: flex-end;
  }
}

.btn-rt-white {
  background: var(--rt-white);
  color: var(--rt-black);
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none;
}
.btn-rt-white:hover,
.btn-rt-white:focus {
  color: var(--rt-black);
  text-decoration: none;
  opacity: 0.9;
}

/* ---------- Section spacing ---------- */
.rt-section {
  padding: 80px 0;
  margin-bottom: 0;
}

.rt-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.rt-section-header > h2 {
  font-size: var(--fs-h1);
  margin: 0;
}
.rt-section-header > h2 + p {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: var(--fs-body-lg);
  line-height: 1.5;
}
.rt-section-header--left {
  text-align: left;
}
.rt-section-header--left > h2 + p {
  margin-left: 0;
  margin-right: 0;
}
.rt-section-header--light > h2,
.rt-section-header--light > p {
  color: var(--rt-white);
}

/* ---------- About ---------- */
.rt-about-row {
  display: flex;
  flex-wrap: wrap;
}
.rt-about-row > [class*="col-"] {
  display: flex;
}
.rt-about-card {
  border: 1px solid var(--rt-border);
  border-radius: 16px;
  padding: 32px;
  background: var(--rt-white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  width: 100%;
  margin-bottom: 20px;
}
.rt-about-card h3 {
  font-weight: 700;
  margin-bottom: 24px;
}
.rt-check-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--rt-grape);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rt-grape);
  vertical-align: middle;
}
.rt-bullet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.rt-about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex: 1;
}
.rt-about-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--rt-white);
  border: 1px solid var(--rt-border);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: border-color 0.2s ease;
}
.rt-about-item:hover,
.rt-about-item.is-active {
  border-color: var(--rt-grape);
}

.rt-about-item span {
  margin-right: 4px;
}

.rt-about-check {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--rt-black);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rt-white);
  transition: background-color 0.2s ease;
}
.rt-about-check svg {
  width: 64px;
  height: 64px;
}
.rt-about-item:hover .rt-about-check,
.rt-about-item.is-active .rt-about-check {
  background: var(--rt-grape);
  border: 2px solid var(--rt-grape);
}
.rt-about-item-text {
  color: var(--rt-black);
  font-size: var(--fs-body);
  line-height: 1.5;
}
.rt-about-item:hover .rt-about-item-text,
.rt-about-item.is-active .rt-about-item-text {
  text-shadow: 0 0 0.6px currentColor;
}
.rt-about-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--rt-black);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.rt-about-video iframe,
.rt-about-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.rt-video-placeholder {
  background: var(--rt-red-light);
  border: 1px solid var(--rt-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  width: 100%;
  margin-bottom: 20px;
}
.rt-play-btn {
  width: 96px;
  height: 96px;
  background: var(--rt-red);
  border-radius: 16px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* ---------- Resources ---------- */
.rt-resource-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: none;
  padding: 0;
}
@media (min-width: 768px) {
  .rt-resource-circle {
    width: 96px;
    height: 96px;
  }
}
.rt-resource-circle.active {
  background: var(--rt-black);
  color: var(--rt-lemon-lime);
}
.rt-resource-circle:not(.active) {
  background: var(--rt-grape);
  color: var(--rt-white);
}
.rt-resource-circle svg {
  width: 40px;
  height: 40px;
}

/* ---------- Qualities ---------- */
.rt-qualities-row {
  display: flex;
  flex-wrap: wrap;
}
.rt-qualities-row > [class*="col-"] {
  display: flex;
  margin-bottom: 20px;
}
.rt-flip-wrap {
  width: 100%;
  perspective: 900px;
}
.rt-flip-check {
  display: none;
}
.rt-flip-inner {
  position: relative;
  width: 100%;
  min-height: 360px;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}
.rt-flip-check:checked ~ .rt-flip-inner {
  transform: rotateY(180deg);
}
.rt-flip-front,
.rt-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.rt-flip-front {
  border: 2px solid var(--rt-grape);
  background: var(--rt-black);
}
.rt-flip-back {
  border: 1px solid var(--rt-border);
  background: var(--rt-white);
  transform: rotateY(180deg);
}
.rt-quality-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rt-grape);
  margin-bottom: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rt-quality-dot svg {
  width: 24px;
  height: 24px;
}
.rt-flip-front h3 {
  color: var(--rt-lemon-lime);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 12px;
}
.rt-flip-front p {
  color: var(--rt-white);
  font-size: var(--fs-h2);
  margin-bottom: 24px;
  flex: 1;
}
.rt-flip-back h3 {
  color: var(--rt-black);
  font-weight: 800;
  font-size: var(--fs-h2);
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 16px;
}
.rt-flip-back-text {
  color: var(--rt-black);
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  overflow-y: auto;
}
.rt-flip-back-text::-webkit-scrollbar {
  width: 4px;
}
.rt-flip-back-text::-webkit-scrollbar-thumb {
  background: var(--rt-black);
  border-radius: 4px;
}
.rt-flip-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  font-weight: 700;
  color: var(--rt-black);
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.btn-rt-readmore {
  background-color: var(--rt-grape);
  color: var(--rt-white);
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
}
.btn-rt-readmore:hover,
.btn-rt-readmore:focus {
  background-color: var(--rt-grape);
  color: var(--rt-white);
  text-decoration: none;
}
a.btn-rt-learn-more,
.btn-rt-learn-more {
  background: var(--rt-black);
  color: var(--rt-lemon-lime) !important;
  border: none;
  border-radius: 4px;
  padding: 10px 28px !important;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none;
  align-self: flex-start;
}
a.btn-rt-learn-more:hover,
a.btn-rt-learn-more:focus,
.btn-rt-learn-more:hover,
.btn-rt-learn-more:focus {
  background: var(--rt-lemon-lime);
  color: var(--rt-black) !important;
  text-decoration: none;
}

/* ---------- Lead the Way ---------- */
a.rt-ltw-card,
.rt-ltw-card {
  display: block;
  border: 2px solid var(--rt-grape);
  border-radius: 12px;
  padding: 24px 32px;
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-decoration: none !important;
}
a.rt-ltw-card:hover,
a.rt-ltw-card:focus,
.rt-ltw-card:hover,
.rt-ltw-card:focus-within {
  background: var(--rt-grape);
  border-color: var(--rt-grape);
  text-decoration: none !important;
}
.rt-ltw-card:hover .rt-ltw-title,
.rt-ltw-card:focus-within .rt-ltw-title,
.rt-ltw-card:focus .rt-ltw-title {
  color: var(--rt-white) !important;
}
.rt-ltw-card:hover p,
.rt-ltw-card:focus-within p,
.rt-ltw-card:focus p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.rt-ltw-card .rt-ltw-title,
.rt-ltw-title {
  color: var(--rt-lemon-lime) !important;
  font-weight: 900;
  font-size: var(--fs-h3);
  margin-bottom: 12px;
  margin-top: 0;
}
.rt-ltw-card p.rt-ltw-prompt {
  color: rgba(255, 255, 255, 0.8) !important;
}
.rt-ltw-image {
  width: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  display: block;
  flex: 1 1 auto;
}
.rt-ltw-carousel {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 auto;
}
.rt-ltw-carousel::before {
  content: "";
  display: block;
  padding-top: 66%;
}
.rt-ltw-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: rt-ltw-fade 35s linear infinite;
}
.rt-ltw-slide:nth-child(1) { animation-delay: -1s; }
.rt-ltw-slide:nth-child(2) { animation-delay: 4s; }
.rt-ltw-slide:nth-child(3) { animation-delay: 9s; }
.rt-ltw-slide:nth-child(4) { animation-delay: 14s; }
.rt-ltw-slide:nth-child(5) { animation-delay: 19s; }
.rt-ltw-slide:nth-child(6) { animation-delay: 24s; }
.rt-ltw-slide:nth-child(7) { animation-delay: 29s; }
@keyframes rt-ltw-fade {
  0%      { opacity: 0; }
  2.857%  { opacity: 1; }
  14.286% { opacity: 1; }
  17.143% { opacity: 0; }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .rt-ltw-slide { animation: none; }
  .rt-ltw-slide:nth-child(1) { opacity: 1; }
}
.rt-ltw-image-col {
  display: flex;
  margin-bottom: 0;
}
.rt-ltw-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.rt-ltw-row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 20px;
}
.rt-ltw-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.rt-ltw-list .rt-ltw-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Tools ---------- */
.rt-resource-card {
  border: 1px solid var(--rt-border);
  border-radius: 12px;
  padding: 24px 28px;
  background: var(--rt-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.rt-resource-card > .rt-quality-dot {
  flex: 0 0 auto;
}
.rt-resource-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rt-resource-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rt-resource-card-title {
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--rt-grape);
  margin: 0;
}
.rt-resource-card-text {
  font-size: var(--fs-body-lg);
  color: var(--rt-black);
  margin-bottom: 20px;
}
.rt-resources-hub-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 420px;
}
.rt-resources-hub-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.rt-resources-hub-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(4, 0, 0, 1) 20%, rgba(5, 0, 0, 0.74) 40%, rgba(237, 221, 83, 0) 60%);
}
.rt-resources-hub-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 420px;
  padding: 32px;
}
.rt-resources-hub-title {
  font-size: var(--fs-h2);
}
.rt-tool-card {
  display: flex;
  gap: 20px;
  border: 1px solid var(--rt-border);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--rt-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.rt-tool-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--rt-grape);
  border-radius: 50%;
  flex-shrink: 0;
}
.rt-tools-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-height: 420px;
}
.rt-tools-photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.rt-tools-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    transparent
  );
}
.rt-tools-photo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 420px;
  padding: 32px;
}

/* ---------- Get Involved ---------- */
.rt-gi-stripe {
  position: absolute;
  width: 150px;
  height: 1200px;
  opacity: 1;
}
.rt-gi-stripe-left {
  transform: rotate(-35deg);
  bottom: -450px;
  left: -30px;
}
.rt-gi-stripe-right {
  bottom: -300px;
  right: -30px;
  transform: rotate(35deg);
}
.rt-gi-stripe-about{
  top: -150px;
  left: -100px;
  transform: rotate(35deg);
}
.rt-gi-stripe-bar {
  width: 52px;
  height: 100%;
  background: var(--rt-lemon-lime);
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.rt-gi-stripe-bar-2 {
  left: 72px;
}
.rt-gi-card {
  border: 2px solid var(--rt-grape);
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 20px;
}
.rt-gi-card h3 {
  color: var(--rt-lemon-lime);
  font-weight: 700;
  margin-bottom: 12px;
}
.rt-gi-card p {
  font-size: var(--fs-body);
  line-height: 1.6;
}
.rt-gi-photo {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

/* ---------- Campaign Logos ---------- */
.rt-campaign-band {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  background: var(--rt-black);
}
.rt-campaign-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.rt-campaign-logo {
  display: inline-block;
}
.rt-campaign-logo img {
  height: 64px;
  width: auto;
}
@media (min-width: 768px) {
  .rt-campaign-logo img {
    height: 80px;
  }
}

/* ---------- Utilities ---------- */
.rt-text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}
.rt-text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}
.rt-text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}
.rt-text-white-40 {
  color: rgba(255, 255, 255, 0.4) !important;
}
.rt-text-gray-400 {
  color: var(--rt-gray);
}
.rt-font-800 {
  font-weight: 800;
}

/* ---------- FAQs ---------- */
.rt-faq summary::-webkit-details-marker { display: none; }
.rt-faq summary::marker { display: none; content: ''; }
.rt-faq .rt-faq-arrow { transition: transform 0.2s; display: inline-block; transform: rotate(-90deg); }
.rt-faq[open] .rt-faq-arrow { transform: rotate(90deg); color: var(--rt-white) !important; }
.rt-faq[open] summary { background: var(--rt-grape) !important; color: var(--rt-white) !important; }

.rt-faq {
  margin-bottom: 8px;
}
.rt-faq summary {
  background: var(--rt-black);
  color: var(--rt-lemon-lime);
  font-weight: 700;
  font-size: var(--fs-h4);
  padding: 16px 20px;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rt-faq .rt-faq-arrow {
  color: var(--rt-white);
  font-size: var(--fs-body);
}
.rt-faq-body {
  padding: 20px 24px;
  border: 1px solid var(--rt-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.rt-faq-body p,
.rt-faq-body ul {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--rt-text);
}
.rt-faq-body p {
  margin-bottom: 12px;
}
.rt-faq-body p:last-child {
  margin-bottom: 0;
}
.rt-faq .rt-faq-body ul {
  line-height: 2;
  list-style: disc outside;
  padding-left: 20px;
  margin-bottom: 12px;
}
.rt-faq .rt-faq-body ul li {
  display: list-item;
  list-style: disc outside;
}
.rt-faq-body .rt-faq-related {
  color: var(--rt-grape);
  font-size: var(--fs-body-lg);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ---------- About page ---------- */
.rt-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #1a1a1a 100%);
  padding: 80px 0;
}
.rt-page-hero-eyebrow {
  color: var(--rt-white);
  font-size: var(--fs-eyebrow-lg);
  margin-bottom: 0;
  font-weight: 700;
}
.rt-page-hero-title {
  color: var(--rt-lemon-lime);
  font-size: var(--fs-hero);
  line-height: 1.05;
  margin-top: -6px;
}

.rt-info-card {
  background: var(--rt-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  width: 100%;
}
.rt-info-card-lede {
  color: var(--rt-grape);
  font-weight: 700;
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  margin-bottom: 24px;
}
.rt-info-card p {
  color: var(--rt-text);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rt-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-height: 420px;
}
.rt-photo-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rt-photo-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
}
.rt-photo-card-caption .rt-photo-card-eyebrow {
  color: var(--rt-lemon-lime);
  font-weight: 800;
  font-size: var(--fs-eyebrow-lg);
}
.rt-photo-card-caption .rt-photo-card-title {
  color: var(--rt-white);
  font-weight: 800;
  font-size: var(--fs-h1);
  margin-bottom: 0;
  font-style: italic;
  margin-top: -5px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.rt-photo-card-caption .rt-photo-card-title::after {
  content: ">>>>>>>>>>";
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  margin-left: 12px;
  color: #2a2a2a;
  letter-spacing: -2px;
  font-style: normal;
  font-weight: 700;
  font-size: var(--fs-h1);
}
.rt-hero-chevrons {
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: -2px;
  font-size: 24px;
}
.rt-chevrons {
  display: inline-block;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 12px;
  color: #2a2a2a;
  letter-spacing: -2px;
  font-size: 36px;
  line-height: 1;
}
.rt-chevrons::before {
  content: ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>";
}
.rt-chevrons-2 {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: #2a2a2a;
  letter-spacing: -2px;
  font-family: "geom-graphic", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}
.rt-chevrons-2::before {
  content: ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>";
}

.rt-section-dark-texture {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0) 100%),
    #111
    url('/Portals/130/images/ReadyTeams/assets/metal-texture.png') center/15% repeat;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 80px;
}

.rt-feature-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Source image is 3544x4962 (portrait). Letting the column take its
     natural aspect ratio keeps the entire image visible at any width
     and keeps the keyhole at a stable horizontal position. */
  aspect-ratio: 3544 / 4962;
}
.rt-feature-photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/Portals/130/images/ReadyTeams/assets/why-who-how.png');
}
.rt-feature-photo-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(4, 0, 0, 1) 10%, rgba(5, 0, 0, 0.74) 20%, rgba(237, 221, 83, 0) 30%);
}
.rt-feature-photo-eyebrow {
  color: var(--rt-lemon-lime);
  font-size: var(--fs-eyebrow-lg);
  margin: 0 0 8px;
  line-height: 1;
}
.rt-feature-photo-title {
  color: var(--rt-white);
  font-style: italic;
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.rt-feature-photo-chevrons {
  color: #2a2a2a;
  font-size: 28px;
  letter-spacing: -2px;
  font-weight: 700;
  line-height: 1;
}

.rt-info-block {
  padding-left: 24px;
  margin-bottom: 40px;
}
.rt-info-block:last-child {
  margin-bottom: 0;
}
.rt-info-block h3 {
  color: var(--rt-lemon-lime);
  font-size: var(--fs-h2);
  margin-top: 0;
  margin-bottom: 16px;
}
.rt-info-block p {
  color: var(--rt-white); 
  font-size: var(--fs-body);
  margin-bottom: 12px;
}
.rt-info-block p:last-child {
  margin-bottom: 0;
}
.rt-www-text-col .rt-info-block ul {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.8);
  list-style: disc outside;
  padding-left: 20px;
  margin: 0;
}
.rt-www-text-col .rt-info-block ul li {
  display: list-item;
  list-style: disc outside;
}

.rt-step-card {
  border: 2px solid var(--rt-grape);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.rt-step-card:last-child {
  margin-bottom: 0;
}
.rt-step-card h4 {
  color: var(--rt-white);
  font-size: var(--fs-h3);
  margin-top: 0;
  margin-bottom: 8px;
}
.rt-step-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body);
  margin-bottom: 16px;
}
.rt-step-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rt-www-header {
  color: var(--rt-lemon-lime);
  font-weight: 800;
  font-size: var(--fs-h1);
}

.rt-contact-lede {
  color: var(--rt-text);
  font-size: var(--fs-body);
  margin-bottom: 24px;
}
a.rt-contact-email,
a.rt-contact-email:link,
a.rt-contact-email:visited {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rt-black);
  color: var(--rt-white) !important;
  font-weight: 700;
  font-size: var(--fs-body);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  letter-spacing: 0.2px;
}
a.rt-contact-email:hover,
a.rt-contact-email:focus {
  color: var(--rt-lemon-lime) !important;
  text-decoration: none !important;
  filter: brightness(1.1);
}
.rt-contact-email .rt-contact-email-address {
  color: inherit;
}
.rt-contact-email-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--rt-lemon-lime);
}
/* ---------- Resources page ---------- */
.rt-resource-tabs {
  background: var(--rt-white);
  min-height: 60px;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--rt-border);
}
.rt-resource-tabs .container {
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.rt-resource-tabs .container:has(.rt-tab-nav--qualities) {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
}
.rt-tab-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}
.rt-tab-nav li {
  display: flex;
  align-items: stretch;
  position: relative;
}
.rt-tab-nav li a {
  text-decoration: none;
  color: var(--rt-text);
  font-size: var(--fs-body);
  font-family: "geom-graphic";
  font-weight: 700;
  padding: 0 30px;
  display: flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}
.rt-tab-nav li a:hover {
  background: #f3f4f6;
  color: var(--rt-text);
}
.rt-tab-nav li a.active {
  background: var(--rt-border);
  color: var(--rt-text);
}
.rt-tab-nav li a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--rt-border);
}

/* Qualities tab variant: no background, purple active, uppercase bold */
.rt-tab-nav--qualities {
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
}
.rt-tab-nav--qualities li {
  flex-shrink: 0;
}
.rt-tab-nav--qualities li a {
  text-transform: uppercase;
  font-weight: 800;
  font-size: var(--fs-body);
  color: var(--rt-black);
  background: transparent;
  padding: 0 16px;
}
.rt-tab-nav--qualities li a:hover {
  background: transparent;
  color: var(--rt-grape);
}
.rt-tab-nav--qualities li a.active {
  color: var(--rt-grape);
  background: transparent;
  font-weight: 800;
}
.rt-tab-nav--qualities li a.active::after {
  display: none;
}

.rt-resources-intro {
  background: #f9fafb;
  padding: 64px 0;
}

.rt-resources-intro-lede {
  font-size: var(--fs-body-lg);
  text-align: justify;
  text-align-last: center;
  color: var(--rt-text);
  padding: 0 40px;
  margin-bottom: 12px;
}
.rt-basics-section {
  background: var(--rt-white);
  padding: 0;
}
.rt-basics-section .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.rt-basics-row {
  display: flex;
  align-items: stretch;
  margin: 0;
}
.rt-basics-row > div {
  padding: 0;
  width: 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.rt-basics-left {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--rt-black);
}
.rt-basics-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rt-basics-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 60%, transparent);
  text-align: center;
}
.rt-basics-chevron {
  font-size: 18px;
  color: var(--rt-white);
  margin-bottom: 10px;
  display: block;
  text-align: right;
}
.rt-basics-chevron span {
  display: inline-block;
  transform: rotate(90deg);
}
.rt-basics-desc {
  color: var(--rt-white);
  font-size: var(--fs-body);
  line-height: 1.5;
  margin-bottom: 16px;
}
.rt-basics-label {
  color: var(--rt-white);
  font-size: var(--fs-btn);
  margin-bottom: 0;
}
.rt-basics-title {
  color: var(--rt-white);
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin-top: 4px;
}

.rt-res-panel {
  background: #f0f0f0;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
}
.rt-res-panel-heading {
  color: #1a1a1a;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 30px;
}
.rt-res-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
  background: var(--rt-white);
  padding: 16px;
  border-radius: 8px;
}
.rt-res-item:last-child {
  margin-bottom: 0;
}
.rt-res-thumb {
  width: 70px;
  height: 90px;
  min-width: 70px;
  background: var(--rt-white);
  border: 1px solid var(--rt-border);
}
.rt-res-info p {
  color: var(--rt-text);
  font-size: var(--fs-body);
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ---------- Collection grid (Resources page) ---------- */
[hidden] {
  display: none !important;
}
.rt-collection {
  background: var(--rt-white);
  padding: 80px 0;
}
.rt-collection > .container {
  width: auto;
  max-width: 1300px;
}
.rt-collection-header {
  text-align: center;
  margin-bottom: 48px;
}
.rt-collection-title {
  font-size: var(--fs-h1);
  color: #1a1a1a;
  margin: 0 0 12px;
}
.rt-collection-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--rt-text);
  margin: 0;
}
.rt-collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
}
@media (min-width: 768px) {
  .rt-collection-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.rt-collection-card {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.rt-collection-thumb {
  width: auto;
  height: 280px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.rt-collection-body {
  flex: 1;
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.rt-collection-body .rt-collection-share-label {
  margin-top: auto;
}
.rt-collection-body .rt-collection-share {
  margin-top: 0;
}
.rt-collection-card-title {
  font-size: var(--fs-h3);
  color: #1a1a1a;
  margin: 0 0 8px;
}
.rt-collection-card-desc {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--rt-text);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.rt-collection-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
a.rt-btn-download-dark,
.rt-btn-download-dark {
  background: var(--rt-black);
  color: var(--rt-lemon-lime) !important;
  border: none;
  border-radius: 4px;
  /* padding: 10px 28px; */
  padding: 4px 18px !important;
  font-weight: 700;
  font-size: var(--fs-btn);
  display: inline-block;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}
a.rt-btn-download-dark:hover,
a.rt-btn-download-dark:focus,
.rt-btn-download-dark:hover,
.rt-btn-download-dark:focus {
  background: var(--rt-grape);
  color: var(--rt-white) !important;
  text-decoration: none !important;
}
.rt-collection-share-label {
  font-size: var(--fs-btn);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.rt-collection-share {
  display: flex;
  gap: 6px;
}
.rt-collection-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--rt-black);
  color: var(--rt-white);
  border-radius: 3px;
  text-decoration: none;
  font-size: var(--fs-micro);
}
.rt-collection-share a:hover,
.rt-collection-share a:focus {
  background: var(--rt-grape);
  color: var(--rt-white);
  text-decoration: none;
}

/* ---------- Videos list (Resources page) ---------- */
.rt-video-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.rt-video-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .rt-video-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}
.rt-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--rt-black);
  border-radius: 4px;
  overflow: hidden;
}
.rt-video-player iframe,
.rt-video-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.rt-video-info {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .rt-video-info {
    height: 100%;
  }
  .rt-video-info .rt-collection-share-label {
    margin-top: auto;
  }
}

/* ---------- Quality detail sections (Qualities page) ---------- */
.rt-quality-section {
  background: #111 url('/Portals/130/images/ReadyTeams/assets/metal-texture.png') center/15% repeat;
}
.rt-quality-row {
  display: flex;
  flex-wrap: wrap;
  min-height: 640px;
}
.rt-quality-section--reverse .rt-quality-row {
  flex-direction: row-reverse;
}
.rt-quality-image,
.rt-quality-content {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 640px;
}
.rt-quality-image {
  background-color: transparent;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}
.rt-quality-image-caption {
  position: absolute;
  right: 20px;
  bottom: 120px;
  left: auto;
  text-align: right;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}
.rt-quality-section--reverse .rt-quality-image-caption {
  left: 20px;
  right: auto;
  text-align: left;
}
.rt-quality-image-eyebrow {
  font-family: "geom-graphic", sans-serif;
  color: var(--rt-lemon-lime);
  font-size: var(--fs-eyebrow-lg);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
  text-transform: none;
}
.rt-quality-image-title {
  font-family: "geom-graphic", sans-serif;
  color: var(--rt-white);
  font-size: clamp(32px, 5vw + 8px, 60px);
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .rt-quality-image-caption {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
  .rt-quality-section--reverse .rt-quality-image-caption {
    left: 24px;
    right: auto;
  }
}
.rt-quality-content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  background: var(--rt-white);
}
.rt-quality-definition {
  font-size: var(--fs-h1);
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 32px;
}
.rt-quality-actions {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.rt-quality-action {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rt-quality-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--rt-white);
  color: var(--rt-lemon-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-body);
  border-radius: 2px;
}
.rt-quality-check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rt-quality-action-text {
  color: var(--rt-text);
  font-size: var(--fs-body);
  line-height: 1.5;
}
.rt-quality-footer {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
}
.rt-quality-share-group {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rt-border);
  padding-right: 32px;
}
.rt-quality-share-label {
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.rt-quality-share {
  display: flex;
  gap: 8px;
}
.rt-quality-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--rt-black);
  color: var(--rt-white);
  border-radius: 3px;
  text-decoration: none;
  font-size: var(--fs-micro);
}
.rt-quality-share a:hover,
.rt-quality-share a:focus {
  background: var(--rt-grape);
  color: var(--rt-white);
  text-decoration: none;
}
.rt-quality-share a .rt-share-svg,
.rt-collection-share a .rt-share-svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.rt-quality-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}
.rt-quality-buttons a.rt-btn-download-dark,
.rt-quality-buttons .rt-btn-download-dark {
  font-size: var(--fs-micro);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .rt-quality-image,
  .rt-quality-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .rt-quality-image {
    min-height: 320px;
  }
  .rt-quality-content {
    padding: 40px 24px;
  }
}

/* ---------- Full Qualities download section ---------- */
.rt-quality-download {
  background: #f4f4f4;
  padding: 80px 0;
}
.rt-quality-download .container {
  width: auto;
  max-width: 1400px;
}
.rt-section-header > .rt-quality-download-title {
  font-family: "geom-graphic", sans-serif;
  font-size: var(--fs-h2);
  color: var(--rt-black);
  margin: 0 0 32px;
  white-space: nowrap;
}
.rt-quality-download-thumb {
  display: block;
  margin: 0 auto 24px;
  max-width: 320px;
  width: 100%;
  height: auto;
}
.rt-quality-download-share-label {
  text-align: left;
  font-size: var(--fs-btn);
  font-weight: 800;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.rt-quality-download-actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.rt-quality-download .rt-quality-footer {
  justify-content: center;
}
.rt-quality-download .rt-quality-share-label {
  text-align: left;
}
.prevention-header {
  display: block;
  width: 100%;
  line-height: 0;
}
.prevention-header img {
  display: block;
  width: 100%;
  height: auto;
}

/* =====================================================================
   Layout helpers & background-image variants
   (replaces all inline styles previously scattered across templates)
   ===================================================================== */

/* Overlay positioning helper used by page-hero and dark-section containers. */
.rt-overlay-content {
  position: relative;
  z-index: 2;
}
.rt-overlay-content--z10 {
  position: relative;
  z-index: 10;
}

/* Section background variants */
.rt-section--white { background: #fff; }
.rt-section--gray { background: #f9fafb; }
.rt-section--dark {
  background: #000;
  position: relative;
  overflow: hidden;
}
.rt-section--metal {
  background: #1a1a1a url('/Portals/130/images/ReadyTeams/assets/metal-texture.png') center/15% repeat;
  position: relative;
  overflow: hidden;
}
.rt-section--contact {
  padding-top: 48px;
  padding-bottom: 64px;
}
.rt-section-title--inline {
  margin-bottom: 20px;
}

/* Flex row + column helpers (Bootstrap 3 doesn't equal-height by default) */
.rt-row-flex {
  display: flex;
  flex-wrap: wrap;
}
.rt-col-flex {
  display: flex;
}
.rt-col-flex--stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Page hero (base + per-page background) */
.rt-page-hero {
  background-size: cover;
  background-position: center;
}
.rt-page-hero--about     { background-image: url('/Portals/130/images/ReadyTeams/assets/about-header.jpg'); background-position: center top; }
.rt-page-hero--qualities { background-image: url('/Portals/130/images/ReadyTeams/assets/qualities-header.jpg'); }
.rt-page-hero--resources { background-image: url('/Portals/130/images/ReadyTeams/assets/resources-header.jpg'); }

/* Home hero */
.rt-hero-bg--home {
  background-image: url('/Portals/130/images/ReadyTeams/assets/hero.png');
}

/* About-page photo card */
.rt-photo-card-bg--about-hero {
  background-image: url('/Portals/130/images/ReadyTeams/assets/about-hero.png');
}

/* About: who/why/how layout shims */
.rt-www-container {
  position: relative;
  z-index: 2;
  padding-left: 0;
}
.rt-www-row {
  margin: 0;
}
.rt-www-photo-col {
  padding: 0;
}
.rt-www-text-col {
  max-width: none;
}

/* Resource cards (home): equal-height columns */
.rt-resource-card--equal {
  flex: 1;
}
.rt-resources-hub-card--full {
  width: 100%;
}

/* Tools hub background */
.rt-resources-hub-bg--tools {
  background-image: url('/Portals/130/images/ReadyTeams/assets/tools-hub.png');
}
.rt-resources-hub-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: var(--fs-h2);
}
.rt-resources-hub-text {
  max-width: 360px;
  margin-bottom: 24px;
}

/* Lead-the-way prompt copy under each ENGAGE/EQUIP/EXECUTE card */
.rt-ltw-prompt {
  margin: 0;
  font-weight: 600;
}

/* Lead-the-way carousel slide backgrounds (loop index 1..7) */
.rt-ltw-slide--1 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-0.png'); }
.rt-ltw-slide--2 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-1.png'); }
.rt-ltw-slide--3 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-2.png'); }
.rt-ltw-slide--4 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-3.png'); }
.rt-ltw-slide--5 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-4.png'); }
.rt-ltw-slide--6 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-5.png'); }
.rt-ltw-slide--7 { background-image: url('/Portals/130/images/ReadyTeams/assets/carousel/image-6.png'); }

/* Quality detail image backgrounds (per quality) */
.rt-quality-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.rt-quality-image--integrity      { background-image: url('/Portals/130/images/ReadyTeams/assets/quality-integrity.png'); }
.rt-quality-image--trust          { background-image: url('/Portals/130/images/ReadyTeams/assets/quality-trust.png'); }
.rt-quality-image--accountability { background-image: url('/Portals/130/images/ReadyTeams/assets/quality-accountability.png'); }
.rt-quality-image--respect        { background-image: url('/Portals/130/images/ReadyTeams/assets/quality-respect.png'); }
.rt-quality-image--camaraderie    { background-image: url('/Portals/130/images/ReadyTeams/assets/quality-camaraderie.png'); }
.rt-quality-image--adaptability   { background-image: url('/Portals/130/images/ReadyTeams/assets/quality-adaptability.png'); }

/* Quality details paragraph + bold buttons + spacer */
.rt-quality-details {
  font-size: var(--fs-h3);
  font-weight: 800;
  padding-bottom: 8px;
}
.rt-btn-strong {
  font-weight: 800;
}
.rt-collection-spacer {
  height: 8rem;
}

/* Flipcard list item spacing */
.rt-flip-back ul.rt-flip-back-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.rt-flip-back ul.rt-flip-back-list li {
  display: list-item;
  list-style: none;
}
.rt-flip-back ul.rt-flip-back-list li + li {
  margin-top: 10px;
}

/* Inline emphasis spans (resources intro) */
.rt-text-emphasis-grape {
  font-weight: 700;
  color: var(--rt-grape);
}

/* Audience-text variants (Resources page). The active <body> class
   js-rt-filter-active--{all|leaders|teamers} (toggled by main.js) drives
   which variant is visible. Defaults to --all when JS hasn't run yet. */
.js-rt-aud-text { display: none; }
.js-rt-aud-text--all { display: inline; }
body.js-rt-filter-active--all .js-rt-aud-text--all,
body.js-rt-filter-active--leaders .js-rt-aud-text--leaders,
body.js-rt-filter-active--teamers .js-rt-aud-text--teamers { display: inline; }
body.js-rt-filter-active--leaders .js-rt-aud-text--all,
body.js-rt-filter-active--leaders .js-rt-aud-text--teamers,
body.js-rt-filter-active--teamers .js-rt-aud-text--all,
body.js-rt-filter-active--teamers .js-rt-aud-text--leaders { display: none; }

/* ---------- Back to Top ---------- */
#rt-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--rt-grape);
  color: var(--rt-white);
  font-size: 20px;
  font-weight: 800;
  rotate: 90deg;
  line-height: 48px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  z-index: 1050;
}
#rt-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#rt-back-to-top:hover,
#rt-back-to-top:focus {
  background-color: var(--rt-aubergine);
  outline: none;
}
#rt-back-to-top:focus-visible {
  outline: 2px solid var(--rt-white);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  #rt-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 18px;
  }
}

/* =====================================================================
   Responsive overrides (Bootstrap 3 breakpoints)
   xs  < 768px   sm 768-991   md 992-1199   lg >= 1200
   ===================================================================== */

/* ---------- Large desktops (>= 1200px) ---------- */
@media (min-width: 1200px) {
  /* Widen the navbar so the logo and hamburger sit nearer the viewport
     edges instead of leaving a large dead-zone in the middle. */
  .rt-navbar .container {
    width: 100%;
    max-width: none;
    padding-left: 64px;
    padding-right: 64px;
  }
}

/* ---------- Tablet & smaller (<= 991px) ---------- */
@media (max-width: 991px) {
  .rt-section {
    padding: 56px 0;
  }
  .rt-page-hero {
    padding: 56px 0;
  }
  .rt-feature-photo-bg {
    background-position: center;
  }
  .rt-www-timeline {
    padding-top: 32px;
  }
  .rt-info-card {
    padding: 28px;
  }
  .rt-photo-card {
    min-height: 320px;
  }
  .rt-resources-hub-card,
  .rt-resources-hub-content {
    min-height: 320px;
  }
  .rt-ltw-row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .rt-resource-tabs .container {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .rt-tab-nav {
    flex-wrap: nowrap;
  }
  .rt-tab-nav li a {
    padding: 0 16px;
    white-space: nowrap;
  }
  .rt-gi-stripe {
    width: 90px;
    height: 800px;
  }
  .rt-gi-stripe-bar {
    width: 28px;
  }
  .rt-gi-stripe-bar-2 {
    left: 42px;
  }
}

/* ---------- Phone (<= 767px) ---------- */
@media (max-width: 767px) {
  .rt-section {
    padding: 40px 0;
  }
  .rt-page-hero {
    padding: 40px 0;
  }
  .rt-section-header {
    margin-bottom: 32px;
  }

  /* Hero (home) */
  .rt-hero {
    min-height: 70vh;
  }

  /* About / home */
  .rt-about-row > [class*="col-"] {
    margin-bottom: 20px;
  }
  .rt-about-row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
  .rt-about-item {
    align-items: flex-start;
  }
  .rt-about-check {
    width: 56px;
    height: 56px;
  }
  .rt-about-check svg {
    width: 40px;
    height: 40px;
  }

  /* Lead the way */
  .rt-ltw-image-col {
    margin-bottom: 20px;
  }
  .rt-ltw-card {
    padding: 18px 20px;
  }

  /* Flipcards */
  .rt-flip-inner {
    min-height: 300px;
  }
  .rt-flip-front,
  .rt-flip-back {
    padding: 18px;
  }
  .rt-flip-front h3,
  .rt-flip-back h3 {
    font-size: var(--fs-h2);
  }
  .rt-flip-front p {
    font-size: var(--fs-h4);
  }

  /* About page */
  .rt-info-card {
    padding: 20px;
  }
  .rt-photo-card {
    min-height: 260px;
    margin-top: 20px;
  }
  .rt-feature-photo-caption {
    padding: 16px;
  }
  .rt-info-block {
    padding-left: 0;
    margin-bottom: 32px;
  }
  .rt-step-card {
    padding: 18px 20px;
  }
  .rt-step-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* FAQ */
  .rt-faq summary {
    padding: 14px 16px;
  }
  .rt-faq-body {
    padding: 16px;
  }

  /* Contact */
  .rt-contact-email {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    text-align: center;
  }
  .rt-contact-email-address {
    word-break: break-all;
  }

  /* Resources / collection cards */
  .rt-resources-intro {
    padding: 40px 0;
  }
  .rt-resources-intro-lede {
    padding: 0 16px;
    text-align: left;
    text-align-last: left;
  }
  .rt-collection {
    padding: 40px 0;
  }
  .rt-collection-header {
    margin-bottom: 24px;
  }
  .rt-collection-card {
    flex-direction: column;
    gap: 12px;
  }
  .rt-collection-thumb {
    width: 100%;
    height: auto;
    max-height: 320px;
  }
  .rt-collection-body {
    min-height: 0;
    text-align: center;
    align-items: center;
  }
  .rt-collection-actions {
    justify-content: center;
  }
  .rt-collection-share {
    justify-content: center;
  }

  /* Resource tab nav (Resources + Qualities pages) */
  .rt-resource-tabs {
    -webkit-overflow-scrolling: touch;
  }
  .rt-tab-nav--qualities {
    gap: 8px;
  }
  .rt-tab-nav--qualities li a {
    padding: 0 8px;
  }

  /* Quality detail sections */
  .rt-quality-content {
    padding: 28px 20px;
  }
  .rt-quality-definition {
    margin-bottom: 20px;
  }
  .rt-quality-actions {
    margin-bottom: 24px;
    gap: 14px;
  }
  .rt-quality-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .rt-quality-share-group {
    border-right: none;
    border-bottom: 1px solid var(--rt-border);
    padding-right: 0;
    padding-bottom: 16px;
  }
  .rt-quality-buttons {
    flex-wrap: wrap;
  }
  .rt-quality-buttons a {
    flex: 1 1 auto;
    text-align: center;
  }
  .rt-quality-download {
    padding: 40px 0;
  }
  .rt-section-header > .rt-quality-download-title {
    white-space: normal;
  }

  /* Resource cards (home) */
  .rt-resource-card {
    padding: 18px 20px;
    gap: 14px;
  }

  /* Navbar logo */
  .rt-navbar-logo {
    height: 56px;
  }
  .rt-navbar .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* GI stripes (decorative diagonal bars) — keep but smaller */
  .rt-gi-stripe {
    width: 70px;
    height: 600px;
  }
  .rt-gi-stripe-bar {
    width: 20px;
  }
  .rt-gi-stripe-bar-2 {
    left: 30px;
  }
}
