:root {
  --raa-yellow: #ffe600;
}

.bread-crumb--fw {
  width: 100% !important;
}

.share-widget--fw {
  width: 100% !important;
}


/*
╭────────────────────―╮
│ Hero v2             │
╰─────────────────────╯
*/

@media (max-width: 1199.95px) {
  .hero-v2-col {
    width: 100%;
  }
}

.hero-v2 {
  display: flex;
  min-height: 30rem;

  border-radius: 1rem;
  overflow: clip;
}

.hero-v2__content {
  position: relative;
  display: grid;
  align-items: center;
  flex: 1 1 25em;
  padding-inline-start: 2.5em;
  padding-block: 2em;
  z-index: 1;

  background: var(--raa-yellow);
}

/* logo graphic */
.hero-v2__content::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 66'%3E%3Cpath fill='%23FFE600' d='M0 66 .097 0c1.798 0 3.461.82 4.365 2.153l19.01 28.04c1.2 1.768 1.194 3.952-.012 5.717L4.355 63.859c-.906 1.325-2.564 2.14-4.355 2.14V66Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;

  z-index: -1;
  pointer-events: none;
}

.hero-v2__heading.hero-v2__heading {
  margin-bottom: 0;
  margin-right: -2em; /* overlap graphic */
  font-size: 41px;
  word-break: break-word;
}


.hero-v2__image {
  flex: 1 1 66%;

  background-color: #d8d8d8;
}


@media(max-width: 1023.95px) {
  .hero-v2 {
    min-height: 20rem;
  }

  .hero-v2__content {
    flex-basis: 20em;
    padding-inline-start: 2em;
  }

  .hero-v2__heading.hero-v2__heading {
    font-size: 30px;
  }
}

@media(max-width: 639.95px) {
  .hero-v2 {
    min-height: auto;
    flex-direction: column;
  }

  .hero-v2__content {
    flex-basis: auto;
    padding-inline: 1.5em;
    padding-block: 2em;
  }

  .hero-v2__content::after {
    top: auto;
    bottom: 2px;
    right: auto;
    left: 0;
    transform: translateY(100%);
    height: 300%;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 66 25'%3E%3Cpath fill='%23FFE600' d='m0 0 66 .097c0 1.798-.82 3.461-2.153 4.365l-28.04 19.01c-1.768 1.2-3.952 1.194-5.717-.012L2.141 4.355C.816 3.449.001 1.79.001 0H0Z'/%3E%3C/svg%3E");
    background-size: 100% auto;
    background-position: top center;
  }

  .hero-v2__heading.hero-v2__heading {
    /* font-size: 24px; */
    margin-right: 0;
    margin-bottom: -0.5em;
    max-width: 100%;
  }

  .hero-v2__image {
    min-height: 15em;
  }
}


/*
╭────────────────────―╮
│ Big list            │
╰─────────────────────╯
*/

.big-list {
  --big-list-marker-width: 2em;

  margin-block: 4em;
  padding-inline: 0;
  margin-inline: 0;
  list-style-type: "";
}

.big-list li {
  position: relative;
  padding-inline-start: calc(var(--big-list-marker-width) + 1em);

  line-height: 1.3;
  font-size: 26px;
  font-family: national2web-medium, Arial, sans-serif;
  font-weight: 500;
}

.big-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* display: inline-block; */
  width: var(--big-list-marker-width);
  height: calc(1.16 * var(--big-list-marker-width));

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 56 66'%3E%3Cg clip-path='url(%23a)'%3E%3Cmask id='b' width='56' height='66' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M56 0H0v66h56V0Z'/%3E%3C/mask%3E%3Cg mask='url(%23b)'%3E%3Cpath fill='%23FFE600' d='M31.631 66H5.327c-4.077 0-6.63-3.778-4.605-6.812l17.456-26.14L.706 6.806C-1.314 3.773 1.24 0 5.314 0H31.73c1.797 0 3.46.82 4.364 2.153l19.01 28.04c1.2 1.768 1.195 3.952-.011 5.717L35.986 63.859c-.906 1.325-2.563 2.14-4.355 2.14V66Z'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h56v66H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.big-list li + li {
  margin-block-start: 2em;
}

