.financial-calendar + * {
  margin-top: 2.5ch;
}
.financial-calendar p {
  margin: 0;
}
.financial-calendar .event {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(63, 64, 66, 0.5);
}
.financial-calendar .event:first-child {
  padding-top: 0;
}
.financial-calendar .event:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.financial-calendar .event__title .meta {
  display: block;
  font-size: var(--wp--preset--font-size--font-16);
  color: #5C068C;
  margin-bottom: 0.2ch;
}
.financial-calendar .event__title .title {
  display: block;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-20);
  color: #101820;
}
.financial-calendar .event__actions {
  padding-top: 1ch;
  position: relative;
}
.financial-calendar .event__actions .btn-add-to-calendar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: var(--wp--preset--font-size--font-18);
  color: #101820;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease-in-out;
}
.financial-calendar .event__actions .btn-add-to-calendar:before {
  content: "+";
  display: block;
  width: 24px;
  height: 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #101820;
  background: #C8C5DB;
  transition: all 0.25s ease-in-out;
}
.financial-calendar .event__actions .btn-add-to-calendar:hover {
  color: #5C068C;
}
.financial-calendar .event__actions .btn-add-to-calendar:hover:before {
  color: #fff;
  background: #9063CD;
}
.financial-calendar .calendar-links {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  position: absolute;
  z-index: -1;
  transform: translateY(-5px);
}
.financial-calendar .calendar-links.show {
  display: block;
  z-index: 1000;
}
.financial-calendar .calendar-links li {
  margin: 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
}
.financial-calendar .calendar-links li:last-child {
  border-bottom: none;
}
.financial-calendar .calendar-links a {
  display: block;
  font-size: var(--wp--preset--font-size--font-16) !important;
  text-decoration: none !important;
  padding: 0.8ch 7rem 0.8ch 0;
  color: #101820 !important;
  transition: color 0.25s ease-in-out;
}
.financial-calendar .calendar-links a:hover {
  color: #5C068C !important;
}
@media (min-width: 782px) {
  .financial-calendar .event {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
  }
  .financial-calendar .event__actions {
    padding-top: 0;
  }
}
