.brs-recovery-gallery {
  box-sizing: border-box;
  padding: clamp(52px, 7vw, 92px) 18px;
  border-top: 1px solid #dbe6ef;
  border-bottom: 1px solid #dbe6ef;
  background:
    radial-gradient(circle at 8% 10%, rgba(35, 113, 204, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #eef5fa 100%);
  color: #102334;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brs-recovery-gallery *,
.brs-recovery-gallery *::before,
.brs-recovery-gallery *::after {
  box-sizing: border-box;
}

.brs-recovery-gallery-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brs-recovery-gallery-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.brs-recovery-gallery-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #1763a6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.brs-recovery-gallery-heading > span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffb000;
  box-shadow: 0 0 0 5px rgba(255, 176, 0, 0.15);
  content: "";
}

.brs-recovery-gallery-heading h2 {
  margin: 0;
  color: #071d32;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.brs-recovery-gallery-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #52677a;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
}

.brs-recovery-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.brs-recovery-gallery-card {
  grid-column: span 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 44, 74, 0.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(12, 45, 73, 0.10);
}

.brs-recovery-gallery-card:nth-child(n + 4) {
  grid-column: span 3;
}

.brs-recovery-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dce6ed;
}

.brs-recovery-gallery-card figcaption {
  padding: 20px 20px 22px;
}

.brs-recovery-gallery-card h3 {
  margin: 0;
  color: #0a2943;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.brs-recovery-gallery-card p {
  margin: 9px 0 0;
  color: #5a6d7c;
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .brs-recovery-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brs-recovery-gallery-card,
  .brs-recovery-gallery-card:nth-child(n + 4) {
    grid-column: span 1;
  }

  .brs-recovery-gallery-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brs-recovery-gallery {
    padding: 46px 12px;
  }

  .brs-recovery-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brs-recovery-gallery-card,
  .brs-recovery-gallery-card:nth-child(n + 4),
  .brs-recovery-gallery-card:last-child {
    grid-column: 1;
  }

  .brs-recovery-gallery-card {
    border-radius: 18px;
  }

  .brs-recovery-gallery-card figcaption {
    padding: 17px 17px 19px;
  }
}
