.srb-box {
  background: linear-gradient(135deg, #fff8dd 0%, #ffffff 100%);
  border: 1px solid rgba(218, 165, 32, 0.35);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 32px 0;
  padding: 22px;
}

.srb-box__header {
  margin-bottom: 16px;
  text-align: left;
}

.srb-box__title {
  color: #1f2937;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  margin: 0 0 6px;
}

.srb-box__description {
  color: #4b5563;
  margin: 0;
}

.srb-box__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.srb-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.srb-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.srb-card__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
}

.srb-card__image-wrap {
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
  display: block;
  overflow: hidden;
}

.srb-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.srb-card__image--placeholder {
  background: repeating-linear-gradient(45deg, #f3f4f6, #f3f4f6 10px, #e5e7eb 10px, #e5e7eb 20px);
}

.srb-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.srb-card__title {
  color: #111827;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.srb-card__price {
  color: #b45309;
  display: block;
  font-weight: 700;
}

.srb-card__excerpt {
  color: #4b5563;
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.srb-card__cta {
  align-items: center;
  background: #111827;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  margin-top: auto;
  padding: 8px 12px;
  text-align: center;
}

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

@media (max-width: 420px) {
  .srb-box {
    border-radius: 14px;
    padding: 14px;
  }

  .srb-box__grid {
    gap: 10px;
  }

  .srb-card__body {
    padding: 10px;
  }
}
