/* ===== Equipment block ===== */
.eq{
  padding: 24px 0 40px;
  background: #fff;
  color: #111;
}

.eq__container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== Breadcrumbs ===== */
.eq-bc{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 22px;
}
.eq-bc__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.eq-bc__link:hover{ color:#111; }
.eq-bc__home svg{ fill: currentColor; }
.eq-bc__sep{ opacity:.6; }
.eq-bc__current{
  color: #ff3a2f; /* красный как на скрине */
  font-weight: 500;
}

/* ===== Grid ===== */
.eq-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* ПК/ноут */
  column-gap: 56px;
  row-gap: 72px;
  align-items: start;
  padding: 60px 0 10px; /* как большое пустое сверху на скрине */
}

/* ===== Item ===== */
.eq-item{
  display: flex;
  align-items: center;
  gap: 18px;
}

.eq-item__icon{
  width: 92px;
  height: 92px;
  object-fit: contain;
  flex: 0 0 auto;
}

.eq-item__meta{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eq-item__num{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  color: #111;
  letter-spacing: -0.02em;
}

/* черточка после цифры */
.eq-item__dash{
  display: inline-block;
  width: 54px;
  height: 5px;
  background: #111;
  border-radius: 999px;
  transform: translateY(6px);
}

.eq-item__name{
  font-size: 22px;
  color: #9ca3af;
  line-height: 1.2;
}

/* ===== Tablet ===== */
@media (max-width: 1024px){
  .eq-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 54px;
    padding-top: 40px;
  }
}

/* ===== Mobile (как на твоём телефоне: 2 колонки) ===== */
@media (max-width: 560px){
  .eq__container{ width: min(420px, calc(100% - 32px)); }

  .eq-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 38px;
    padding-top: 18px;
  }

  .eq-item{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .eq-item__icon{
    width: 88px;
    height: 88px;
  }

  .eq-item__num{
    font-size: 48px;
    justify-content: center;
  }

  .eq-item__dash{
    width: 44px;
    height: 4px;
    transform: translateY(5px);
  }

  .eq-item__name{
    font-size: 16px;
  }
}
/* ===== Button "Сведения о квалификации" ===== */
.qual-btn{
  padding: 28px 0;
}

.qual-btn__container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: center; /* по центру как на скрине */
}

.qual-btn__link{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;
  border-radius: 10px;

  background: #ff3a2f;
  color: #fff;
  text-decoration: none;

  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.qual-btn__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.qual-btn__link:active{
  transform: translateY(0);
  opacity: .95;
}

.qual-btn__icon svg{
  fill: currentColor;
}

/* мобилка */
@media (max-width: 560px){
  .qual-btn__container{ width: min(420px, calc(100% - 32px)); }
  .qual-btn__link{
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 13px;
  }
}
