/* ==========================================================================
   Diodes Incorporated — Careers
   Single stylesheet. Approved by specs/design-system.md, specs/layout.md
   and specs/home-page.md.

   Values sampled from website.png. Confidence labels ([measured],
   [derived], [estimated], [unknown]) are recorded in specs/design-system.md.

   CONTENTS
   1.  Tokens
   2.  Base and reset
   3.  Layout — container, grid, sections
   4.  Header — white utility bar
   5.  Primary navigation
   6.  Buttons
   7.  Eyebrow
   8.  Hero
   9.  Why Diodes
   10. Stats card
   11. Global Presence — region tabs, panel, location chips
   12. Opportunities — cards and icon chips
   13. Testimonials — cards and carousel dots
   14. Footer
   ========================================================================== */


/* ==========================================================================
   1. TOKENS
   ========================================================================== */

:root {

  /* --- Colour: brand ---------------------------------------------------- */
  --color-brand: #005A9C;
  /* nav bar, GO button, footer, buttons */
  --color-accent: #009FE3;
  --color-brand-dark: #121D2B;
  /* the word "Powers" only */

  /* --- Colour: text ----------------------------------------------------- */
  --color-text-dark: #000000;
  --color-heading: #121D2B;
  --color-heading1: #101828;
  --color-text-body: #4E5F74;
  --color-text-body1: #4A5565;
  --color-text-body2: #6A7282;
  --color-text-body3: #3B3B3B;
  --color-text-inverse: #FFFFFF;

  /* --- Colour: surfaces ------------------------------------------------- */
  --color-surface: #FFFFFF;
  --color-surface-alt: #F1F1F1;
  /* alternating section bands */
  --color-surface-card: #F9FAFB;
  /* card fill, not pure white */
  --color-surface-muted: #F3F4F6;
  /* inactive region pills */
  --color-chip: #D6E4F6;
  --color-placeholder: #6D767AB2;
  /* pale blue icon chip */

  /* --- Colour: lines ---------------------------------------------------- */
  --color-border: #D1D5DC;

  /* #005A9C is banned. It is a near-duplicate of --color-brand and was
     rejected as a defect in the reference. Never add it here.
     The only surviving instance is inside assets/image/logo.svg, which was
     supplied that way and is kept as delivered. */

  /* --- Typography ------------------------------------------------------- */
  --font-family-base: Arial;

  --font-size-hero: 72px;
  --font-size-h2-lg: 48px;
  --font-size-h2: 40px;
  --font-size-h3: 18px;
  --font-size-body: 16px;
  --font-size-small: 14px;

  --font-weight-bold: 700;
  --font-weight-regular: 400;

  /* Line heights are [unknown] — not measurable from a raster. These are the
     values proposed in specs/design-system.md, approved by the developer on
     2026-07-21. They are a proposal, not a measurement. */
  --line-height-heading: 1.2;
  --line-height-body: 1.6;

  --tracking-eyebrow: 1px;
  --tracking-hero: 2px;

  /* --- Layout ----------------------------------------------------------- */
  --container-width: 1024px;
  --grid-columns: 3;
  --card-width: 310px;
  /* (1024 - 2 x 47) / 3 */
  --grid-gutter: 32px;
  /* the one measured spacing value */
  --nav-height: 59px;

  /* --- Spacing scale ---------------------------------------------------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 10px;
  --space-4: 12px;
  --space-5: 16px;
  --space-6: 20px;

  --space-7: 24px;
  --space-8: 32px;
  --space-9: 48px;
  --space-10: 64px;

  /* --- Border radius ---------------------------------------------------- */
  --radius-card: 8px;
  --radius-pill: 999px;

  /* --- Component dimensions --------------------------------------------- */
  --hero-height: 651px;
  /* reference y 261 to 912 */
  --logo-width: 404px;
  /* intrinsic width of logo.svg */
  --stats-card-width: 451px;
  --stats-card-overlap: 40px;
  /* overlap not measured */
  --search-input-width: 240px;
  --icon-chip-size: 40px;
  --avatar-size: 45px;
  --border-width: 1px;

  --icon-size-xs: 12px;
  --icon-size-sm: 14px;
  --icon-size: 16px;
  --icon-size-lg: 20px;
  --icon-size-xl: 24px;

  --dot-width: 24px;
  --dot-height: 4px;

  /* --- Hero overlay ----------------------------------------------------- */
  /* [unknown] and provisional. The overlay cannot be separated from the photo
     in a flattened screenshot. White hero text contrast depends on it. */
  --color-hero-overlay: rgba(0, 0, 0, 0.45);

  /* --- Z-index ---------------------------------------------------------- */
  --z-hero-overlay: 1;
  --z-hero-content: 2;
  --z-stats-card: 3;

  /* Shadows are [unknown] and deliberately not tokenised. Blur, spread and
     opacity cannot be recovered from a raster. The stats card and the two
     card types use a 1px --color-border outline in their place.

     Transitions are [unknown]. A still image carries no motion information,
     and there are no hover or focus states for them to animate.

     Breakpoints are [unknown]. The reference is a single 1920px desktop
     render. Desktop-only was confirmed by the developer on 2026-07-21, so
     this file contains no media queries.

     Hover, focus and active states are [unknown] and not defined. The one
     exception is the region pill selected state, which is visible in the
     reference because both states appear side by side. */
}


