/* Variables  */
/* Aliases  */
.sr-only {
  position: absolute;
  /* Outside the DOM flow */
  height: 1px;
  width: 1px;
  /* Nearly collapsed */
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  left: -9999px;
  text-indent: -5000px;
  clip: rect(1px, 1px, 1px, 1px);
  /* All other browsers */
}

/* Variables  */
/* Aliases  */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

:host(:focus) {
  outline: none !important;
  border: none !important;
}

:host {
  flex: 1;
  width: 100%;
  max-width: 520px;
  min-width: 280px;
}
@media (max-width: 768px) {
  :host {
    min-width: 270px;
    max-width: 375px;
  }
}
:host .calendar-item img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 256px;
}
@media (max-width: 768px) {
  :host .calendar-item img {
    height: 375px;
  }
}
:host .calendar-item a {
  text-decoration: none;
  display: block;
  padding: 2px;
}
:host .calendar-item a:focus-visible {
  border-radius: 4px;
  outline-offset: 2px;
  outline: 1.5px solid var(--bi-primary-50);
  box-shadow: 0 0 0 2px white;
}
:host .calendar-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 270px;
  max-width: 1440px;
  min-height: 270px;
  background-color: white;
}
@media (max-width: 768px) {
  :host .calendar-text-container {
    max-width: 375px;
  }
}
:host .calendar-text-container .schedule {
  color: #414651;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  padding: 16px 24px;
  background-color: #f2f9fc;
}
:host .calendar-text-container .header-and-location {
  padding: 0 24px;
  flex-direction: column;
  display: flex;
  gap: 24px;
}
:host .calendar-text-container .header-and-location .link {
  text-decoration: none;
}
:host .calendar-text-container .header-and-location .link:focus-visible {
  outline: none;
  border: none;
}
:host .calendar-text-container .header-and-location .link:focus-visible {
  border-radius: 4px;
  outline-offset: 2px;
  outline: 1.5px solid var(--bi-primary-50);
  box-shadow: 0 0 0 2px white;
}
:host .calendar-text-container .header-and-location .link :hover {
  color: #0b62c5;
}
:host .calendar-text-container .header-and-location .header {
  color: #01417b;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
}
:host .calendar-text-container .location {
  color: #414651;
  font-size: 1.25rem;
  line-height: 1.5;
  filter: opacity(0.8);
}