.bb-event-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  gap: 2%;
  flex-wrap: wrap; /* allows stacking */
}

/* DATE BLOCK */
.bb-event-date {
  background: #e0eaf3;
  border-radius: 16px;
  width: 25%;
  min-width: 140px;
  text-align: center;
  padding: 20px;
}

.bb-event-day {
  font-size: 89px; /* responsive font */
  font-family: "Tiro Bangla", serif;
  font-weight: 600;
  color: #5b6b73;
  line-height: 1.2em;
  margin-bottom: 15px;
  min-height: 100px;
  position: relative;
}

.bb-event-day::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 2px solid #5b6b73;
  border-radius: 50%;
  transform: translateX(-50%);
}

.bb-event-month {
  margin-top: 10px;
  font-family: "Tiro Bangla", serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: #5b6b73;
}

/* CONTENT BLOCK */
.bb-event-content {
  width: 75%;
  flex: 1;
}

.bb-event-title {
  color: #77797b;
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}

.bb-event-meta {
  font-size: 24px;
  color: #77797b;
  text-transform: uppercase;
  margin-bottom: 2% !important;
}

.bb-event-desc {
  font-size: 24px;
  margin-bottom: 2%;
  color: #77797b;
}

.bb-event-link {
  float: right;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline !important;
  color: #626978;
}

.bb-event-link:hover {
  color: #4d646f !important;
}

/* Default (mobile first) */
.bb-event-link {
  display: inline-block;
  margin-top: auto;
  text-align: center;
}

/* Desktop / Tablet (>767px) */
@media (min-width: 768px) {
  .bb-event-link {
    align-self: flex-end;   /* pushes it to the right inside flex */
    text-align: right;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .bb-event-date {
    width: 25%;
  }
  .bb-event-content {
    width: 70%;
  }

  .bb-event-title,
  .bb-event-meta,
  .bb-event-desc {
    font-size: 2.2vw;
  }

  .bb-event-link {
    font-size: 2vw;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .bb-event-card {
    flex-direction: column;
    text-align: center;
  }

  .bb-event-date,
  .bb-event-content {
    width: 100%;
  }

  .bb-event-date {
    margin-bottom: 15px;
  }

  .bb-event-day {
    font-size: 89px;
  }

  .bb-event-month {
    font-size: 24px;
  }

  .bb-event-title,
  .bb-event-meta,
  .bb-event-desc {
    font-size: 16px;
  }

  .bb-event-link {
    float: none;
    display: inline-block;
    font-size: 14px;
  }
}

.bb-event-card {
  display: flex;
  align-items: stretch;
}

.bb-event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-event-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps link at bottom */
}