@charset "UTF-8";
:export {
  primaryMidnight500: #1A1A1A;
  primaryWhite100: #FAF6EF;
  primaryGray500: #003366;
  primaryAmber400: #E6C47C;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
/**
 * Use opacity + slight upward motion on load (opacity: 0 → 1; translateY(10px → 0))
 */
/**
 * Creates a short underline animation (width: 0 → 40px)
 * Adds a subtle gold motion cue under headings
 */
/*
 * Adds a subtle underline animation on hover for editorial links
 * Inspired by underline motif from “Technology” heading
 */
.cmp-customer-trust {
  padding: 60px 0;
  background: #FFFCF8;
  color: #1A1A1A;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

.cmp-customer-trust__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.cmp-customer-trust__headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cmp-customer-trust__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  color: #141414;
}

.cmp-customer-trust__subtitle {
  font-size: 1.125rem;
  margin: 0;
  color: #666666;
}

.cmp-customer-trust__actions {
  display: flex;
  gap: 16px;
  align-self: center;
}

.cmp-customer-trust__button {
  padding: 16px 30px;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease;
}

.cmp-customer-trust__button--primary {
  background: #F5A623;
  color: #FAF6EF;
  text-decoration: none;
}

.cmp-customer-trust__button--primary:hover {
  background: #8B6B00;
}

.cmp-customer-trust__button--secondary {
  background: #003366;
  color: #FAF6EF;
  text-decoration: none;
}

.cmp-customer-trust__button--secondary:hover {
  background: #002244;
}

.cmp-customer-trust__panel {
  background: #F0E9DD;
  padding: 24px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cmp-customer-trust__panel-label {
  font-weight: 600;
  white-space: nowrap;
  color: #666666;
}

.cmp-customer-trust__chip {
  padding: 8px 24px;
  font-size: 0.9rem;
  border-radius: 4px;
  background: #FAF6EF;
  border: 1px solid #F3EFE7;
  color: #141414;
  white-space: nowrap;
}
/*# sourceMappingURL=customer-trust.min.css.map */
