.offer-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #dbe3f1;
  margin: 24px 0 18px;
}
.offer-tabs button {
  border: 0;
  background: none;
  padding: 0 0 12px;
  color: #71809a;
  font: 600 14px inherit;
  cursor: pointer;
  position: relative;
}
.offer-tabs button.active {
  color: #164bc5;
}
.offer-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #2563d9;
}
.offer-item {
  grid-template-columns: 72px 1fr auto;
  align-items: start;
}
.offer-thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  grid-row: span 2;
}
.offer-open {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.offer-open:focus-visible {
  outline: 3px solid #2563d9;
  outline-offset: 2px;
}
.offer-title {
  font-weight: 700;
}