/* ==========================================================================
   2. BASE AND RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-text-body);
  background-color: var(--color-surface);
}

h1,
h2,
h3,
h4 {
  color: var(--color-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

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

button,
input {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

/* Text available to screen readers but not shown on screen. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   3. LAYOUT — container, grid, sections
   ========================================================================== */

.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

/* Three equal columns separated by the measured 47px gutter.
   1024 - (2 x 47) = 930, divided by 3 = 310px per card. */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gutter);
}

/* Two column split used by Why Diodes and Global Presence. */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gutter);
}

.section {
  padding: var(--space-9) 0;
}

.section--alt {
  background-color: var(--color-surface-alt);
}

.section--surface {
  background-color: var(--color-surface);
}

.section-header {
  text-align: center;
}


/* ==========================================================================
   4. HEADER — white utility bar
   ========================================================================== */

.topbar {
  padding: var(--space-6) 0 var(--space-5);
  background-color: var(--color-surface);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* --- Logo lockup -------------------------------------------------------- */

.topbar__logo img {
  max-width: var(--logo-width);
  width: 100%;
  height: auto;
}

/* --- Right hand utility stack ------------------------------------------- */

.topbar__utility {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-5);
}

.utility-links {
  display: flex;
  gap: var(--space-6);
}

.utility-links__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-brand);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2%;
}

.utility-links__item .icon-chevron {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

.language {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-h3);
  color: var(--color-text-dark);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2%;
}

.language-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.language__item {
  color: var(--color-brand);
}

.language__item:not(:last-child) {
  padding-right: var(--space-5);
  border-right: 1px solid var(--color-text-body);
}

.language__item--active {
  color: var(--color-brand);
  font-weight: var(--font-weight-bold);
}

/* --- Search ------------------------------------------------------------- */
.form_sublinks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.search {
  display: flex;
  position: relative;
}

.search__input {
  width: 100%;
  max-width: 391px;
  min-width: 391px;
  padding: var(--space-2) var(--space-3);
  border: var(--border-width) solid var(--color-border);
  background-color: var(--color-surface);
  color: var(--color-text-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
}

.search__input::placeholder {
  color: var(--color-placeholder);
  font-style: italic;
  font-weight: 500;
}

.search__button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  padding: var(--space-1) var(--space-5);
  background-color: var(--color-brand);
  color: var(--color-text-inverse);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/* --- Secondary links under the search ----------------------------------- */

.topbar__sublinks {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--font-size-body);
}

.topbar__sublinks a {
  color: var(--color-brand);
  text-decoration: underline;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2%;
}

.topbar__sublinks a:not(:last-child) {
  padding-right: var(--space-5);
  border-right: 1px solid var(--color-text-body);
}

/* ==========================================================================
   5. PRIMARY NAVIGATION — blue bar
   ========================================================================== */

.nav {
  padding: 18px 0;
  background-color: var(--color-brand);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 100%;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-inverse);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: var(--font-weight-bold);
  box-shadow: 0px 10px 24px 0px #00000052;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0%;
  width: fit-content;
}

.btn--primary {
  background-color: var(--color-brand);
  color: var(--color-text-inverse);
  border: var(--border-width) solid var(--color-brand);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text-inverse);
  border: 2px solid var(--color-surface);
}

