:root {
  --primary: #13c5dd;
  --primary-dark: #0f9eb6;
  --secondary: #354f8e;
  --dark: #1d2a4d;
  --text: #5a6375;
  --heading: #1d2a4d;
  --light: #eff7fb;
  --border: #dbe9ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(29, 42, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.7;
  background: var(--white);
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
}

.topbar__inner,
.topbar__contacts,
.topbar__socials,
.header__inner,
.nav,
.hero__actions,
.feature-row {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
}

.topbar__contacts {
  flex-wrap: wrap;
  gap: 12px;
}

.topbar__contacts a,
.topbar__socials a {
  color: #3d4860;
  transition: color 0.2s ease;
}

.topbar__contacts i {
  color: var(--primary);
  margin-right: 8px;
}

.topbar__contacts span {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.topbar__socials {
  gap: 18px;
}

.topbar__contacts a:hover,
.topbar__socials a:hover,
.nav a:hover {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 20px rgba(29, 42, 77, 0.08);
}

.header__inner {
  justify-content: space-between;
  min-height: 82px;
}

.brand img {
  height: 50px;
  width: auto;
}

.nav {
  gap: 26px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  color: var(--heading);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a.active {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 0;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--dark);
}

.nav .btn {
  color: #fff;
  min-height: 50px;
  padding-inline: 20px;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 42, 77, 0.86), rgba(29, 42, 77, 0.45), rgba(19, 197, 221, 0.08)),
    url("references/scraped/assets/images/slider/slide-1.png") center / cover no-repeat;
  transform: scale(1.02);
}

.home-hero__content {
  position: relative;
  padding: 96px 0;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.12;
}

.home-hero p {
  max-width: 680px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 42, 77, 0.86), rgba(29, 42, 77, 0.5), rgba(19, 197, 221, 0.22)),
    url("references/scraped/assets/images/slider/slide-1.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero--thanks .hero__media {
  background:
    linear-gradient(90deg, rgba(29, 42, 77, 0.9), rgba(29, 42, 77, 0.56), rgba(53, 79, 142, 0.22)),
    url("references/scraped/assets/images/slider/slide-2.png") center / cover no-repeat;
}

.hero__content {
  position: relative;
  max-width: 1140px;
  padding: 96px 0;
}

.hero h1,
.intro h2,
.section-title h2,
.roadmap__header h2,
.cta h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.12;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(44px, 7vw, 82px);
}

.hero p {
  max-width: 680px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 16px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 5px solid var(--border);
  color: var(--primary);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.section {
  padding: 96px 0;
}

.section--light {
  background: var(--light);
}

.appreciation-note {
  padding-bottom: 72px;
}

.note-card {
  max-width: 940px;
  padding: 46px;
  border-left: 7px solid var(--primary);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.note-card h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
}

.note-card p {
  margin: 20px 0 0;
  font-size: 18px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.intro__image {
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro__image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.intro h2,
.section-title h2,
.roadmap__header h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.intro p {
  margin: 18px 0 0;
}

.feature-row {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.feature-circle {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--light);
  text-align: center;
}

.feature-circle i {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 8px;
}

.feature-circle strong,
.feature-circle small {
  display: block;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.1;
}

.feature-circle small {
  color: var(--primary);
}

.section-title {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.patent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 28px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(19, 197, 221, 0.25);
}

.service-card h3,
.home-rd h2,
.home-rd__panel h3,
.doctor-band h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.15;
}

.service-card h3 {
  font-size: 28px;
}

.service-card p {
  margin: 14px 0 0;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.author-card {
  min-height: 295px;
  padding: 34px 28px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.author-card__photo {
  width: 118px;
  height: 118px;
  margin: 0 auto 24px;
  border: 6px solid rgba(19, 197, 221, 0.18);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(29, 42, 77, 0.16);
}

.author-card__icon {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 30px;
}

.author-card h3 {
  margin: 0 0 14px;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.15;
}

.author-card p {
  margin: 0;
}

.patent-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.patent-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8f4f7;
}

.patent-card__body {
  flex: 1;
  padding: 26px;
}

.tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(19, 197, 221, 0.12);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.patent-card h3,
.timeline-step h3,
.cta__panel h3,
.footer h4 {
  margin: 0;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.2;
}

.patent-card h3 {
  min-height: 84px;
  font-size: 24px;
}

.patent-card p {
  margin: 16px 0;
}

.patent-card ul {
  margin: 0;
  padding-left: 18px;
}

.patent-card li + li {
  margin-top: 6px;
}

.patent-card > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(19, 197, 221, 0.1);
  color: var(--primary-dark);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
}

.patent-card > a:hover {
  background: var(--primary);
  color: #fff;
}

.record-list {
  display: grid;
  gap: 20px;
}

.record-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(29, 42, 77, 0.08);
}

.record-card h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.record-card p {
  margin: 10px 0 0;
}

.record-card__names {
  color: var(--heading);
  font-weight: 700;
}

.record-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
}

.record-card > a:hover {
  background: var(--primary-dark);
}

.roadmap {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("references/scraped/assets/images/doctor.png") right bottom / min(48vw, 620px) auto no-repeat;
}

.roadmap__header {
  max-width: 760px;
  margin-bottom: 44px;
}

