@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.edp-explore-more-widget,
.edp-explore-more-widget * {
  box-sizing: border-box;
}

.edp-explore-more-widget {
  --edp-charcoal: #2C2C2C;
  --edp-accent: #C0622F;
  --edp-white: #F5F0E8;
  width: 100%;
  background: var(--edp-charcoal);
  padding: 58px 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.edp-explore-more__container {
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
  margin-inline: auto;
}

.edp-explore-more__eyebrow {
  margin: 0 0 16px;
  color: rgba(245,240,232,.45);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
}

.edp-explore-more__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.edp-explore-more__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,240,232,.2);
  color: rgba(245,240,232,.75);
  background-color: transparent;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-decoration: none !important;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
  white-space: nowrap;
}

.edp-explore-more__pill:hover,
.edp-explore-more__pill:focus {
  border-color: var(--edp-accent);
  color: var(--edp-accent);
  text-decoration: none !important;
  outline: none;
}

@media (max-width: 640px) {
  .edp-explore-more-widget {
    padding: 48px 0;
  }

  .edp-explore-more__container {
    width: min(100% - 32px, 1240px);
  }

  .edp-explore-more__links {
    gap: 10px;
  }

  .edp-explore-more__pill {
    padding: 12px 16px;
    white-space: normal;
  }
}
