/* =========================================================
   Highball Cards
========================================================= */

.highball-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.highball-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-top: 2px;
  min-width: 0;
}

.highball-row__weekday {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.highball-row__month {
  color: #b98b61;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.highball-row__day {
  color: #fff;
  font-size: 25px;
  font-weight: 300;
}

.highball-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  grid-template-areas:
    "time time"
    "copy image"
    "actions image";
  gap: 14px 18px;
  align-items: start;
  min-width: 0;
}

.highball-card__time {
  grid-area: time;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(to right, rgba(74, 74, 74, 0.82), rgba(48, 48, 48, 0.72));
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.highball-card__copy {
  grid-area: copy;
  min-width: 0;
}

.highball-card__title {
  margin: 0;
  font-size: clamp(2rem, 1.8rem + 0.5vw, 2.4rem);
  line-height: 1.04;
  font-weight: 300;
}

.highball-card__title a {
  color: #fff;
  text-decoration: none;
}

.highball-card__title a:hover {
  text-decoration: underline;
}

.highball-card__meta {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.25;
}

.highball-card__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.highball-card__actions .card__btn {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(90, 90, 90, 0.38);
  color: rgba(255, 255, 255, 0.84);
}

.highball-card__actions .card__btn--primary,
.highball-card__actions .card__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(90, 90, 90, 0.38);
  color: rgba(255, 255, 255, 0.84);
}

.highball-card__actions .card__btn:hover {
  background: rgba(110, 110, 110, 0.48);
  color: #fff;
}

.highball-card__image {
  grid-area: image;
  width: 120px;
  height: 120px;
  justify-self: end;
  align-self: start;
}

.highball-card__image .card__img,
.highball-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 760px) {
  .highball-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .highball-row__date {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 0;
  }

  .highball-row__date {
    flex-direction: row;
    gap: 6px;
  }

  .highball-row__weekday,
  .highball-row__month,
  .highball-row__day {
    font-size: 15px !important;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
  }

  .highball-row__day {
    font-size: 1.4rem;
    font-weight: 500;
  }

  .highball-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "time"
      "image"
      "copy"
      "actions";
    gap: 12px;
  }

  .highball-card__image {
    width: 100%;
    height: auto;
    justify-self: stretch;
  }

  .highball-card__image .card__img,
  .highball-card__image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .highball-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .highball-card__actions .card__btn {
    width: 100%;
  }
}