.btn--small {
  padding: 12px 24px;
  font-size: 16px;
}

.btn .icon {
  width: var(--icon-size);
  height: var(--icon-size);
}

.btn--small .icon {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
}


/* ==========================================================================
   7. EYEBROW — small uppercase label with underline rule
   ========================================================================== */

.eyebrow {
  display: inline-block;
  padding-bottom: var(--space-2);
  color: var(--color-brand);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  width: fit-content;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.eyebrow::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 3px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  bottom: 0;
  background-color: var(--color-brand);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}


/* ==========================================================================
   8. HERO — full bleed photo with hiring message
   ========================================================================== */

.hero {
  position: relative;
  background-image: url("../assets/image/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

/* Overlay darkness is [unknown]. It cannot be separated from the photo in a
   flattened screenshot. This value is provisional and needs confirming. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: var(--z-hero-overlay);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 14.87%, rgba(0, 0, 0, 0.385) 100%);
}

.hero__inner {
  position: relative;
  z-index: var(--z-hero-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  max-width: 788px;
  width: 100%;
  margin: 0 auto;
  gap: 32px;
}

.hero_title {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 630px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  color: var(--color-text-inverse);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 10%;
  text-align: center;
  text-transform: uppercase;
}

.hero__heading {
  color: var(--color-text-inverse);
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
  line-height: 80px;
  letter-spacing: -2%;
  text-align: center;
  text-transform: capitalize;
}

/* The only use of --color-accent anywhere on the page. */
.hero__accent {
  color: var(--color-accent);
}

.hero__subtitle p {
  color: var(--color-text-inverse);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 2%;
  text-align: center;
}

.hero__actions {
  display: flex;
  gap: 30px;
}


/* ==========================================================================
   9. WHY DIODES — two column intro
   ========================================================================== */

.intro {
  padding: var(--space-9) 0;
  background-color: var(--color-surface-alt);
}

/* Uses the shared .grid-2 primitive; only the alignment differs. */
.intro__grid {
  align-items: center;
}

.intro_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__heading {
  font-size: var(--font-size-h2);
  letter-spacing: 0px;
}

.intro__body {
  color: var(--color-text-body1);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0px;
}

.intro__media img {
  width: 100%;
  border-radius: 16px;
  max-height: 300px;
  box-shadow: 0px 5px 15px 0px #00000026;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}


/* ==========================================================================
   10. STATS CARD — straddles the grey/white section boundary
   ========================================================================== */

/* Pulled up out of the white section so part of it sits over the grey band
   above. Exact overlap was not measured. */
.stats-wrap {
  position: relative;
  z-index: var(--z-stats-card);
  margin-top: calc(-1 * var(--stats-card-overlap));
  margin-bottom: calc(-1 * var(--stats-card-overlap));
  padding-bottom: var(--space-9);
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 450px;
  margin: 0 auto;
  padding: 15px 65px;
  background-color: var(--color-surface);
  box-shadow: 0px 5px 15px 0px #00000026;
  border-radius: 15px;
  text-align: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.stats-card_content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* The reference shows a soft shadow here. Its blur, spread and opacity are
   [unknown] and cannot be recovered from a raster, so no shadow is applied.
   The border above stands in until a real value is supplied. */

.stats-card__value {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}

.stats-card__label {
  color: var(--color-text-body2);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}


/* ==========================================================================
   11. GLOBAL PRESENCE — region tabs, panel, location chips
   ========================================================================== */

.regions__heading {
  font-size: var(--font-size-h2);
  margin: 24px 0 48px;
  color: var(--color-brand-dark);
}

/* --- Pills -------------------------------------------------------------- */

.region-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.region-tab {
  padding: 12px 20px;
  border-radius: 12px;
  background-color: var(--color-surface-muted);
  color: var(--color-text-dark);
  font-size: var(--font-size-small);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--color-text-body1);

}

/* The selected state is the one interactive state visible in the reference. */
.region-tab[aria-selected="true"] {
  background-color: var(--color-brand);
  color: var(--color-text-inverse);
  box-shadow: 0px 8px 15px 0px #0000004D;

}

/* --- Panel -------------------------------------------------------------- */

/* All seven panels use the shared .grid-2 primitive. Americas is real content;
   the other six carry placeholder copy added on 2026-07-21. */
.region-panel {
  align-items: start;
}

/* Beats .grid-2's display:grid on specificity, so hidden panels stay hidden. */
.region-panel[hidden] {
  display: none;
}

.region-panel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.region-panel-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.region-panel__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: var(--color-heading1);
}

.region-panel__body {
  color: var(--color-text-body1);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}

.region-panel-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.region-panel__media {
  position: relative;
}

.region-panel__media span {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 30px;
  left: 20px;

}

.region-panel__media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0px 25px 50px -12px #00000040;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  max-height: 400px;
}

/* The region name overlay is baked into the supplied photograph
   (assets/image/Container.png), so it is not repeated here in CSS. */

.region-panel__empty {
  font-size: var(--font-size-small);
  color: var(--color-text-body);
}

/* --- Location chips ----------------------------------------------------- */

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background-color: var(--color-surface-card);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.location-chip-content {
  display: flex;
  flex-direction: column;
}

.location-chip__city {
  font-weight: var(--font-weight-bold);
  color: var(--color-heading1);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
}

.location-chip__type {
  color: var(--color-text-body1);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;

}


/* ==========================================================================
   12. OPPORTUNITIES — cards and icon chips
   ========================================================================== */
.opportunities__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 548px;
  margin: 0 auto 48px;
}