.roadmap__header p {
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline-step {
  min-height: 275px;
  padding: 30px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline-step span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.timeline-step h3 {
  font-size: 26px;
}

.timeline-step p {
  margin-bottom: 0;
}

.home-rd__grid,
.doctor-band {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 52px;
  align-items: center;
}

.home-rd h2,
.doctor-band h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.home-rd p,
.doctor-band p {
  margin: 18px 0 28px;
  font-size: 18px;
}

.home-rd__panel {
  padding: 36px;
  border-radius: 8px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.home-rd__panel h3 {
  margin-bottom: 22px;
  font-size: 30px;
}

.home-rd__panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.home-rd__panel a:hover {
  color: var(--primary);
}

.doctor-band img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 42, 77, 0.9), rgba(29, 42, 77, 0.58), rgba(19, 197, 221, 0.12)),
    url("references/scraped/assets/images/slider/slide-2.png") center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero__content {
  position: relative;
  padding: 84px 0;
}

.page-hero h1,
.appointment-grid h2,
.appointment-form h3 {
  margin: 0;
  color: inherit;
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.12;
}

.page-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.directory-tools {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 16px;
  margin-bottom: 32px;
}

.directory-tools input,
.directory-tools select,
.appointment-form input,
.appointment-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--heading);
  font: inherit;
  background: #fff;
}

.directory-tools input:focus,
.directory-tools select:focus,
.appointment-form input:focus,
.appointment-form select:focus {
  outline: 3px solid rgba(19, 197, 221, 0.2);
  border-color: var(--primary);
}

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

.doctor-card,
.department-card,
.team-card,
.appointment-form {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.doctor-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  overflow: hidden;
}

.doctor-card[hidden] {
  display: none;
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--light);
}

.doctor-card__body {
  flex: 1;
  padding: 26px;
}

.doctor-card h3,
.department-card h3,
.team-card h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.15;
}

.doctor-card h3 {
  font-size: 27px;
}

.doctor-card__dept {
  margin: 12px 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.doctor-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.doctor-card__meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(19, 197, 221, 0.12);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.doctor-card > .btn {
  border-radius: 0;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.department-card {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px 18px;
  text-align: center;
}

.department-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.department-card h3 {
  font-size: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 190px;
  overflow: hidden;
}

.team-card img {
  width: 160px;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.team-card div {
  align-self: center;
  padding: 24px;
}

.team-card h3 {
  font-size: 27px;
}

.team-card p {
  margin: 10px 0 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
}

.appointment-grid h2 {
  color: var(--heading);
  font-size: clamp(34px, 4vw, 52px);
}

.appointment-grid p {
  font-size: 18px;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.appointment-form h3 {
  color: var(--heading);
  font-size: 32px;
}

.appointment-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--heading);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
}

.appointment-form .btn {
  width: 100%;
  margin-top: 6px;
}

.hidden-field {
  display: none;
}

.cta {
  padding: 88px 0;
  background: var(--primary);
  color: #fff;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 52px;
  align-items: center;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.cta__panel {
  border-radius: 8px;
  background: #fff;
  padding: 36px;
  color: var(--heading);
  box-shadow: 0 20px 50px rgba(29, 42, 77, 0.18);
}

.cta .cta__panel p,
.cta .cta__panel a:not(.btn) {
  color: var(--heading);
}

.cta__panel h3 {
  margin-bottom: 20px;
  font-size: 30px;
}

.cta__panel i {
  width: 22px;
  color: var(--primary);
}

.cta__panel .btn {
  margin-top: 12px;
  width: 100%;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 72px 0;
}

.footer h4 {
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 5px solid rgba(255, 255, 255, 0.15);
  color: var(--primary);
  font-size: 24px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 10px;
}

.footer i {
  width: 24px;
  color: var(--primary);
}

.footer a:hover,
.footer__bottom a {
  color: var(--primary);
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__socials a {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
}

.footer__socials a:hover {
  background: #fff;
  color: var(--primary);
}

.footer__socials i {
  width: auto;
  color: inherit;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.footer__bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .nav {
    gap: 16px;
    font-size: 15px;
  }

  .patent-grid,
  .service-grid,
  .author-grid,
  .timeline,
  .doctor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .patent-card h3 {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 72px;
  }

  .nav-toggle-label {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--heading);
    font-size: 28px;
    cursor: pointer;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(29, 42, 77, 0.12);
  }

  .nav a {
    padding: 12px 0;
  }

  .nav .btn {
    margin-top: 8px;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .hero,
  .home-hero {
    min-height: 560px;
  }

  .hero__content,
  .home-hero__content {
    padding: 72px 0;
  }

  .intro__grid,
  .home-rd__grid,
  .doctor-band,
  .cta__grid,
  .appointment-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .directory-tools,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .intro__image,
  .intro__image img {
    min-height: 360px;
    height: 360px;
  }

  .cta__panel {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .section,
  .cta {
    padding: 68px 0;
  }

  .hero,
  .home-hero {
    min-height: 620px;
  }

  .hero p,
  .home-hero p {
    font-size: 18px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .feature-row,
  .timeline,
  .patent-grid,
  .service-grid,
  .author-grid,
  .doctor-grid,
  .department-grid,
  .record-card {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 118px 1fr;
    min-height: 155px;
  }

  .team-card img {
    width: 118px;
    min-height: 155px;
  }

  .team-card div,
  .doctor-card__body,
  .appointment-form {
    padding: 24px;
  }

  .note-card {
    padding: 28px;
  }

  .feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-circle {
    width: 100%;
    height: auto;
    min-height: 124px;
    border-radius: 8px;
  }

  .patent-card__body,
  .timeline-step,
  .cta__panel {
    padding: 24px;
  }
}
