/* ---------------------------------------------------------
   THEME COLORS (Jaguar Land Rover Careers Style)
--------------------------------------------------------- */
:root {
  --black-navy: #f6f4f5;
  --steel: #ffbd6e; /*#1B1D23;*/
  --gold: #262721;
  --white: #ffffff;
  --gray: #333;
  --link: #196957;
}

/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  /*background: var(--black-navy);*/
  color: var(--white);
}

a {
  text-decoration: none;
  color: var(--#196957);
}

h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--gold);
}

/* ---------------------------------------------------------
   NAVBAR (Name.com style + Mega Menu)
--------------------------------------------------------- */
.navbar {
  background: var(--steel);
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 1px;
  display: flex;
}

.logo img {
  width: 29px;
  padding-right: 10px;
  filter: grayscale() brightness(0%);
}

.nav-links {
  display: flex;
  position: relative;
  flex: 1;
  justify-content: center;
  left: -65px;
}

.nav-item {
  position: relative;
  padding: 8px 20px;
  cursor: pointer;
  color: var(--gray);
}

/*
---------------------------------------
hover effect 24
---------------------------------------
*/

.nav-item {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.nav-item span:before {
  width: 5px;
  height: 5px;
  background: transparent;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 2px solid #218c74;
  border-left: 2px solid #218c74;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.nav-item span:after {
  width: 6px;
  height: 6px;
  background: transparent;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 2px solid #218c74;
  border-bottom: 2px solid #218c74;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.nav-item:before {
  width: 6px;
  height: 6px;
  background: transparent;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-right: 2px solid #218c74;
  border-top: 2px solid #218c74;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.nav-item:after {
  width: 6px;
  height: 6px;
  background: transparent;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-left: 2px solid #218c74;
  border-bottom: 2px solid #218c74;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.nav-item:hover {
  color: #218c74;
}

.nav-item:hover:before {
  opacity: 1;
  right: 5px;
  top: 5px;
}

.nav-item:hover:after {
  opacity: 1;
  left: 5px;
  bottom: 5px;
}

.nav-item:hover span:before {
  opacity: 1;
  left: 5px;
  top: 5px;
}

.nav-item:hover span:after {
  opacity: 1;
  right: 5px;
  bottom: 5px;
}

/* ---------------------------------------
   Hover Effect 4 (Mega-menu links only)
--------------------------------------- */

.mega-menu a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  color: #196957;
  transition: color 0.2s ease;
}

.mega-menu a:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #196957; /*rgba(38, 39, 33, 0.25);*/ /* use your black-color with opacity */
  content: "";
  opacity: 0;
  transition: opacity 0.2s, transform 0.1s;
  transform: translateY(5px);
}

.mega-menu a:hover {
  color: #218c74; /* softer hover color */
}

.mega-menu a:hover:after,
.mega-menu a:focus:after {
  opacity: 1;
  transform: translateY(0px);
}

/* ---------- MEGA MENU ---------- */
.mega-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 45px;
  background: var(--steel);
  padding: 25px;
  width: calc(100vw - 50px);
  box-shadow: 0 20px 14px -10px rgba(0, 0, 0, 0.2);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.nav-item:hover .mega-menu {
  display: flex;
  justify-content: center;
}

.mega-menu a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.mega-menu div {
  padding: 0px 40px;
}

/* ---------- MEGA MENU PREVIEW IMAGE ---------- */
.preview-box {
  grid-column: 3;
  background: transparent;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.preview-box img {
  width: 165px;
  border-radius: 6px;
}

/* ---------------------------------------------------------
   MOBILE MENU
--------------------------------------------------------- */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--white);
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* MOBILE MENU WRAPPER */
/*
.mobile-menu {
  background: var(--steel);
  padding: 15px 20px;
  display: none;
  flex-direction: column;
  border-top: 1px solid #2b3038;
}
*/
.mobile-menu {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  display: none; /* will switch to flex when opened */
  flex-direction: column;
  background: var(--steel);
  padding: 15px 20px;
  border-top: 1px solid rgb(43, 48, 56);
  z-index: 9999;
  max-height: 100vh;
  overflow-y: auto;
}


/* MAIN ITEM */
.mobile-item {
  margin-bottom: 10px;
}

.mobile-item > span {
  display: block;
  color: var(--white);
  padding: 12px 0;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

/* ▼ rotates when opened */
.mobile-item > span.active {
  color: var(--gold);
}

.mobile-item > span.active::after {
  content: "▲";
  float: right;
}

.mobile-item > span::after {
  content: "▼";
  float: right;
}

/* DROPDOWN CONTENT */
/* Slide animation container */
.dropdown {
  display: flex; /* keep flex-column behavior */
  flex-direction: column;
  overflow: hidden;
  max-height: 0; /* hidden by default */
  transition: max-height 0.35s ease;
  padding-left: 12px;
  border-left: 2px solid #3b424b;
  margin-bottom: 0; /* will expand based on height */
}

/* When opened */
.dropdown.open {
  max-height: 400px; /* enough to expand fully */
  margin-bottom: 10px;
}

.dropdown a {
  padding: 10px 0;
  color: var(--gray);
  font-size: 15px;
}

.dropdown a:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
  background: var(--steel);
  padding: 50px 30px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

/* FLEX CONTAINER FOR ABOUT + GRID */
.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ABOUT TEXT */
.footer-about {
  width: 30%;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  color: var(--gray);
}

/* FOOTER GRID (RIGHT SIDE) */
.footer-grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}