@media(max-width: 1023.95px) {
  .big-list {
    --big-list-marker-width: 1.5em;
  }

  .big-list li {
    font-size: 24px;
  }
}

@media(max-width: 639.95px) {
  .big-list li {
    font-size: 20px;
  }
}



/*
╭────────────────────―╮
│ Page nav            │
╰─────────────────────╯
*/

.page-navigation--article {
  margin-block-start: 0;
}

.page-navigation--article .page-navigation__item {
  overflow: clip;
}

.page-navigation--article .page-navigation__item a {
  display: grid;
  place-items: center;
  padding: 1em 0.5em;

  font-family: national2web-bold, Arial, sans-serif;
  font-size: 24px;
  text-align: center;
  line-height: 1.1;
  color: #000;
  text-wrap: balance;

  transition: 0.3s ease;
}

.page-navigation--article .page-navigation__item a:hover,
.page-navigation--article .page-navigation__item a:focus-visible {
  background: var(--raa-yellow);
}



/*
╭────────────────────―╮
│ Cards               │
╰─────────────────────╯
*/

.card-list {
  margin-inline: 0;
  margin-block: 4rem;

  padding: 0;
}

.card-list .card {
  margin-top: 0;
}

.card-list .card + .card {
  margin-top: 40px;
}

.card--sm .card__body {
  padding-block: 2rem 4rem;
}

.card--sm .card__title {
  margin-top: 0;
  margin-bottom: 0.25em;
  font-size: 30px;
}

.card--sm .card__img {
  min-height: 12em;
}

.card__img {
  position: relative;
  overflow: clip;
}

.card__img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
  margin: 0 !important;
}

.card__img .card__img-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .card__img .card__img-mobile {
    display: block;
  }

  .card__img .card__img-desktop {
    display: none;
  }
}


/*
╭────────────────────―╮
│ Related articles    │
╰─────────────────────╯
*/

.sidebar-heading {
  margin-bottom: 0.75em;

  font-size: 30px;
  font-family: national2web-medium, Arial, sans-serif;
}

.related-sidebar > * + * {
  margin-block-start: 2rem;
}


a.article-card {
  display: grid;
  grid-template-columns: min(8em, 25%) auto;
  gap: 5%;

  text-decoration: none;
  color: inherit;
}

.article-card__img {
  --aspect-ratio: calc(1 / 1 * 100%);

  border-radius: 0.75rem;
  overflow: clip;
}

.article-card__img img {
  object-fit: cover;
}

.article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 0.5em;
}

.article-card__meta > * {
  margin-block: 0;

  text-transform: uppercase;
  font-size: 14px;
}

.article-card__heading {
  font-family: national2web-extrabold, Arial, sans-serif;
  font-size: 20px;

  margin-bottom: 0.5em;
}

.article-card__excerpt p {
  font-size: 17px;
}


/*
╭────────────────────―╮
│ Callout             │
╰─────────────────────╯
*/

.callout {
  margin-inline: -30px;
  margin-block: 3em;
  padding: 45px 30px 60px;

  border-radius: 1rem;
  background: var(--raa-yellow);
}

.callout > * {
  font-weight: 500;
  font-family: national2web-medium, Arial, sans-serif;
  line-height: 1.5;
}

.callout > * + * {
  margin-block-start: 1.5em;
}

.callout p {
  margin-bottom: 0;
}

@media screen and (max-width: 1600px) {
  .callout {
    margin-inline: 0;
  }
}


/*
╭────────────────────―╮
│ General             │
╰─────────────────────╯
*/

.content-copy strong {
  font-family: national2web-bold, Arial, sans-serif;
}

.h1--small {
  font-size: 40px;
}

.big-num {
  font-size: 1.3em;
}


.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--aspect-ratio);
  content: '';
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.entry-detail--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;

  border-bottom: 2px solid #707070;
}

.entry-detail--flex > * {
  width: auto !important;
}

.entry-detail--flex .share-widget {
  flex-shrink: 0;
}

.entry-detail--flex + .authoring {
  border: none;
  width: auto;
}

.entry-detail--flex + .authoring .posted {
  float: none;
  font-size: 16px;
}

.article-intro {
  margin-bottom: 0;
}

.content-block img.hero-img {
  margin-block: 0 2rem;
}