.case-list-page {
  background:
    radial-gradient(circle at 16% 7%, rgba(247, 210, 116, 0.42), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(139, 100, 17, 0.13), transparent 34%),
    linear-gradient(180deg, #fff8e8 0%, #f7efd8 42%, #eee0bd 100%);
}

.case-list-hero {
  padding: 118px 0 74px;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: end;
  margin-top: 28px;
}

.case-hero-copy h1 {
  max-width: 900px;
  margin-top: 20px;
  color: #241a07;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 950;
}

.case-hero-copy p {
  max-width: 820px;
  margin-top: 20px;
  color: #5b4717;
  font-size: 18px;
  line-height: 1.9;
}

.case-hero-panel,
.case-card {
  border: 1px solid rgba(139, 100, 17, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 48px rgba(139, 100, 17, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.case-hero-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
}

.case-hero-panel div {
  padding: 14px;
  border: 1px solid rgba(139, 100, 17, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.44);
}

.case-hero-panel strong {
  display: block;
  color: #241a07;
  font-size: 16px;
}

.case-hero-panel span {
  display: block;
  margin-top: 5px;
  color: #6b5725;
  font-size: 13px;
  line-height: 1.6;
}

.case-section {
  padding: 76px 0;
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.case-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: #5b4717;
  border: 1px solid rgba(139, 100, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 900;
}

.case-filter a.is-active,
.case-filter a:hover {
  color: #241a07;
  background: linear-gradient(90deg, #f7d274, #f5dfb5);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.case-list-head {
  margin-bottom: 22px;
}

.case-list-head h2 {
  color: #241a07;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 950;
}

.case-list-head p {
  max-width: 780px;
  margin-top: 10px;
  color: #6b5725;
  font-size: 15px;
  line-height: 1.75;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  overflow: hidden;
  border-radius: 16px;
}

.case-thumb {
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(139, 100, 17, 0.18), rgba(247, 210, 116, 0.36)),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    var(--case-image, rgba(255, 255, 255, 0.48));
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(139, 100, 17, 0.12);
}

.case-thumb span {
  color: #8b6411;
  font-size: 30px;
  font-weight: 950;
}

.case-card-body {
  padding: 22px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #8b6411;
  font-size: 13px;
  font-weight: 900;
}

.case-card h3 {
  margin-top: 12px;
  color: #241a07;
  font-size: 24px;
  line-height: 1.32;
  font-weight: 950;
}

.case-card p {
  margin-top: 10px;
  color: #5b4717;
  font-size: 14px;
  line-height: 1.76;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #6b4708;
  border: 1px solid rgba(139, 100, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 900;
}

.case-more {
  display: inline-flex;
  margin-top: 18px;
  color: #8b6411;
  font-size: 14px;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .case-hero-grid,
  .case-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .case-list-hero {
    padding-top: 106px;
  }

  .case-hero-copy h1 {
    font-size: 34px;
  }

  .case-hero-copy p {
    font-size: 16px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-section {
    padding: 58px 0;
  }
}