.footer-col a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--link);
}

.footer-col a:hover {
  color: var(--gold);
}

/* SOCIAL ICONS BOTTOM CENTER */
.footer-social-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 10px;
  color: var(--steel);
  border-top: 1px solid #777;
  padding-top: 20px;
}

.footer-social-bottom svg {
  width: 26px;
  height: 26px;
  transition: 0.25s;
  color: #333;
}

.footer-social-bottom svg:hover {
  color: var(--link);
}

/* Language selector */
.lang-select {
  margin-top: 20px;
  padding: 8px;
  background: #111317;
  color: var(--white);
  border: 1px solid #2b3038;
  border-radius: 4px;
}

/* FOOTER BOTTOM COPYRIGHT */
.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mega-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .footer-about {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-grid {
    width: 100%;
    text-align: center;
  }
}
/* ---------------------------------------------------------
     HOME PAGE
------------------------------------------------------------*/

/* --- Other Tools (Horizontal Scroll) --- */
#app-main-container .other-tools-section {
  background-color: #f4f4f4; /* Slightly darker than white to separate sections */
  padding: 50px 0 60px;
  border-top: 1px solid #e5e5e5;
}

#app-main-container .section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: var(--text-dark);
}

#app-main-container .horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 20px 20px 20px; /* Bottom padding for shadow space */
  scroll-behavior: smooth;

  /* Hide Scrollbar for clean look but keep functionality */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
#app-main-container .horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

#app-main-container .promo-card {
  flex: 0 0 auto; /* Don't shrink */
  width: 260px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none; /* Prevents text highlighting while dragging */
}

#app-main-container .promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 189, 110, 0.25); /* Orange glow */
  border-color: var(--primary-orange);
}

#app-main-container .promo-icon {
  font-size: 24px;
  background: #fff4e6;
  width: 75px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

#app-main-container .promo-info h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

#app-main-container .promo-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

#app-main-container .external-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 12px;
}
/* --- SEO Content Section --- */
#app-main-container .seo-content-section {
  background-color: white;
  padding: 0px 20px 10px;  
  color: var(--text-dark);
}

#app-main-container .content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

#app-main-container .seo-block {
  text-align: center;
  margin-bottom: 60px;
}

#app-main-container .seo-block h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

#app-main-container .seo-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Two column grid for info */
#app-main-container .seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

#app-main-container .seo-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

#app-main-container .seo-card p {
  line-height: 1.6;
  color: var(--text-light);
}

/* FAQ Layout */
#app-main-container .faq-section {
  background: var(--bg-light);
  padding: 50px;
  border-radius: 24px;
  margin-bottom: 50px;
}

#app-main-container .faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

#app-main-container .faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

#app-main-container .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#app-main-container .faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

#app-main-container .faq-item p {
  margin: 0;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  #app-main-container .seo-grid {
    grid-template-columns: 1fr;
  }

  #app-main-container .faq-section {
    padding: 30px 20px;
  }
}

/* Scoped Variables for this section */
#app-main-container {
  --primary-orange: #ffbd6e;
  --primary-dark: #f39c12;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 15px 30px rgba(255, 189, 110, 0.2);

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

/* Box sizing reset just for this container */
#app-main-container * {
  box-sizing: border-box;
}

/* --- Hero Section --- */
#app-main-container .hero-section {
  /*background: linear-gradient(180deg, rgba(255, 189, 110, 0.15) 0%, rgba(255,255,255,0) 100%);*/
  padding: 1px 20px 60px;
  text-align: center;
  display: flex;
  justify-content: center;

  background:
    /* Grid – horizontal */ repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.04) 0,
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px,
      transparent 40px
    ),
    /* Grid – vertical */
      repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.04) 0,
        rgba(0, 0, 0, 0.04) 1px,
        transparent 1px,
        transparent 40px
      ),
    /* Base color wash */
      linear-gradient(
        180deg,
        rgba(255, 189, 110, 0.15) 0%,
        rgba(255, 255, 255, 0) 100%
      );

  /* Fade grid + gradient at bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, 0) 100%
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, 0) 100%
  );
}

#app-main-container .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

#app-main-container .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Search Bar */
#app-main-container .search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

#app-main-container .search-container input {
  width: 100%;
  padding: 18px 24px;
  padding-right: 60px;
  border-radius: 50px;
  border: 2px solid #eee;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  outline: none;
}