.opportunities__heading {
  font-size: var(--font-size-h2-lg);
  margin-top: 24px;
}

.opportunities__subtitle {
  color: var(--color-text-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 31px 30px;
  background-color: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0px 5px 10px 0px #0000001A;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

/* Soft shadow visible in the reference is [unknown]. The border stands in. */

.card__title {
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;

}

.card__body {
  color: var(--color-text-body3);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;

}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: auto;
  color: var(--color-brand);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
}

.card__link .icon {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
}

.icon-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: var(--color-chip);
  color: var(--color-brand);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 12px;
}


/* ==========================================================================
   13. TESTIMONIALS — cards and carousel dots
   ========================================================================== */
.testimonials__title {
  max-width: 760px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0px 5px 15px 0px #00000026;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.testimonial-card__mark {
  width: var(--icon-size-xl);
  height: var(--icon-size-xl);
  color: var(--color-chip);
  margin-bottom: var(--space-4);
}

/* The only italic text in the design. */
.testimonial-grid {
  gap: 24px;
}

.testimonial-card__quote {
  font-style: italic;
  color: var(--color-text-body1);
  margin: 10px 0 99px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;

}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
}

.testimonial-card__avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: var(--radius-pill);
  object-fit: cover;
  flex-shrink: 0;
  -webkit-border-radius: var(--radius-pill);
  -moz-border-radius: var(--radius-pill);
  -ms-border-radius: var(--radius-pill);
  -o-border-radius: var(--radius-pill);
}

.testimonial-content {
  display: flex;
  flex-direction: column;

}

.testimonial-card__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 22.5px;
  letter-spacing: 0px;
  color: #0A0A2E;
}

.testimonial-card__role {
  font-weight: 400;
  font-size: 16px;
  line-height: 19.5px;
  letter-spacing: 0px;
  color: var(--color-text-body2);
}

/* --- Carousel dots ------------------------------------------------------ */

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-7);
}

.carousel-dot {
  width: 11px;
  height: 4px;
  border-radius: 10px;
  background-color: #005A9C80;
}

.carousel-dot[aria-selected="true"] {
  background-color: var(--color-brand);
  width: 23px;
  height: 8px;
}


/* ==========================================================================
   14. FOOTER

   NOTE: website.png fills the footer with #005A9C. That colour is banned.
   This footer uses --color-brand instead. The difference from the reference
   is deliberate and approved.
   ========================================================================== */

.footer {
  padding: 32px 0;
  background-color: var(--color-brand);
  color: var(--color-text-inverse);
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .footer__legal a {
  color: var(--color-surface);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 2%;
}

.footer .footer__legal a:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid var(--color-surface);
}

/* --- Row one: legal links ----------------------------------------------- */

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* --- Row two: social ---------------------------------------------------- */

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-surface);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 2%;
}

.footer__social-icons {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* --- Row three: copyright ----------------------------------------------- */

.footer__copyright {
  color: var(--color-surface);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 2%;
}