.eq-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #1c2331 url("../images/slider/slider1.jpg") center/cover no-repeat;
  color: #fff;
  padding: 36px 0 32px;
}

.eq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 28, 40, 0.82), rgba(22, 52, 58, 0.72));
  z-index: 0;
}

.eq-hero .container {
  position: relative;
  z-index: 1;
}

.eq-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.eq-hero .eq-lead {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.eq-crumbs {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.eq-crumbs a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.eq-crumbs a:hover { color: #20b1aa; }

.eq-page {
  background: #f4f6f8;
  padding: 40px 0 56px;
}

.eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.eq-card {
  background: #fff;
  border: 1px solid #e6ebef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(20, 24, 31, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.eq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(20, 24, 31, 0.1);
}

.eq-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #dce7e8;
  overflow: hidden;
}

.eq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.eq-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1c2331, #16343a);
  color: #20b1aa;
  font-size: 42px;
  font-weight: 700;
}

.eq-meta {
  padding: 14px 16px 16px;
}

.eq-meta h2 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #1c2331;
  line-height: 1.3;
}

.eq-meta p {
  margin: 0;
  font-size: 13px;
  color: #5a6570;
  line-height: 1.4;
}

.eq-empty {
  background: #fff;
  border: 1px dashed #cfd8dc;
  border-radius: 14px;
  padding: 36px 18px;
  text-align: center;
  color: #66717a;
}

@media (max-width: 576px) {
  .eq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .eq-meta {
    padding: 10px 12px 12px;
  }

  .eq-meta h2 { font-size: 14px; }
}