#app-main-container .search-container input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 15px rgba(255, 189, 110, 0.3);
}

#app-main-container .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-orange);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#app-main-container .search-btn:hover {
  background: var(--primary-dark);
}

/* --- Filters --- */
#app-main-container .filter-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

#app-main-container .filter-btn {
  background: transparent;
  border: 1px solid #eee;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.2s;
}

#app-main-container .filter-btn:hover,
#app-main-container .filter-btn.active {
  background-color: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

/* --- Tools Grid --- */
#app-main-container .tools-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

#app-main-container .tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

#app-main-container .tool-card {
  background: white;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

#app-main-container .tool-card.pdftool {
  display: none;
}

#app-main-container .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-orange);
}

#app-main-container .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  /* This matches your requested 3D icon style */
  border-radius: 18px;
}

#app-main-container .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Soft drop shadow for the icon itself */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

#app-main-container .tool-card h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

#app-main-container .tool-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Badge for "New" or "Hot" tools */
#app-main-container .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6b6b;
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

/* --- Features Section --- */
#app-main-container .features-section {
  background-color: var(--bg-light);
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 30px;
  text-align: center;
}

#app-main-container .feat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#app-main-container .feature-box h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

#app-main-container .feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  #app-main-container .hero-title {
    font-size: 2rem;
  }
  #app-main-container .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

/* Tool adjustments ======================================================================================================= */
#app-main-container .tool-top-block {
  text-align: center;
  margin-bottom: 30px;
}

#app-main-container .tool-top-block h1 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-top: 0px;
}

#app-main-container .tool-top-block p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

#app-main-container .faq-section img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #app-main-container .tool-top-block h1 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  #app-main-container .tool-top-block p {
    line-height: 1;
    text-align: justify;
    font-size: 12px;
  }
  #app-main-container .tool-top-block {
    margin-bottom: 0px;
  }
}
/* Discover More - Tag Cloud Style ======================================================================================= */
#app-main-container .discover-more-section {
  background-color: var(--bg-light);
  padding: 50px 20px;
  border-radius: 20px;
  margin: 60px auto;
}

#app-main-container .discover-more-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 30px;
}

#app-main-container .discover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

#app-main-container .discover-tags a {
  background-color: white;
  border: 1px solid #eee;
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  white-space: nowrap;
}

#app-main-container .discover-tags a:hover {
  background-color: var(--steel);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #app-main-container .discover-tags {
    justify-content: center;
  }
}

/* Steps Section =========================================================================================================  */
#app-main-container .steps-section {
  background-color: var(--white);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
#app-main-container .steps-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 40px;
}
#app-main-container .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
#app-main-container .step-box {
  background: var(--bg-light);
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
#app-main-container .step-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}
#app-main-container .step-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--steel);
  margin-bottom: 15px;
}
#app-main-container .step-box h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
#app-main-container .step-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  #app-main-container .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumb ================================================================================================================ */

/* IMAGE4RESIZE — Triangle Breadcrumb (contained) */
  .i4r-breadcrumb { 
    font-family: system-ui, Arial, sans-serif;     
    max-width: 1100px;
    display: flex;
    margin: auto; 
  }

  .i4r-crumb.triangle {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }

  .i4r-crumb.triangle li {
    position: relative;
    margin: 2px 4px 4px 0;
    padding: 0;
  }

  .i4r-crumb.triangle li:last-of-type {
    margin-right: 0;
  }

  .i4r-crumb.triangle li > * {
    position: relative;
    display: block;
    padding: 0.2em .5em 0.2em 1.2em;
    color: #1f2b34;
    background: #eef1f3;
    border-color: #eef1f3;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
  }

  .i4r-crumb.triangle li.current > * {
    color: #1f2b34;
    background: #feead1;
    border-color: #feead1;
  }

  .i4r-crumb.triangle li:first-of-type > * {
    padding-left: 1em;
    border-radius: .35em 0 0 .35em;
  }

  .i4r-crumb.triangle li:last-of-type > * {
    padding-right: 1em;
    border-radius: 0 .35em .35em 0;
  }

  .i4r-crumb.triangle a:hover {
    background: var(--steel);
    border-color: var(--steel);
  }

  .i4r-crumb.triangle li::after,
  .i4r-crumb.triangle li > *::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 0;
    width: 0;
    border: 10px solid transparent;
    border-right-width: 0;
    border-left-width: 10px;
  }

  .i4r-crumb.triangle li::after {
    z-index: 1;
    transform: translateX(4px);
    border-left-color: #ffffff;
  }

  .i4r-crumb.triangle li > *::after {
    z-index: 2;
    border-left-color: inherit;
  }

  .i4r-crumb.triangle li:last-of-type::after,
  .i4r-crumb.triangle li:last-of-type > *::after {
    display: none;
  }

  @-moz-document url-prefix() {
    .i4r-crumb.triangle li::after,
    .i4r-crumb.triangle li > *::after {
      border-left-style: dashed;
    }
  }
