:root {
  color-scheme: light;
  --bg: #f4f1eb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #18304a;
  --text: #17212b;
  --muted: #5b6672;
  --line: rgba(23, 33, 43, 0.12);
  --line-strong: rgba(23, 33, 43, 0.18);
  --primary: #163a63;
  --primary-dark: #102944;
  --accent: #8f6a25;
  --accent-soft: rgba(143, 106, 37, 0.12);
  --shadow: 0 24px 72px rgba(14, 20, 31, 0.12);
  --shadow-soft: 0 16px 44px rgba(14, 20, 31, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(22, 58, 99, 0.12), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(143, 106, 37, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #efe8db 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(transparent 50%, rgba(0, 0, 0, 0.5) 50%),
    linear-gradient(90deg, transparent 50%, rgba(0, 0, 0, 0.5) 50%);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.topbar,
.hero,
.section,
.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 18px max(16px, calc((100vw - var(--max)) / 2));
  border-radius: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
  color: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 22px rgba(22, 58, 99, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.78);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #fff;
}

.nav a {
  opacity: 0.92;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav a:hover {
  opacity: 1;
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  width: 100%;
  padding: 144px 0 32px;
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 16, 26, 0.72), rgba(9, 16, 26, 0.22) 55%, rgba(9, 16, 26, 0.12)),
    url("banner-sindicato.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 26, 0.22) 0%, rgba(9, 16, 26, 0.48) 100%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.hero-copy,
.info-card,
.news-item,
.join-form,
.contact-card,
.about-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 620px);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin-left: 16px;
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.74), rgba(8, 14, 22, 0.58));
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-copy h1,
.hero-copy h2,
.hero-copy h3 {
  color: #fff;
}

.hero-copy .hero-text {
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy .eyebrow {
  color: #f0d9a8;
}

.hero-copy .secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.15rem;
}

.hero-text,
.section p,
.news-item p,
.join-copy p,
.contact-card p,
.info-card p,
.about-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.card-link:hover {
  transform: translateY(-1px);
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(22, 58, 99, 0.24);
}

.secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.section {
  padding: 30px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading-wide {
  max-width: 860px;
}

.section-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-split,
.grid.cards,
.steps {
  display: grid;
  gap: 16px;
}

.about-split {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.about-copy {
  padding: 30px;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  align-self: center;
}

.about-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 58ch;
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.7);
}

.about-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.grid.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.news-item,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.info-card {
  min-height: 220px;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
}

.news-featured,
.news-item {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.news-featured {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.news-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-featured h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.news-featured p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-link {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.news-stack {
  display: grid;
  gap: 16px;
}

.news-date {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.news-item-compact {
  padding: 20px;
}

.news-item-compact h3 {
  margin-top: 0;
}

.news-item-compact p {
  margin-bottom: 0;
}

.section.union-banner {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.union-banner-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.section.union-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.34);
  pointer-events: none;
}

.process {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
  background: transparent;
}

.process .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.process .eyebrow {
  color: var(--accent);
}

.process-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.process-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: none;
  background: transparent;
}

.process-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.process-slide {
  min-width: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: stretch;
  background: transparent;
  overflow: hidden;
}

.process-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.process-copy {
  padding: 40px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.process-copy span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.process-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-arrow {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary-dark);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: none;
}

.process-arrow:hover {
  transform: translateY(-1px);
}

.process-dots {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  gap: 10px;
}

.process-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(23, 33, 43, 0.18);
}

.process-dots button.is-active {
  width: 22px;
  background: var(--primary);
}

.join {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.join-copy {
  display: grid;
  gap: 18px;
}

.join-lead {
  max-width: 58ch;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.join-benefit {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.join-benefit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.join-benefit h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.join-benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.join-panel {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.join-panel-header {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.join-panel-header h3 {
  font-size: 1.4rem;
}

.join-panel-header p:last-child {
  margin: 0;
  color: var(--muted);
}

.join-form {
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  gap: 14px;
}

.join-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-dark);
}

.join-form input,
.join-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.join-form input:focus,
.join-form textarea:focus {
  outline: 2px solid rgba(22, 58, 99, 0.22);
  border-color: rgba(22, 58, 99, 0.34);
}

.join-form .button.primary {
  justify-content: center;
  margin-top: 4px;
}

.contact {
  display: grid;
  gap: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.contact-map {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.contact-map-header {
  display: grid;
  gap: 8px;
}

.contact-map-header h3 {
  font-size: 1.35rem;
}

.contact-map-header p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 33, 43, 0.08);
  min-height: 320px;
  background: rgba(255, 255, 255, 0.6);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-map-link {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.76);
}

.contact-card a {
  color: var(--primary-dark);
  font-weight: 800;
}

.footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px 0 50px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.18);
}

.footer p {
  margin: 0;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chatbot-launcher {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(22, 58, 99, 0.24);
}

.chatbot-panel {
  width: min(92vw, 380px);
  display: none;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(12, 18, 28, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.chatbot-panel.is-open {
  display: grid;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-header p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.chatbot-header strong {
  font-size: 1.05rem;
  color: #fff;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.chatbot-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

.chatbot-message {
  width: fit-content;
  max-width: 100%;
  padding: 11px 12px;
  border-radius: 16px;
  display: grid;
  gap: 4px;
  line-height: 1.5;
  font-size: 0.95rem;
  white-space: pre-wrap;
}

.chatbot-message-text {
  display: block;
}

.chatbot-message-meta {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.chatbot-message.user {
  margin-left: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chatbot-message.assistant {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 6px;
}

.chatbot-message.loading {
  opacity: 0.72;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 14px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
  animation: typingPulse 1s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingPulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot-chips button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 9px 11px;
  font-size: 0.85rem;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.chatbot-chips button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.chatbot-form {
  display: grid;
  gap: 10px;
}

.chatbot-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 14px;
  resize: vertical;
  min-height: 54px;
}

.chatbot-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.chatbot-form .button.primary {
  width: 100%;
}

.chatbot-footer {
  display: grid;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.5;
}

.chatbot-handoff {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .join {
    grid-template-columns: 1fr;
  }

  .grid.cards,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 16px;
    flex-wrap: wrap;
    color: #fff;
  }

  .topbar.is-scrolled {
    background: rgba(0, 0, 0, 0.96);
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-copy,
  .join-form,
  .info-card,
  .news-item,
  .contact-card,
  .about-card,
  .step-card {
    padding: 22px;
  }

  .hero-stats,
  .about-split,
  .grid.cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 280px;
  }

  .process-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-arrow {
    display: none;
  }

  .process-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-copy {
    padding: 22px;
  }

  .process {
    padding: 72px 0;
  }

  .process .section-heading {
    margin-bottom: 16px;
  }

  .process-slider {
    padding: 0 12px;
  }

  .process-copy {
    padding: 24px;
  }

  .news-featured,
  .news-item-compact {
    padding: 20px;
  }

  .section.union-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .union-banner-image {
    height: 150px;
  }

  .process-dots {
    margin-top: 10px;
  }

  .join-benefits {
    grid-template-columns: 1fr;
  }

  .join-panel {
    padding: 16px;
  }

  .join-form input,
  .join-form textarea {
    padding: 13px 14px;
  }

  h1 {
    max-width: none;
  }

  .hero {
    min-height: 100svh;
    padding: 132px 0 20px;
  }

  .hero-copy {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    padding: 20px;
  }

  .chatbot {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    width: min(94vw, 360px);
  }
}
