:root {
  --cro-cyan: #00a8cc;
  --cro-cyan-dark: #087d9a;
  --cro-gray: #9499a2;
  --cro-charcoal: #20262d;
  --cro-ink: #161a1f;
  --cro-light: #f4f6f7;
  --cro-yellow: #e4bb10;
  --cro-orange: #ed8c22;
  --cro-red: #c6323b;
  --cro-purple: #743170;
  --cro-blue: #36588f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--cro-ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.accent-rail {
  align-items: center;
  background: #171c22;
  display: flex;
  gap: 12px;
  height: 7px;
  justify-content: center;
  width: 100%;
}

.dot {
  border-radius: 50%;
  display: block;
  height: 5px;
  width: 5px;
}

.yellow { background: var(--cro-yellow); }
.orange { background: var(--cro-orange); }
.red { background: var(--cro-red); }
.purple { background: var(--cro-purple); }
.blue { background: var(--cro-blue); }
.cyan { background: var(--cro-cyan); }

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e7e9eb;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 92px;
  padding: 12px clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand img {
  height: 62px;
  object-fit: contain;
  width: 58px;
}

.brand span,
.footer-brand div {
  display: flex;
  flex-direction: column;
}

.brand strong,
.footer-brand strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small,
.footer-brand span {
  color: #70767e;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 4px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: #4b5158;
  font-size: 13px;
  font-weight: 700;
  position: relative;
}

.desktop-nav a::after {
  background: var(--cro-cyan);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.intranet-link {
  align-items: center;
  background: var(--cro-charcoal);
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 18px;
  justify-self: end;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.intranet-link:hover {
  background: var(--cro-cyan-dark);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100vh - 99px);
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 118px) clamp(32px, 6.5vw, 110px);
  position: relative;
}

.hero-copy::before {
  background: var(--cro-cyan);
  content: "";
  height: 74px;
  left: 0;
  position: absolute;
  top: 14%;
  width: 7px;
}

