/* ===== Opening hours (Figma 515:2218) ===== */
.oda-hours {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 37px 41px 39px;
  background: #fff;
  border: 1px solid #e6e4e0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 15, 16, 0.04), 0 1px 1px rgba(15, 15, 16, 0.03);
  font-family: "Inter", sans-serif;
}
.oda-hours__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c00;
}
.oda-hours__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #0f0f10;
  font-size: 21px;
  font-weight: 700;
  line-height: 31.5px;
  letter-spacing: -0.21px;
}
.oda-hours__title svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: #c00;
}
.oda-hours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.oda-hours__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: #f4f4f3;
  border-radius: 12px;
}
.oda-hours__day {
  color: #c00;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.oda-hours__times {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.oda-hours__times span {
  color: #0f0f10;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 21.75px;
  letter-spacing: -0.08px;
}
@media (max-width: 767px) {
  .oda-hours {
    padding: 28px 24px 30px;
  }
  .oda-hours__grid {
    grid-template-columns: 1fr;
  }
}
