/* T07 PreviewSouthern Events */
.t07 {
  color: #184f2c;
  font-family: "Neue Helvetica Condensed";
  display: flex;
  flex-flow: column nowrap;
  max-width: 100%;
  background-color: #f5f7f6;
  font-weight: 700;
}

.t07 .component-header {
  padding-top: 30px;
}

.t07 .events-container {
  width: 90%;
  margin-inline: auto;
}

.t07 .row {
  border-bottom: 1px solid #646464;
}

.t07 .row:last-child {
  border-bottom: initial;
}

.t07 .day {
  height: 80px;
  display: flex;
  gap: 50px;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}

.t07 .date {
  height: 100%;
  min-width: 4rem;
  padding: 0 1rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgb(31, 38, 135, 0.04);
  border: 1px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.t07 .day h5 {
  margin: 0;
  text-transform: uppercase;
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #184f2c;
}

.t07 .day h5.month {
  font-size: 1.2rem;
  color: #ced54a;
}

.t07 .events {
  height: 85%;
}

.t07 .events .location {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin: initial;
}

.t07 .events .location h6:first-child {
  text-transform: uppercase;
}

.t07 a {
  text-decoration: none;
}

.t07 .event-link {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5rem;
}

.t07 .events h6 {
  color: #646464;
  font-family: "Neue Helvetica Condensed";
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0px;
  text-transform: uppercase;
}

.t07 .event-link .event-name {
  font-size: 1.2rem;
  color: #184f2c;
  text-transform: initial;
}

.t07 a {
  line-height: 1.3;
  position: relative;
}

.t07 a:hover .event-name,
.t07 a:hover .event-subtitle {
  color: #ced54c;
}

@media (max-width: 787px) {
  .t07 .day {
    gap: 25px;
  }

  .t07 .date {
    padding-inline: 0.5rem;
  }

  .t07 .day h5 {
    font-size: 1.3rem;
  }
}