.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}

.hero-poster,
.hero-final-frame,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-final-frame {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-final-frame.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.hero[data-video-ready="true"] .hero-video {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.15));
}

.hero-video-fallback {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  max-width: min(460px, calc(100% - 2rem));
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  color: #dbeafe;
  background: rgba(10, 20, 45, 0.58);
  backdrop-filter: blur(4px);
  font-size: 0.84rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hero[data-video-failed="true"] .hero-video-fallback {
  opacity: 1;
}

.hero-play {
  position: absolute;
  left: 1rem;
  bottom: 3.9rem;
  z-index: 5;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(30, 64, 175, 0.85);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.hero[data-video-failed="true"] .hero-play {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
}

.hero[data-content-visible="true"] .hero-content {
  opacity: 1;
  pointer-events: auto;
}

.hero.hero--content-forced .hero-content {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.hero-content-inner {
  max-width: 620px;
  color: #fff;
  transform: translateX(48px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero[data-content-visible="true"] .hero-content-inner {
  transform: translateX(0);
  opacity: 1;
}

.hero.hero--content-forced .hero-content-inner {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 0 0 1.4rem;
}

.hero-content p strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-content p .hl-blue {
  color: #bfdbfe;
  font-weight: 700;
}

.hero-content p .hl-amber {
  color: #fcd34d;
  font-weight: 700;
}

.hero-content p .hl-green {
  color: #6ee7b7;
  font-weight: 700;
}

.hero-badge {
  display: inline-block;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #15307f, #2e64df);
  font-weight: 600;
}

.hero-skip {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 6;
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(4px);
}

.hero-skip:hover {
  background: rgba(255, 255, 255, 0.32);
}

.hero[data-skip-visible="true"] .hero-skip {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 99px;
  opacity: 0;
}

.hero-scroll span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: #fff;
  animation: hero-dot 1.8s infinite;
}

.hero[data-content-visible="true"] .hero-scroll {
  opacity: 1;
}

@keyframes hero-dot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(11px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

.home-section {
  padding: 4.5rem 1rem;
}

.home-section.alt {
  background: linear-gradient(180deg, #f4f8ff, #ecf4ff);
}

.home-ramos {
  background: linear-gradient(180deg, #dfe9f8 0%, #d7e4f6 100%);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-ramos .section-heading h2,
.home-news .section-heading h2,
.home-videos .section-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  margin: 0 0 0.6rem;
  font-weight: 700;
  line-height: 1.12;
  color: #1b3f9b;
}

.section-heading p {
  margin: 0;
  color: #4d5463;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.ramo-card,
.news-card,
.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08);
}

.ramos-carousel {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
}

.ramos-viewport {
  overflow: hidden;
  margin: 0 3.65rem;
}

.ramos-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.ramos-slide {
  flex: 0 0 var(--ramos-item-width, 100%);
  min-width: 0;
  padding: 0.55rem 0.42rem;
}

.ramos-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(30, 64, 175, 0.08);
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ramos-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 28px rgba(30, 64, 175, 0.15);
}

.ramos-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  margin-bottom: 0.82rem;
  background: linear-gradient(180deg, #e8f0ff, #dde8fb);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ramos-logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.ramos-logo span {
  font-size: 2.2rem;
  color: #1e40af;
  font-weight: 700;
}

.ramos-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Inter", var(--font-inter);
  color: #1e40af;
  font-size: clamp(1.1rem, 1.02vw, 1.5rem);
  line-height: 1.34;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
  font-variation-settings: "opsz" 14, "wght" 600;
  transition: color 0.2s ease;
}

.ramos-card:hover h3,
.ramos-card:focus-visible h3 {
  color: #3b82f6;
}

.ramos-card p {
  margin: 0;
  font-family: "Inter", var(--font-inter);
  color: #4b5563;
  line-height: 1.625;
  font-size: 0.875rem;
  font-weight: 350;
  font-variation-settings: "opsz" 14, "wght" 350;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ramos-link {
  margin-top: auto;
  padding-top: 0.78rem;
  font-size: 0.875rem;
  color: #1e40af;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ramos-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #1e40af;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ramos-nav span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.ramos-nav:hover {
  background: #eff6ff;
}

.ramos-nav:disabled {
  opacity: 0.55;
  cursor: default;
}

.ramos-nav-prev {
  left: 0.6rem;
}

.ramos-nav-next {
  right: 0.6rem;
}

.ramos-dots {
  min-height: 16px;
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
}

.ramos-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #bcd6fb;
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.ramos-dot.is-active {
  width: 26px;
  background: #1e40af;
}

.ramos-cta-wrap {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

.ramos-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 2.1rem;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  color: #fff;
  font-size: 1.06rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(30, 64, 175, 0.25);
}

.home-news {
  background: linear-gradient(180deg, #dfe9f8 0%, #d7e4f6 100%);
  padding-top: 5.2rem;
}

.news-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.news-viewport {
  overflow: hidden;
  margin: 0 2.8rem;
}

.news-track {
  display: flex;
  transition: transform 0.46s ease;
  will-change: transform;
}

.news-slide {
  flex: 0 0 var(--news-item-width, 100%);
  min-width: 0;
  padding: 0.55rem 0.6rem;
}

.news-card-x {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 9px 24px rgba(30, 64, 175, 0.12);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-card-x:hover,
.news-card-x:focus-visible {
  box-shadow: 0 16px 34px rgba(30, 64, 175, 0.2);
  transform: translateY(-2px);
}

.news-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #dbeafe, #bfdbfe);
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.news-card-x:hover .news-media img,
.news-card-x:focus-visible .news-media img {
  transform: scale(1.06);
}

.news-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.news-category {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #1e40af;
  color: #ffffff;
}

.news-body {
  padding: 0.88rem 1rem 0.92rem;
  display: flex;
  flex-direction: column;
  min-height: 152px;
}

.news-date-row {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0.56rem;
}

.news-date-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex: 0 0 auto;
}

.news-date-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-date-row time {
  color: #64748b;
  line-height: 1;
}

.news-body h3 {
  margin: 0 0 0.56rem;
  font-family: "Inter", var(--font-inter);
  font-size: clamp(1.1rem, 1.02vw, 1.5rem);
  line-height: 1.34;
  color: #1e40af;
  font-weight: 600;
  font-variation-settings: "opsz" 14, "wght" 600;
  transition: color 0.2s ease;
}

.news-card-x:hover .news-body h3 {
  color: #3b82f6;
}

.news-body p {
  margin: 0;
  font-family: "Inter", var(--font-inter);
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 350;
  font-variation-settings: "opsz" 14, "wght" 350;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.18);
  color: #1e40af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.news-nav span {
  font-size: 1.85rem;
  line-height: 1;
  transform: translateY(-1px);
}

.news-nav:hover {
  background: #eff6ff;
}

.news-nav:disabled {
  opacity: 0.52;
  cursor: default;
}

.news-nav-prev {
  left: 0.5rem;
}

.news-nav-next {
  right: 0.5rem;
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 0.42rem;
  min-height: 16px;
  margin-top: 1rem;
}

.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #bcd6fb;
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.news-dot.is-active {
  width: 26px;
  background: #1e40af;
}

.news-link-wrap {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

.news-link-all {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #1e40af;
  font-weight: 600;
  font-size: 1.02rem;
  transition: color 0.2s ease;
}

.news-link-all:hover,
.news-link-all:focus-visible {
  color: #3b82f6;
}

.news-divider {
  margin: 2.3rem auto 0;
  max-width: 1160px;
  border-top: 1px solid #bfd6f8;
}

.home-videos {
  background: linear-gradient(180deg, #dfe9f8 0%, #d7e4f6 100%);
  padding-top: 3.6rem;
}

.video-feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.video-feature-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 8px 22px rgba(30, 64, 175, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.video-feature-card:hover,
.video-feature-card:focus-within {
  box-shadow: 0 16px 34px rgba(30, 64, 175, 0.22);
  transform: translateY(-2px);
}

.video-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #c9d9f4;
}

.video-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-feature-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.video-feature-play:hover {
  background: rgba(0, 0, 0, 0.34);
}

.video-feature-play-circle {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.video-feature-play:hover .video-feature-play-circle {
  transform: scale(1.06);
}

.video-feature-play-circle svg {
  width: 32px;
  height: 32px;
  fill: #1e40af;
  transform: translateX(1px);
}

.video-feature-card h3 {
  margin: 0;
  padding: 0.88rem 1rem 1rem;
  font-size: clamp(0.95rem, 0.94vw, 1.42rem);
  line-height: 1.25;
  color: #123385;
  font-weight: 700;
  transition: color 0.2s ease;
}

.video-feature-card:hover h3,
.video-feature-card:focus-within h3 {
  color: #3b82f6;
}

.video-feature-card.is-playing .video-feature-play {
  opacity: 0;
  pointer-events: none;
}

.video-feature-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-feature-link-wrap {
  margin-top: 1.9rem;
  display: flex;
  justify-content: center;
}

.video-feature-link-all {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #1e40af;
  font-weight: 600;
  font-size: 1.02rem;
  transition: color 0.2s ease;
}

.video-feature-link-all:hover,
.video-feature-link-all:focus-visible {
  color: #3b82f6;
}

.ramo-card a,
.news-card a,
.video-card a {
  color: inherit;
  display: block;
  text-decoration: none;
}

.ramo-card:hover,
.news-card:hover,
.video-card:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

.ramo-logo {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eff4ff, #e6f0ff);
}

.ramo-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.ramo-logo span {
  font-size: 2rem;
  font-weight: 700;
  color: #1b3f9b;
}

.ramo-card h3,
.video-card h3 {
  margin: 1rem 1rem 0.4rem;
  font-weight: 700;
  color: #1b3f9b;
}

.ramo-card p {
  margin: 0 1rem 1rem;
  color: #4d5463;
}

.news-card img,
.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card-body {
  padding: 0.9rem 1rem 1rem;
}

.news-card-body small {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #1b3f9b;
  color: #fff;
}

.news-card-body h3 {
  margin: 0.75rem 0 0.5rem;
  font-weight: 700;
  color: #1f2633;
}

.news-card-body p {
  margin: 0 0 0.7rem;
  color: #4d5463;
}

.news-card-body time {
  font-size: 0.9rem;
  color: #7b8191;
}

.home-cta-cards {
  background: linear-gradient(160deg, #edf4ff 0%, #dce9fe 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.cta-origin-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.cta-origin-item {
  min-width: 0;
}

.cta-origin-card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  padding: 1.9rem 1.45rem 1.45rem;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(145deg, var(--cta-start), var(--cta-end));
  box-shadow: 0 16px 30px rgba(26, 53, 120, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.cta-origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(26, 53, 120, 0.32);
}

.cta-origin-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 124px;
  height: 124px;
  border-radius: 0 0 0 124px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.cta-origin-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.cta-origin-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-origin-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-size: clamp(1.44rem, 1.35vw, 1.5rem);
  line-height: 1.22;
  font-weight: 700;
  font-family: "Inter", var(--font-inter);
}

.cta-origin-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  font-size: 1rem;
  font-family: "Inter", var(--font-inter);
  font-weight: 400;
}

.cta-origin-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-family: "Inter", var(--font-inter);
  font-weight: 500;
  transition: transform 0.2s ease;
}

.cta-origin-card:hover .cta-origin-link {
  transform: translateX(4px);
}

.empty-block {
  text-align: center;
  color: #5f6676;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-content {
    justify-content: center;
    text-align: center;
    padding: 1.3rem;
  }

  .hero-content-inner {
    transform: translateY(18px);
  }

  .hero[data-content-visible="true"] .hero-content-inner {
    transform: translateY(0);
  }

  .hero-skip {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .ramos-viewport {
    margin: 0 3.1rem;
  }

  .ramos-card {
    padding: 1rem;
  }

  .ramos-card h3 {
    font-size: 1.22rem;
  }

  .ramos-card p {
    -webkit-line-clamp: 4;
    font-size: 0.875rem;
  }

  .ramos-nav {
    width: 42px;
    height: 42px;
  }

  .ramos-nav-prev {
    left: 0.5rem;
  }

  .ramos-nav-next {
    right: 0.5rem;
  }

  .ramos-nav span {
    font-size: 1.75rem;
  }

  .news-viewport {
    margin: 0 2.45rem;
  }

  .news-slide {
    padding: 0.48rem 0.42rem;
  }

  .news-nav {
    width: 40px;
    height: 40px;
  }

  .video-feature-grid {
    gap: 0.9rem;
  }
}

@media (max-width: 767px) {
  .ramos-viewport {
    margin: 0 3.45rem;
  }

  .ramos-slide {
    padding: 0.6rem 0.15rem;
  }

  .ramos-card h3 {
    font-size: 1.18rem;
  }

  .ramos-card p {
    -webkit-line-clamp: 4;
  }

  .ramos-nav {
    width: 42px;
    height: 42px;
  }

  .ramos-nav-prev {
    left: 0.45rem;
  }

  .ramos-nav-next {
    right: 0.45rem;
  }

  .news-viewport {
    margin: 0 0.1rem;
  }

  .news-slide {
    padding: 0.48rem 0.2rem;
  }

  .news-nav {
    display: none;
  }

  .news-body {
    min-height: 146px;
  }

  .news-body h3 {
    font-size: 1.18rem;
  }

  .news-body p {
    -webkit-line-clamp: 2;
    font-size: 0.875rem;
  }

  .video-feature-card h3 {
    font-size: 0.98rem;
    padding: 0.82rem 0.86rem 0.88rem;
  }

  .video-feature-play-circle {
    width: 52px;
    height: 52px;
  }

  .home-cta-cards {
    padding-top: 4.3rem;
    padding-bottom: 4.4rem;
  }

  .cta-origin-card {
    border-radius: 18px;
    padding: 1.45rem 1.15rem 1.2rem;
  }

  .cta-origin-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0.72rem;
  }

  .cta-origin-card h3 {
    font-size: 1.44rem;
  }
}

@media (min-width: 768px) {
  .video-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-origin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .video-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content-inner,
  .hero-skip,
  .reveal {
    transition: none;
  }

  .hero-scroll span {
    animation: none;
  }
}
