/* Special Events Styles (Style 1 & Style 2) */

/* Shared */
.semp-wrap {
  display: grid;
  gap: 16px;
}
.semp-title {
  color:#333333;
  font-family: "Oswald", Sans-serif;
  font-size: 22px;
  margin: 0 0 6px;
  line-height: 1.2;
}
.semp-time {
  color:#333333;
  font-family: "Oswald", Sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.semp-cats {
  font-family: "Oswald", Sans-serif;
  margin: 0 0 10px;
  opacity: 0.8;
}
.semp-type {
  color:#333333;
  font-family: "Oswald", Sans-serif;
  font-size: 16px;		
  font-weight: 400;
}
.semp-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.semp-btn:hover {
  filter: brightness(0.9);
}
.semp-btn.outline {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}
.dashicons {
  transform: translateY(1px);
}

/* Style 1 (Card) */
.semp-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.semp-datebox {
  display: inline-flex;
  flex-direction: row;
  gap: 5px;
  place-items: center;
  padding: 6px 12px;
  align-content: center;
  border-radius: 10px 10px 0 0;
  align-items: center;
}
.semp-datebox.color-accent {
  background: #ffb400;
  color: #333;
}
.semp-datebox .semp-month {
  font-family: "Oswald", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.semp-datebox .semp-day {
  font-family: "Oswald", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.semp-datebox .semp-weekday {
  font-family: "Oswald", Sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.semp-content .title-with-type{
	display:inline-flex;
	flex-direction: row;
	align-content: flex-end;
	gap:10px;
}
.semp-content {
  padding: 12px;
}
.semp-desc {
  font-family: "Verdana", Sans-serif;
  font-size: 15px;
  font-weight: 400;
}

/* Style 2 (List) */
.style-2 .semp-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 0px;
}

.semp-datebox.dark {
    background: #111;
    color: #fff;
    display: flex;
    gap: 10px;
    place-items: center;
    padding: 10px 26px;
    border-radius: 0px;
    align-content: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.semp-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 0px;
}
.semp-datebox.dark .semp-day {
  font-family: "Oswald", Sans-serif;
  font-size: 32px;
  font-weight: 800;
}
.semp-datebox.dark .semp-month {
  font-family: "Oswald", Sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  display: block;
}
.semp-details {
  font-family: "Oswald", Sans-serif;
  padding: 12px; /*display: grid; align-content: center;*/
  gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .semp-card,
  .semp-list {
    display: flex;
	flex-direction: column !important;  
  }
	.semp-datebox.dark{
		flex-direction: row !important;
	}
	.semp-datebox.dark .semp-day{
		font-size: 20px !important;
    font-weight: 800;

	}
  .semp-datebox,
  .semp-datebox.dark {
    width: 100%;
  }
  .semp-btn {
    width: 100%;
    text-align: center;
  }
}