.eyebrow {
  color: var(--cro-cyan-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #68d6ed;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
  margin: 0;
  max-width: 760px;
}

.hero h1 span {
  color: var(--cro-cyan);
  display: block;
}

.hero-lead {
  color: #5c646d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 52px;
  padding: 0 23px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
  background: var(--cro-cyan);
  color: var(--white);
}

.button.primary:hover {
  background: var(--cro-cyan-dark);
  transform: translateY(-2px);
}

.button.ghost {
  border: 1px solid #ced3d7;
  color: #363c43;
}

.button.ghost:hover {
  border-color: var(--cro-charcoal);
}

.hero-proof {
  border-top: 1px solid #dfe2e4;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  padding-top: 26px;
  width: 100%;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-proof strong {
  color: #2b3239;
  font-size: 15px;
}

.hero-proof span {
  color: #777e85;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(9, 18, 25, 0.14), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s ease;
  width: 100%;
}

.hero-visual:hover > img {
  transform: scale(1.025);
}

.hero-badge {
  align-items: center;
  background: rgba(26, 32, 39, 0.92);
  bottom: 34px;
  color: var(--white);
  display: flex;
  gap: 16px;
  left: 34px;
  padding: 18px 20px;
  position: absolute;
  z-index: 2;
}

.hero-badge div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-badge strong {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge small {
  color: #aab2b9;
  font-size: 10px;
}

.pulse {
  background: var(--cro-cyan);
  border: 4px solid rgba(0, 168, 204, 0.22);
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.trust-strip {
  align-items: center;
  background: var(--cro-charcoal);
  color: #b8bec4;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 700;
  gap: 18px 50px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 82px;
  padding: 22px 30px;
  text-transform: uppercase;
}

.trust-strip span:not(:last-child)::after {
  color: var(--cro-cyan);
  content: "•";
  margin-left: 50px;
}

.section {
  padding: clamp(86px, 9vw, 142px) clamp(24px, 6vw, 90px);
}

.section-label {
  color: #90969c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label.light {
  color: #7f8a92;
}

.about {
  align-items: start;
  display: grid;
  gap: clamp(40px, 6vw, 100px);
  grid-template-columns: 0.42fr 1fr 0.8fr;
}

.about-copy h2,
.programs-heading h2,
.experience-copy h2,
.news-heading h2,
.contact-section h2 {
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin: 0;
}

.about-copy > p:not(.eyebrow) {
  color: #626970;
  font-size: 16px;
  line-height: 1.8;
  margin: 26px 0 0;
}

.about-image {
  margin: 0;
  position: relative;
}

.about-image img {
  aspect-ratio: 1.9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about-image figcaption {
  background: var(--white);
  bottom: -1px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  left: -1px;
  padding: 20px 28px 4px 0;
  position: absolute;
}

.about-image figcaption strong {
  font-size: 12px;
  text-transform: uppercase;
}

.about-image figcaption span {
  color: #7b8187;
  font-size: 11px;
}

.programs {
  background: var(--cro-charcoal);
  color: var(--white);
}

.programs-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.4fr 0.6fr;
  margin-bottom: 62px;
}

.programs-heading .section-label {
  margin-bottom: 72px;
}

.programs-heading > p {
  color: #aeb5bb;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 7px;
  max-width: 420px;
}

.course-grid {
  border-left: 1px solid #41484f;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.specialty-card {
  background: #252c33;
  border-bottom: 1px solid #41484f;
  border-right: 1px solid #41484f;
  border-top: 1px solid #41484f;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
}

.specialty-card::before {
  background: var(--card-color);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.specialty-card.cyan { --card-color: #63c3d6; }
.specialty-card.orange { --card-color: #b99a6b; }
.specialty-card.red { --card-color: #b7787d; }
.specialty-card.purple { --card-color: #8e7b96; }
.specialty-card.yellow { --card-color: #b5a774; }
.specialty-card.blue { --card-color: #7893b4; }

.specialty-card:hover {
  background: #303941;
  transform: translateY(-5px);
}

.specialty-number {
  color: var(--card-color);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.specialty-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin: 34px 0 18px;
}

.course-list {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-list li {
  color: #d2d8dd;
  font-size: 12px;
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}

.course-list li::before {
  background: var(--card-color);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 4px;
}

.specialty-card a {
  color: #dfe3e6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: auto;
  padding-top: 26px;
  text-transform: uppercase;
}

.specialty-card a span {
  color: var(--card-color);
  margin-left: 8px;
}

.campus-section {
  background: #eef1f2;
  padding: clamp(86px, 9vw, 142px) clamp(24px, 6vw, 90px);
}

.campus-intro {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.35fr 0.65fr;
  margin-bottom: 58px;
}

.campus-intro .section-label {
  margin-bottom: 64px;
}

.campus-intro h2,
.clients-copy h2 {
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin: 0;
}

.campus-stat {
  border-left: 5px solid var(--cro-cyan);
  display: flex;
  flex-direction: column;
  padding: 8px 0 8px 28px;
}

.campus-stat strong {
  color: var(--cro-cyan-dark);
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.campus-stat span {
  color: #566069;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 15px;
  max-width: 270px;
  text-transform: uppercase;
}

.campus-gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 280px 280px;
}

.campus-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.campus-photo-main {
  grid-row: 1 / 3;
}

.campus-photo-wide {
  grid-column: 2 / 4;
}

.campus-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  width: 100%;
}

.campus-photo:hover img {
  transform: scale(1.035);
}

.campus-photo::after {
  background: linear-gradient(0deg, rgba(12, 18, 23, 0.72), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.campus-photo figcaption {
  bottom: 20px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  left: 22px;
  letter-spacing: 0.1em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.campus-features {
  border-bottom: 1px solid #ccd2d6;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.campus-features span {
  border-left: 1px solid #ccd2d6;
  color: #4d565e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 22px 18px;
  text-align: center;
  text-transform: uppercase;
}

.campus-features span:last-child {
  border-right: 1px solid #ccd2d6;
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.experience-image {
  min-height: 680px;
}

.experience-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.experience-copy {
  align-items: flex-start;
  background: var(--cro-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 110px);
}

.experience-copy > p:not(.eyebrow) {
  color: #60686f;
  font-size: 16px;
  line-height: 1.8;
  margin: 30px 0 0;
}

.experience-copy ul {
  display: grid;
  gap: 15px;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.experience-copy li {
  align-items: center;
  color: #373e45;
  display: flex;
  font-size: 13px;
  gap: 14px;
}

.experience-copy li::before {
  background: var(--cro-cyan);
  content: "";
  height: 6px;
  width: 6px;
}

.text-link {
  color: var(--cro-cyan-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 14px;
}

.clients-section {
  background: var(--white);
}

.clients-layout {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
}

.clients-copy .section-label {
  margin-bottom: 64px;
}

.clients-copy > p:not(.eyebrow) {
  color: #626970;
  font-size: 15px;
  line-height: 1.8;
  margin: 28px 0 36px;
  max-width: 900px;
}

.client-names {
  border-left: 1px solid #dde1e3;
  border-top: 1px solid #dde1e3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.client-names span {
  align-items: center;
  border-bottom: 1px solid #dde1e3;
  border-right: 1px solid #dde1e3;
  color: #555e65;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  min-height: 62px;
  padding: 14px;
  text-transform: uppercase;
}


.news-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}

.news-heading .section-label {
  margin-bottom: 64px;
}

.news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.news-card {
  border: 1px solid #e3e6e8;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.news-card:hover {
  box-shadow: 0 24px 50px rgba(18, 25, 31, 0.1);
  transform: translateY(-6px);
}

.news-image {
  aspect-ratio: 1.45;
  overflow: hidden;
}

.news-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

.news-image img[src*="curso-torre-altura"] {
  object-position: center 24%;
}

.news-card:hover .news-image img {
  transform: scale(1.04);
}

.news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.news-content > span {
  color: var(--cro-cyan-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-content h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 17px 0 12px;
}

.news-content p {
  color: #737a81;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.news-content a {
  border-top: 1px solid #e6e8ea;
  color: #394047;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 24px;
  padding-top: 18px;
  text-transform: uppercase;
}

.news-content a span {
  color: var(--cro-cyan);
  float: right;
}

.contact-section {
  align-items: center;
  background: var(--cro-cyan-dark);
  color: var(--white);
  display: grid;
  gap: 60px;
  grid-template-columns: 1.3fr 0.7fr;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 110px);
}

.contact-section > div > p:not(.eyebrow) {
  color: #c3e8ef;
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
}

.contact-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.button.white {
  background: var(--white);
  color: var(--cro-cyan-dark);
}

.button.white:hover {
  transform: translateY(-2px);
}

.mail-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 12px 0;
}

footer {
  background: #151a20;
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr auto;
  padding: 58px clamp(24px, 6vw, 90px) 28px;
}

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

.footer-brand img {
  background: var(--white);
  height: 58px;
  object-fit: contain;
  width: 54px;
}

.footer-brand span {
  color: #7f8991;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-links a {
  color: #b7bdc2;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid #333a41;
  color: #737c84;
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 24px;
}

:focus-visible {
  outline: 3px solid var(--cro-yellow);
  outline-offset: 3px;
}

.login-page {
  background:
    linear-gradient(rgba(16, 25, 32, 0.84), rgba(16, 25, 32, 0.9)),
    url("/assets/hero-altura.webp") center / cover;
  display: grid;
  min-height: 100vh;
  padding: 42px clamp(20px, 6vw, 90px);
}

.login-brand {
  background: var(--white);
  height: 74px;
  padding: 7px;
  width: 70px;
}

.login-brand img {
  height: 100%;
  object-fit: contain;
}

.login-panel {
  align-self: center;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  margin: 30px auto;
  max-width: 980px;
  width: 100%;
}

.login-intro {
  background: var(--cro-charcoal);
  color: var(--white);
  padding: clamp(42px, 6vw, 76px);
}

.login-intro h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.login-intro > p:not(.eyebrow) {
  color: #b9c0c5;
  line-height: 1.7;
  margin: 28px 0 54px;
}

.login-intro > a {
  color: #65d2e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.login-form {
  align-content: center;
  display: grid;
  padding: clamp(38px, 5vw, 68px);
}

.login-form label {
  color: #555d64;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.login-form input {
  background: #f3f5f6;
  border: 1px solid #dbe0e3;
  border-radius: 0;
  font: inherit;
  height: 52px;
  margin-bottom: 24px;
  padding: 0 14px;
}

.login-form button {
  background: var(--cro-cyan);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 18px;
  text-transform: uppercase;
}

.login-notice {
  background: #edf8fa;
  border-left: 3px solid var(--cro-cyan);
  color: #3e5c63;
  font-size: 12px;
  line-height: 1.55;
  margin: 22px 0 0;
  padding: 14px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 720px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .about {
    grid-template-columns: 0.35fr 1fr;
  }

  .about-image {
    grid-column: 2;
    max-width: 520px;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-intro,
  .clients-layout {
    grid-template-columns: 1fr;
  }

  .clients-logo-wall {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    min-height: 78px;
    padding: 8px 16px;
  }

  .brand img {
    height: 52px;
    width: 48px;
  }

  .brand small,
  .brand strong {
    display: none;
  }

  .intranet-link {
    gap: 10px;
    padding: 12px 14px;
  }

  .hero-copy {
    min-height: auto;
    padding: 74px 24px 66px;
  }

  .hero-copy::before {
    height: 54px;
    top: 78px;
    width: 4px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-badge {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
  }

  .trust-strip span:not(:last-child)::after {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    grid-column: auto;
  }

  .programs-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .programs-heading .section-label,
  .news-heading .section-label {
    margin-bottom: 44px;
  }

  .course-grid {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .specialty-card {
    min-height: 300px;
  }

  .campus-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }

  .campus-photo-main,
  .campus-photo-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .campus-features,
  .client-names {
    grid-template-columns: 1fr 1fr;
  }

  .experience {
    grid-template-columns: 1fr;
  }

  .experience-image {
    min-height: 430px;
  }

  .experience-copy {
    padding: 74px 24px;
  }

  .news-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

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

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    grid-column: auto;
  }

  .login-page {
    padding: 22px;
  }

  .login-panel {
    grid-template-columns: 1fr;
  }
}
