/* =========================================================
   COMPONENT — Info Group
========================================================= */

.infoGroup{
  display: grid;
  gap: 8px;
}

.infoGroup__label{
  margin: 0;

  color: var(--brand-600);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.infoGroup p{
  margin: 0;

  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.infoGroup--dark .infoGroup__label{
  color: rgba(201,151,53,.88);
}

.infoGroup--dark p{
  color: rgba(255,255,255,.76);
}


/* =========================================================
   COMPONENT — Feature Panel
========================================================= */
.featurePanel__content{
  position: relative;
  z-index: 2;

  min-height: 100%;
}

.featurePanel{
  isolation: isolate;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(201,151,53,.24);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      150deg,
      #125B43 0%,
      #0E503D 100%
    );
    box-shadow: 0 18px 44px rgba(10,47,38,.13);

}

.featurePanel__visual{
  position: absolute;
  z-index: 0;

  top: 50%;
  right: clamp(-110px, -5vw, -50px);

  width: clamp(300px, 34vw, 500px);
  aspect-ratio: 1;

  transform: translateY(-50%);
  pointer-events: none;
}

.featurePanel__image{
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
  object-position: center;

  opacity: .48;

  filter:
    saturate(1.04)
    contrast(1.02);

  transform:
    translateX(0)
    scale(1);

  transition:
    opacity .34s ease,
    transform .42s cubic-bezier(.22, 1, .36, 1);
}

.featurePanel__shade{
  position: relative;
  z-index: 2;

  min-height: 100%;
  padding: 30px;

  border: 1px solid rgba(201,151,53,.22);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      180deg,
      rgba(18,91,67,.96) 0%,
      rgba(14,80,61,.94) 100%
    );

  color: #FFFFFF;
  box-shadow: 0 18px 44px rgba(10,47,38,.13);

  backdrop-filter: blur(2px);
}

.featurePanel::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(14,80,61,.92) 0%,
      rgba(14,80,61,.88) 46%,
      rgba(14,80,61,.66) 100%
    );
}
.featurePanel > *{
  position: relative;
  z-index: 1;
}
.featurePanel__eyebrow{
  margin: 0 0 12px;

  color: rgba(201,151,53,.92);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featurePanel h3{
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(28px, 3vw, 38px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 700;
}

.featurePanel__text{
  margin: 18px 0 0;

  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.7;
}

.featurePanel__groups{
  display: grid;
  gap: 14px;

  margin-top: 15px;
}

.featurePanel__actions{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: auto;
  padding-top: 30px;
}

.featurePanel__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}



/* =========================================================
   COMPONENT — Dark Profile Card
   Used for origin/country profile panels
========================================================= */

.darkProfileCard{
 position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 100%;
  padding: clamp(26px, 3vw, 34px);

  border: 1px solid rgba(201,151,53,.22);
  border-radius: var(--radius-lg);

  background:linear-gradient(
      150deg,
      #125B43 0%,
      #0E503D 100%
    );

  color: #FFFFFF;

  box-shadow: 0 18px 44px rgba(10,47,38,.13);
}

.darkProfileCard__eyebrow{
  margin: 0 0 12px;

  color: rgba(201,151,53,.92);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.darkProfileCard h3{
  margin: 0;

  color: #FFFFFF;
  font-size: clamp(28px, 3vw, 38px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 700;
}

.darkProfileCard__text{
  margin: 18px 0 0;

  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.7;
}

.darkProfileCard__groups{
  display: grid;
  gap: 18px;

  margin-top: 30px;
}

.darkProfileCard__top{
  display: grid;
  gap: 0;
}
/* =========================================================
   COMPONENT — Responsive
========================================================= */

@media (max-width: 680px){
  .featurePanel,
  .darkProfileCard{
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .featurePanel h3,
  .darkProfileCard h3{
    font-size: clamp(28px, 10vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce){
  .featurePanel__image{
    transition: opacity .15s ease;
  }

  .featurePanel__image.is-changing{
    transform: none;
  }
}

@media (max-width: 680px){
  .featurePanel{
    padding: 26px 22px;
  }

  .featurePanel__visual{
    top: 18px;
    right: -100px;

    width: 300px;
    transform: none;
  }

  .featurePanel__image{
    opacity: .28;
  }

  .featurePanel__shade{
    background:
      linear-gradient(
        90deg,
        rgba(14,80,61,.98) 0%,
        rgba(14,80,61,.91) 62%,
        rgba(14,80,61,.58) 100%
      ),
      linear-gradient(
        180deg,
        rgba(14,80,61,.20) 0%,
        rgba(14,80,61,.84) 100%
      );
  }

  .featurePanel__header > div:first-child,
  .featurePanel__text{
    max-width: 100%;
  }
}