/* [project]/app/globals.css [app-client] (css) */
@font-face {
  font-family: EMprint W04 Semibold;
  src: url("/fonts/EMprintW04-Semibold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: EMprint W04 Regular;
  src: url("/fonts/EMprintW04-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: Ocra;
  src: url("/fonts/ocra_regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: Tiny5;
  src: url("/fonts/Tiny5-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --esso-header-bg: #fff;
  --esso-header-text: #1a1a1a;
  --esso-header-text-muted: #4a4a4a;
  --esso-header-accent-line: #0033a0;
  --esso-footer-bg: #000;
  --esso-text: #fff;
  --esso-text-muted: #ffffffd9;
  --esso-accent: #e31837;
  --esso-link-hover: #ffffffe6;
  --esso-font: "EMprint W04 Regular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --esso-font-semibold: "EMprint W04 Semibold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 64px;
  --footer-height: 160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  font-family: var(--esso-font);
  flex-direction: column;
  flex: 1;
  line-height: 1.5;
  display: flex;
  overflow-x: clip;
}

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

a:hover {
  text-decoration: underline;
}

.main-esso {
  min-height: calc(100vh - var(--header-height)  - var(--footer-height));
  padding-top: var(--header-height);
  padding-bottom: var(--footer-height);
  background: #f5f5f5;
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

.header-esso {
  z-index: 1000;
  background: var(--esso-header-bg);
  color: var(--esso-header-text);
  border-bottom: 3px solid var(--esso-header-accent-line);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px #0000000d;
}

.header-inner {
  max-width: 1280px;
  height: var(--header-height);
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.header-logo {
  flex-shrink: 0;
  order: -1;
  align-items: center;
  display: flex;
}

.header-nav-wrap {
  order: 0;
}

.header-actions {
  order: 1;
}

.header-logo-img {
  width: auto;
  height: 36px;
  display: block;
}

.header-logo-text {
  font-family: var(--esso-font-semibold);
  letter-spacing: .02em;
  color: var(--esso-header-text);
  font-size: 1.25rem;
  font-weight: 600;
}

.header-hamburger {
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: var(--esso-header-text);
  background: none;
  border: none;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  display: none;
}

.header-hamburger:hover {
  background: #0033a00f;
}

.header-hamburger-bar {
  background: currentColor;
  border-radius: 1px;
  width: 22px;
  height: 2px;
  transition: transform .2s, opacity .2s;
  display: block;
}

.header-hamburger[aria-expanded="true"] .header-hamburger-bar:first-child {
  transform: translateY(7px)rotate(45deg);
}

.header-hamburger[aria-expanded="true"] .header-hamburger-bar:nth-child(2) {
  opacity: 0;
}

.header-hamburger[aria-expanded="true"] .header-hamburger-bar:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

.header-nav-wrap {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header-nav {
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.header-nav-list {
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header-nav-item {
  position: relative;
}

.header-esso .header-link {
  font-family: var(--esso-font-semibold);
  color: var(--esso-header-text);
  border-radius: 4px;
  padding: .5rem .75rem;
  font-size: .95rem;
  transition: background-color .15s, color .15s;
}

.header-esso .header-link:hover, .header-esso .header-link--active {
  color: var(--esso-header-accent-line);
  background-color: #eef5fb;
  text-decoration: none;
}

.header-esso .header-link--sub {
  font-family: var(--esso-font-semibold);
  color: var(--esso-header-text-muted);
  padding: .35rem .5rem;
  font-size: .85rem;
}

.header-esso .header-link--sub:hover, .header-esso .header-link--sub.header-link--active {
  color: var(--esso-header-accent-line);
  background-color: #eef5fb;
}

.header-sub-list {
  flex-direction: column;
  gap: .25rem;
  margin: .25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header-actions {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.header-account-btn {
  cursor: pointer;
  color: var(--esso-header-accent-line);
  background: none;
  border: none;
  border-radius: 4px;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  font-family: inherit;
  font-size: .95rem;
  display: inline-flex;
}

.header-account-btn:hover {
  background: #0033a00f;
  text-decoration: none;
}

.header-account-btn svg {
  flex-shrink: 0;
}

.header-account-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.header-account-dropdown {
  background: var(--esso-header-bg);
  z-index: 1001;
  border: 1px solid #0000001a;
  border-radius: 6px;
  min-width: 220px;
  margin-top: .25rem;
  padding: 1rem;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 12px #0000001f;
}

.header-account-dropdown a {
  color: var(--esso-header-accent-line);
  padding: .5rem 0;
  font-size: .9rem;
  display: inline-block;
}

.header-account-dropdown a:hover {
  text-decoration: underline;
}

.header-account-dropdown p {
  color: var(--esso-header-text-muted);
  margin: .5rem 0 0;
  font-size: .85rem;
}

.header-account-wrap {
  position: relative;
}

.header-lang {
  gap: .25rem;
  display: flex;
}

.header-lang-link {
  color: var(--esso-header-text-muted);
  padding: .25rem .5rem;
  font-size: .85rem;
}

.header-lang-link:hover {
  color: var(--esso-header-accent-line);
  text-decoration: none;
}

.header-lang-link--active {
  color: var(--esso-header-accent-line);
  font-weight: 600;
}

@media (max-width: 1023px) {
  .header-hamburger {
    order: -1;
    display: flex;
  }

  .header-logo {
    order: 0;
  }

  .header-actions {
    order: 1;
  }

  .header-nav-wrap {
    top: var(--header-height);
    background: var(--esso-header-bg);
    border-bottom: 3px solid var(--esso-header-accent-line);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    flex: none;
    justify-content: stretch;
    align-items: stretch;
    max-height: 0;
    transition: max-height .25s, opacity .2s, visibility .2s;
    position: fixed;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px #0000001f;
  }

  .header-nav-wrap--open {
    opacity: 1;
    visibility: visible;
    max-height: 80vh;
    overflow-y: auto;
  }

  .header-nav-wrap .header-nav {
    width: 100%;
    padding: 1rem 1.5rem;
    display: block;
  }

  .header-nav-wrap .header-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-nav-wrap .header-nav-item {
    border-bottom: 1px solid #0000000f;
  }

  .header-nav-wrap .header-nav-item:last-child {
    border-bottom: none;
  }

  .header-nav-wrap .header-link {
    padding: .75rem 0;
    font-size: 1rem;
    display: block;
  }

  .header-nav-wrap .header-sub-list {
    margin-top: .25rem;
    margin-bottom: .5rem;
    padding-left: 1rem;
  }
}

.footer-esso {
  z-index: 999;
  background: var(--esso-footer-bg);
  color: var(--esso-text-muted);
  margin-top: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.footer-links {
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-links a {
  color: var(--esso-text-muted);
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--esso-link-hover);
  text-decoration: none;
}

.footer-bottom {
  color: #ffffffb3;
  border-top: 1px solid #ffffff26;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  font-size: .8rem;
  display: flex;
}

.footer-copyright {
  max-width: 60ch;
}

.footer-apps {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.footer-apps a {
  color: inherit;
  display: inline-block;
}

.footer-apps a:hover {
  opacity: .9;
  text-decoration: none;
}

.footer-apps img {
  width: auto;
  height: 36px;
  display: block;
}

.not-found-esso {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.not-found-esso h1 {
  color: var(--esso-header-text, #1a1a1a);
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

.not-found-esso p {
  color: var(--esso-header-text-muted, #4a4a4a);
  margin-bottom: 1.5rem;
}

.not-found-link {
  background: var(--esso-header-accent-line, #0033a0);
  color: #fff;
  border-radius: 4px;
  padding: .5rem 1rem;
  font-size: .95rem;
  display: inline-block;
}

.not-found-link:hover {
  opacity: .9;
  text-decoration: none;
}

.page-content {
  color: #002d5c;
  max-width: 100%;
  font-family: var(--esso-font);
  background: #fff;
  margin: 0;
  padding: 2rem 1.5rem;
  line-height: 1.6;
  box-shadow: 0 0 0 1px #0000000f;
}

.page-content > * + * {
  margin-top: 1rem;
}

.page-content h1 {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  text-underline-offset: .2em;
  margin-bottom: .75rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}

.page-content h2, .page-content h3 {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin-top: 1.25rem;
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.page-content p {
  color: #002d5c;
  margin-bottom: .75rem;
}

.page-content ul {
  margin: .75rem 0;
  padding-left: 0;
  list-style: none;
}

.page-content ul li {
  margin-bottom: .5rem;
  padding-left: 1.25rem;
  position: relative;
}

.page-content ul li:before {
  content: "";
  background: #0033a0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: .5em;
  left: 0;
}

.page-content ol {
  margin: .75rem 0;
  padding-left: 1.5rem;
}

.page-content ol li {
  color: #002d5c;
  margin-bottom: .5rem;
}

.page-content a {
  color: #0033a0;
  text-decoration: underline;
}

.page-content a:hover {
  text-decoration: none;
}

.page-content img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-full-bleed {
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  max-width: 100%;
  margin-bottom: -2px;
  overflow: hidden;
}

.page-hero {
  aspect-ratio: 1920 / 514;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-height: 160px;
  max-height: min(560px, 80vh);
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-hero:after {
  content: "";
  z-index: 2;
  background: #fff;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-hero-img {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  vertical-align: top;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.page-hero-title-wrap {
  z-index: 3;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.page-hero-title {
  font-family: var(--esso-font-semibold);
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px #0009;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
}

.program-blocks {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.program-blocks-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0 0 .5rem;
  font-size: 2rem;
}

.program-blocks-subtitle {
  color: #4a4a4a;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.program-blocks:not(:has(.program-blocks-subtitle)) .program-blocks-title {
  margin-bottom: 1.5rem;
}

.program-blocks-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  display: grid;
}

@media (min-width: 1025px) {
  .program-blocks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-block-card {
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 8px;
  flex-direction: row;
  align-items: stretch;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 3px #00000014;
}

.program-blocks--vertical .program-block-card {
  flex-direction: column;
}

.program-blocks--vertical .program-block-img-wrap {
  aspect-ratio: 3 / 4;
  flex: none;
  width: 100%;
  min-height: 0;
  max-height: 280px;
}

.program-blocks--vertical .program-block-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.program-blocks--vertical .program-block-content {
  justify-content: flex-start;
}

.program-block-img-wrap {
  aspect-ratio: 3 / 4;
  flex: 0 0 40%;
  min-width: 0;
  min-height: 180px;
  overflow: hidden;
}

.program-block-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .program-blocks--horizontal .program-block-img-wrap {
    aspect-ratio: 321 / 189;
    flex: 0 0 321px;
    width: 321px;
    height: 189px;
    min-height: 189px;
  }
}

@media (max-width: 767px) {
  .program-blocks--horizontal .program-block-card {
    flex-direction: column;
  }

  .program-blocks--horizontal .program-block-img-wrap {
    aspect-ratio: auto;
    flex: none;
    width: 100%;
    min-height: 0;
  }

  .program-blocks--horizontal .program-block-img {
    object-fit: contain;
    object-position: center;
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

.program-block-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.program-block-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}

.program-block-desc {
  color: #4a4a4a;
  margin: 0 0 .75rem;
  font-size: .9rem;
  line-height: 1.5;
}

.program-block-link-wrap {
  margin-top: .25rem;
}

.program-block-link {
  color: #0033a0;
  background: #0033a014;
  border: 1px solid #0033a033;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 600;
  display: inline-block;
}

.program-block-link:hover {
  background: #0033a01f;
  text-decoration: none;
}

.article-intro {
  background: #fff;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 0 1px #0000000f;
}

.article-intro-inner {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.article-intro-content {
  flex: 1;
  min-width: 0;
}

.article-intro-category {
  font-family: var(--esso-font-semibold);
  color: #0033a0;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 .5rem;
  font-size: .9rem;
}

.article-intro-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0 0 1rem;
  font-size: 1.75rem;
  line-height: 1.3;
}

.article-intro-body {
  color: #002d5c;
  font-size: 1rem;
  line-height: 1.6;
}

.article-intro-body p {
  margin-bottom: .75rem;
}

.article-intro-cta {
  margin-top: 1.25rem;
}

.article-intro-cta-link {
  color: #0033a0;
  background: #0033a014;
  border: 1px solid #0033a033;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 600;
  display: inline-block;
}

.article-intro-cta-link:hover {
  background: #0033a01f;
  text-decoration: none;
}

.article-intro-decoration {
  background: none;
  flex: 0 0 120px;
  height: 80px;
  min-height: 80px;
}

.article-intro-decoration--has-bg {
  aspect-ratio: 810 / 545;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex: none;
  width: 810px;
  max-width: 48%;
  height: auto;
  min-height: 280px;
}

@media (max-width: 767px) {
  .article-intro:has(.article-intro-decoration--has-bg) .article-intro-inner {
    flex-direction: column;
  }

  .article-intro:has(.article-intro-decoration--has-bg) .article-intro-decoration--has-bg {
    aspect-ratio: auto;
    background-position: center;
    background-size: cover;
    order: -1;
    width: 100%;
    max-width: 100%;
    height: 240px;
    min-height: 240px;
  }

  .article-intro:has(.article-intro-decoration--has-bg) .article-intro-content {
    order: 0;
  }
}

.article-image-text {
  background: #fff;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 0 1px #0000000f;
}

.article-image-text-inner {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.article-image-text--right .article-image-text-media {
  order: 2;
}

.article-image-text--right .article-image-text-content {
  order: 1;
}

.article-image-text-media {
  flex: 0 0 40%;
  min-width: 280px;
  max-width: 500px;
}

.article-image-text-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: auto;
  display: block;
}

.article-image-text-content {
  flex: 1;
  min-width: 0;
}

.article-image-text-label {
  color: #0033a0;
  margin-bottom: .5rem;
  font-size: .9rem;
  display: inline-block;
}

.article-image-text-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0 0 .75rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.article-image-text-body {
  color: #002d5c;
  font-size: .95rem;
  line-height: 1.6;
}

.article-image-text-body p {
  margin-bottom: .75rem;
}

.article-image-text-link-wrap {
  margin-top: 1rem;
}

.article-image-text-link {
  color: #0033a0;
  font-size: .95rem;
  font-weight: 600;
  display: inline-block;
}

.article-image-text-link:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .article-image-text-media {
    flex: 0 0 100%;
    min-width: 0;
    max-width: none;
  }

  .article-image-text--right .article-image-text-media, .article-image-text--right .article-image-text-content {
    order: unset;
  }
}

.article-cta {
  background: #fff;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 0 1px #0000000f;
}

.article-cta-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.article-cta-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0;
  font-size: 1.25rem;
}

.article-cta-body {
  color: #4a4a4a;
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: .95rem;
}

.article-cta-link-wrap {
  flex-shrink: 0;
}

.article-cta-link {
  color: #0033a0;
  background: #0033a014;
  border: 1px solid #0033a033;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 600;
  display: inline-block;
}

.article-cta-link:hover {
  background: #0033a01f;
  text-decoration: none;
}

@media (max-width: 767px) {
  .article-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.article-faq-cta {
  background: #0033a0;
  border-radius: 12px;
  margin: 0 1.5rem 2rem;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.article-faq-cta-waves {
  pointer-events: none;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.article-faq-cta-wave {
  opacity: .9;
  width: 55%;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.article-faq-cta-wave--left {
  left: 0;
}

.article-faq-cta-wave--right {
  right: 0;
}

.article-faq-cta-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.article-faq-cta-title {
  font-family: var(--esso-font-semibold);
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.article-faq-cta-btn {
  color: #002d5c;
  background: #b8d4f1;
  border-radius: 8px;
  flex-shrink: 0;
  padding: .6rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  display: inline-block;
}

.article-faq-cta-btn:hover {
  background: #cce0f5;
  text-decoration: none;
}

@media (max-width: 767px) {
  .article-faq-cta {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .article-faq-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-faq-cta-title {
    font-size: 1.25rem;
  }
}

.article-detail-nav {
  background: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 0 1px #0000000f;
}

.article-detail-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.article-detail-back {
  color: #0033a0;
  font-size: .95rem;
}

.article-detail-back:hover {
  text-decoration: none;
}

.article-detail-hero {
  background: #f0f0f0;
  width: 100%;
  max-height: 320px;
  position: relative;
  overflow: hidden;
}

.article-detail-hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.article-detail-hero-title {
  color: #fff;
  font-family: var(--esso-font-semibold);
  background: linear-gradient(#0000, #0009);
  margin: 0;
  padding: 1.5rem;
  font-size: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.faq-section-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.faq-section-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0;
  font-size: 1.25rem;
}

.faq-section-viewall {
  color: #0033a0;
  font-size: .95rem;
}

.faq-section-viewall:hover {
  text-decoration: none;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border: 1px solid #00000014;
  border-radius: 6px;
  margin-bottom: .5rem;
  overflow: hidden;
}

.faq-question-wrap {
  margin: 0;
}

.faq-question {
  text-align: left;
  color: #002d5c;
  cursor: pointer;
  background: #fff;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-answer-wrap {
  border-top: 1px solid #0000000f;
}

.faq-answer {
  color: #4a4a4a;
  padding: 1rem 1.25rem;
  font-size: .95rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: .5rem;
}

.faq-answer ul {
  margin: .5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.faq-answer ul li {
  margin-bottom: .35rem;
}

.faq-answer ul li::marker {
  color: #0033a0;
}

.faq-answer .faq-entity-bullet {
  color: #0033a0;
  margin-right: .25rem;
  font-weight: bold;
}

.faq-entity {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.faq-entity-tabs-wrap {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-entity-tabs {
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  padding: 4px 0;
  display: flex;
  overflow-x: auto;
}

.faq-entity-tabs::-webkit-scrollbar {
  height: 6px;
}

.faq-entity-tab {
  scroll-snap-align: start;
  cursor: pointer;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #00000014;
  border-radius: 8px;
  flex-direction: column;
  flex: none;
  align-items: center;
  gap: .5rem;
  min-width: 100px;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .8rem;
  transition: background .2s, color .2s, border-color .2s;
  display: flex;
}

.faq-entity-tab:hover {
  color: #002d5c;
  background: #eee;
}

.faq-entity-tab--active {
  color: #fff;
  background: #0033a0;
  border-color: #0033a0;
}

.faq-entity-tab-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.faq-entity-tab-icon img {
  object-fit: contain;
  width: 44px;
  height: 44px;
}

.faq-entity-tab-icon-placeholder {
  background: #e1e1e1;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.faq-entity-tab-label {
  text-align: center;
  line-height: 1.2;
}

.faq-entity-heading {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.faq-entity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-entity-item {
  border: 1px solid #00000014;
  border-radius: 6px;
  margin-bottom: .5rem;
  overflow: hidden;
}

.faq-entity-question-wrap {
  margin: 0;
}

.faq-entity-question {
  text-align: left;
  color: #002d5c;
  cursor: pointer;
  background: #fff;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.faq-entity-question:hover {
  background: #f8f8f8;
}

.faq-entity-chevron {
  color: #666;
  flex-shrink: 0;
  font-size: .75rem;
}

.faq-entity-question--open .faq-entity-chevron {
  color: #0033a0;
}

.faq-entity-answer-wrap {
  border-top: 1px solid #0000000f;
}

.faq-entity-answer {
  color: #4a4a4a;
  padding: 1rem 1.25rem;
  font-size: .95rem;
  line-height: 1.6;
}

.faq-entity-answer p {
  margin-bottom: .5rem;
}

.faq-entity-answer ul {
  margin: .5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.faq-entity-answer ul li {
  margin-bottom: .35rem;
}

.faq-entity-answer ul li::marker {
  color: #0033a0;
}

.faq-entity-answer .faq-entity-bullet {
  color: #0033a0;
  margin-right: .25rem;
  font-weight: bold;
}

.faq-entity-empty {
  color: #666;
  margin: 0;
  font-size: .95rem;
}

.articles-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.articles-section-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.articles-section-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin: 0;
  font-size: 1.25rem;
}

.articles-section-viewall {
  color: #0033a0;
  font-size: .95rem;
}

.articles-section-viewall:hover {
  text-decoration: none;
}

.articles-section-empty {
  color: #4a4a4a;
  margin: 0;
  padding: 1rem 0;
  font-size: .95rem;
}

.articles-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.article-card {
  color: inherit;
  background: #fff;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  box-shadow: 0 1px 3px #00000014;
}

.article-card:hover {
  text-decoration: none;
  box-shadow: 0 4px 12px #0000001a;
}

.article-card-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.article-card-content {
  padding: 1.25rem;
}

.article-card-title {
  font-family: var(--esso-font-semibold);
  color: #002d5c;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.article-card-excerpt {
  color: #4a4a4a;
  margin-bottom: .5rem;
  font-size: .9rem;
}

.article-card-date {
  color: #6a6a6a;
  margin: 0;
  font-size: .8rem;
}

.slider-esso {
  flex-direction: column;
  min-height: 0;
  max-height: 38vh;
  display: flex;
}

.slider-esso > div {
  flex: 1;
  min-height: 0;
  display: flex;
}

.slider-esso .slider-esso-slide {
  min-height: 0;
}

.slider-esso .slider-esso-img, .slider-esso img {
  vertical-align: middle;
  display: block;
  object-fit: cover !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 35vh !important;
}

.page-sections {
  background: #fff;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .header-inner {
    gap: .75rem;
    padding: 0 1rem;
  }

  .header-nav-list {
    gap: .75rem;
  }

  .header-esso .header-link {
    font-size: .85rem;
  }

  .header-logo-img {
    height: 32px;
  }

  .header-account-btn span:not([class]) {
    display: none;
  }

  .footer-inner {
    padding: 1.25rem 1rem;
  }

  .footer-links {
    gap: .75rem 1rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: .75rem;
  }

  .page-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 1.25rem 1rem;
  }

  .page-content h1 {
    font-size: 1.25rem;
  }

  .page-content h2, .page-content h3 {
    font-size: 1rem;
  }

  .not-found-esso {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 52px;
    --footer-height: 140px;
  }

  .header-inner {
    padding: 0 .75rem;
  }

  .header-nav-list {
    gap: .5rem;
  }

  .header-lang-link {
    padding: .2rem .35rem;
    font-size: .8rem;
  }

  .page-content {
    padding: 1rem .75rem;
  }

  .main-esso {
    padding-left: 0;
    padding-right: 0;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/