/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2026 | 08:06:04 */
.lev-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.lev-step{
  position: relative;
  text-align: center;
}

/* connecting line between circles */
.lev-step:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 32px;                 /* vertical center of the 64px circle */
  left: 62%;
  width: 76%;
  height: 1px;
  background: #E2DBC9;       /* hairline */
}

.lev-step__num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border: 1px solid #B89456; /* gold ring */
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .05em;
  color: #A07C3B;            /* gold number */
  background: transparent;
  position: relative;
  z-index: 2;                /* sits above the connecting line */
}

.lev-step__title{
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2B2722;            /* ink */
}

.lev-step__text{
  margin: 0;
  font-family: "EB Garamond", serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: #6E665A;            /* muted */
}

/* Tablet — 2 per row */
@media (max-width: 900px){
  .lev-steps{ grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .lev-step:not(:last-child)::after{ display: none; }
}

/* Mobile — stacked */
@media (max-width: 540px){
  .lev-steps{ grid-template-columns: 1fr; gap: 32px; }
}