/* Source: widgets/11.html — keep CSS identical to the HTML. */
.edge-efe5 {
  --edge-efe5-primary: #094a3c;
  --edge-efe5-secondary: #daa630;
  --edge-efe5-tertiary: #000000;
  --edge-efe5-bg: #094a3c;
  --edge-efe5-card-bg: #ffffff;
  --edge-efe5-text: #1a1a1a;
  --edge-efe5-muted: #5a5a5a;
  --edge-efe5-heading-font: "Plus Jakarta Sans", sans-serif;
  --edge-efe5-body-font: "Poppins", sans-serif;

  width: 100%;
  background:
    radial-gradient(ellipse 65% 50% at 0% 0%, rgba(218, 166, 48, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    var(--edge-efe5-bg);
  color: var(--edge-efe5-text);
  font-family: var(--edge-efe5-body-font);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

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

.edge-efe5__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.edge-efe5__callout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  background: var(--edge-efe5-card-bg);
  border-radius: 15px;
  border: 1px solid rgba(9, 74, 60, 0.1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.edge-efe5.is-visible .edge-efe5__callout {
  opacity: 1;
  transform: translateY(0);
}

.edge-efe5__callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--edge-efe5-secondary) 0%,
    var(--edge-efe5-primary) 100%
  );
}

.edge-efe5__media {
  position: relative;
  margin: 0;
  padding-left: 0.5rem;
}

.edge-efe5__media-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(9, 74, 60, 0.14),
    0 0 0 1px rgba(9, 74, 60, 0.06);
  background: rgba(9, 74, 60, 0.04);
}

.edge-efe5__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

#edge-efe5 .edge-efe5__cover,
.edge-efe5 .edge-efe5__cover {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  vertical-align: middle;
}

.edge-efe5__badge {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--edge-efe5-heading-font);
  font-size: clamp(0.625rem, 1.1vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(9, 74, 60, 0.88);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.edge-efe5__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: clamp(0, 2vw, 0.5rem);
}

.edge-efe5__label {
  display: inline-block;
  font-family: var(--edge-efe5-heading-font);
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--edge-efe5-secondary);
  margin-bottom: 0.75rem;
}

.edge-efe5__headline {
  font-family: var(--edge-efe5-heading-font);
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--edge-efe5-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
}

.edge-efe5__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 1.8vw, 1.125rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.edge-efe5__para {
  font-size: clamp(0.9375rem, 1.55vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--edge-efe5-muted);
  margin: 0;
}

.edge-efe5__para--edge {
  font-weight: 500;
  color: var(--edge-efe5-text);
  padding-left: 1rem;
  border-left: 3px solid var(--edge-efe5-secondary);
}

.edge-efe5__attribution {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--edge-efe5-heading-font);
  font-size: clamp(0.6875rem, 1.1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(9, 74, 60, 0.55);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.edge-efe5__attribution::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: rgba(9, 74, 60, 0.25);
}

#edge-efe5 a.edge-efe5__btn,
.edge-efe5 a.edge-efe5__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.875rem;
  padding: 0.75rem 1.625rem !important;
  font-family: var(--edge-efe5-heading-font) !important;
  font-size: clamp(0.8125rem, 1.3vw, 0.875rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: var(--edge-efe5-primary) !important;
  background-image: none !important;
  border: 2px solid var(--edge-efe5-primary) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    gap 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

#edge-efe5 a.edge-efe5__btn:visited,
.edge-efe5 a.edge-efe5__btn:visited {
  color: #ffffff !important;
}

#edge-efe5 a.edge-efe5__btn:hover,
#edge-efe5 a.edge-efe5__btn:focus,
.edge-efe5 a.edge-efe5__btn:hover,
.edge-efe5 a.edge-efe5__btn:focus {
  color: var(--edge-efe5-primary) !important;
  background-color: #ffffff !important;
  border-color: var(--edge-efe5-primary) !important;
  text-decoration: none !important;
  gap: 0.55rem;
  box-shadow: 0 8px 24px rgba(9, 74, 60, 0.12) !important;
  transform: translateY(-1px);
}

#edge-efe5 a.edge-efe5__btn:focus-visible,
.edge-efe5 a.edge-efe5__btn:focus-visible {
  outline: 2px solid var(--edge-efe5-secondary) !important;
  outline-offset: 3px;
}

#edge-efe5 a.edge-efe5__btn:active,
.edge-efe5 a.edge-efe5__btn:active {
  color: var(--edge-efe5-primary) !important;
  background-color: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.edge-efe5__external-hint {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(90, 90, 90, 0.85);
}

@media (max-width: 860px) {
  .edge-efe5__callout {
    grid-template-columns: 1fr;
    padding: clamp(1.25rem, 4vw, 2rem);
  }

  .edge-efe5__media {
    padding-left: 0;
    max-width: 22rem;
    margin: 0 auto;
    width: 100%;
  }

  .edge-efe5__content {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }

  .edge-efe5__para--edge {
    padding-left: 0;
    border-left: none;
    padding-top: 0.875rem;
    border-top: 3px solid var(--edge-efe5-secondary);
  }

  .edge-efe5__attribution {
    justify-content: center;
  }

  .edge-efe5__attribution::before {
    display: none;
  }

  #edge-efe5 a.edge-efe5__btn,
  .edge-efe5 a.edge-efe5__btn {
    width: 100%;
    max-width: 24rem;
  }
}

@media (max-width: 480px) {
  .edge-efe5 {
    padding: clamp(2.25rem, 5vw, 3rem) clamp(1rem, 4vw, 1.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .edge-efe5__callout {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #edge-efe5 a.edge-efe5__btn:hover,
  .edge-efe5 a.edge-efe5__btn:hover {
    transform: none;
  }
}
