:root {
  --embassy-orange: #bd7100;
  --embassy-orange-dark: #9a4f00;
  --embassy-red: #8b0000;
  --embassy-border: #d4d4d4;
}

html {
  background: #ececec;
}

body.site {
  margin: 0;
  color: #333;
  background: #ececec;
  border-top: 3px solid var(--embassy-orange);
  font: 13px/1.45 Arial, Helvetica, sans-serif;
}

a {
  color: #c26400;
}

a:hover,
a:focus {
  color: #7d3100;
}

.container-header,
.site-grid,
.container-footer > .grid-child {
  width: min(980px, calc(100% - 32px));
  max-width: 980px;
  margin-inline: auto;
}

.container-header {
  margin-top: 20px;
  padding: 0 20px;
  color: #333;
  background: #fff;
  background-image: none;
  border: 1px solid var(--embassy-border);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
}

.container-header .container-topbar {
  max-width: none;
  padding: 0;
}

.embassy-masthead {
  display: flex;
  min-height: 178px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0 8px;
  border-bottom: 1px solid #e5e5e5;
}

.embassy-crest {
  display: block;
  width: 130px;
  height: 135px;
  object-fit: contain;
}

.embassy-masthead-right {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.embassy-masthead-right p {
  margin: 0 0 6px;
  color: var(--embassy-red);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.embassy-investment-logo {
  width: min(300px, 100%);
  height: auto;
}

.container-header .container-nav {
  min-height: 41px;
  padding: 7px 0 0;
  justify-content: flex-start;
}

.container-header .mod-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  color: #b65e00;
}

.container-header .metismenu.mod-menu > li.metismenu-item {
  padding: 0;
}

.container-header .mod-menu > li + li {
  margin-left: 0;
}

.container-header .mod-menu > li > a,
.container-header .mod-menu > li > span {
  min-height: 34px;
  padding: 8px 8px;
  color: #b65e00;
  border: 0;
  border-radius: 5px 5px 0 0;
  font-size: 12.5px;
  line-height: 18px;
  text-decoration: none;
}

.container-header .mod-menu > li > button.mm-toggler {
  width: 18px;
  min-height: 34px;
  margin-left: -7px;
  padding: 0;
  color: #b65e00;
  background: transparent;
  border: 0;
}

.container-header .mod-menu > li.active > a,
.container-header .mod-menu > li > a:hover,
.container-header .mod-menu > li > a:focus,
.container-header .mod-menu > li > button:hover,
.container-header .mod-menu > li > button:focus {
  color: #fff;
  background: var(--embassy-orange);
}

.container-header .metismenu.mod-menu .mm-collapse {
  z-index: 1000;
  min-width: 230px;
  color: #333;
  background: #fff;
  border: 1px solid var(--embassy-border);
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
}

.container-header .metismenu.mod-menu .mm-collapse a {
  color: #9a4f00;
}

.site-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  grid-template-areas: none !important;
  gap: 20px;
  padding: 0 20px 50px;
  background: #fff;
  border: 1px solid var(--embassy-border);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
}

.site-grid > .container-banner {
  grid-area: 1 / 1 / auto / -1 !important;
  width: auto;
  max-width: none;
  margin: 0;
  border-top: 3px solid #161616;
  border-bottom: 3px solid #161616;
}

.embassy-slider {
  position: relative;
  overflow: hidden;
  background: #222;
  aspect-ratio: 941 / 252;
}

.embassy-slides,
.embassy-slide {
  width: 100%;
  height: 100%;
}

.embassy-slide {
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease-in-out;
}

.embassy-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.embassy-slider-prev,
.embassy-slider-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #fff;
  background: rgb(0 0 0 / 55%);
  border: 0;
  font-size: 38px;
  line-height: 50px;
  transform: translateY(-50%);
  cursor: pointer;
}

.embassy-slider-prev { left: 0; }
.embassy-slider-next { right: 0; }

.embassy-slider-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 13px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.embassy-slider-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  background: #555;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.embassy-slider-dots button.is-active {
  background: var(--embassy-orange);
}

.site-grid > .container-component {
  grid-area: 2 / 1 / auto / 2 !important;
  min-width: 0;
  padding-top: 16px;
}

.site-grid > .container-sidebar-right {
  grid-area: 2 / 2 / auto / 3 !important;
  padding-top: 16px;
}

.container-sidebar-right .card {
  margin-bottom: 20px;
  background: #f7f7f7;
  border: 1px solid var(--embassy-border);
  border-radius: 4px;
  box-shadow: none;
}

.container-sidebar-right .card-header {
  padding: 14px 19px 5px;
  color: #3a3a3a;
  background: transparent;
  border: 0;
  font-size: 18px;
}

.container-sidebar-right .card-body {
  padding: 5px 19px 16px;
}

.container-sidebar-right ul {
  margin: 0;
  padding-left: 18px;
}

.com-content-article__body img {
  max-width: 100%;
  height: auto;
}

.com-content-article__body pre {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.container-footer {
  margin-top: 20px;
  padding: 22px 0;
  color: #666;
  background: #ececec;
  background-image: none;
  font-size: 11px;
}

.embassy-footer-module {
  text-align: center;
}

.embassy-footer-module p {
  margin: 0;
}

.back-to-top-link {
  color: #fff;
  background: var(--embassy-orange);
  border-color: var(--embassy-orange-dark);
}

@media (max-width: 860px) {
  .container-header,
  .site-grid,
  .container-footer > .grid-child {
    width: calc(100% - 20px);
  }

  .embassy-masthead {
    min-height: 0;
  }

  .site-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .site-grid > .container-banner {
    grid-area: 1 / 1 / auto / 2 !important;
  }

  .site-grid > .container-component {
    grid-area: 2 / 1 / auto / 2 !important;
  }

  .site-grid > .container-sidebar-right {
    grid-area: 3 / 1 / auto / 2 !important;
  }
}

@media (max-width: 620px) {
  .container-header,
  .site-grid {
    padding-inline: 12px;
  }

  .embassy-masthead {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .embassy-masthead-right {
    align-items: center;
    text-align: center;
  }

  .container-header .mod-menu {
    display: block;
    width: 100%;
  }

  .container-header .navbar-toggler {
    margin: 4px 0 8px;
    color: #fff;
    background: var(--embassy-orange);
    border: 1px solid var(--embassy-orange-dark);
  }

  .embassy-slider-prev,
  .embassy-slider-next {
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .embassy-slide {
    transition: none;
  }
}
