body {
  font-family: sans-serif;
  font-size: 14pt;
  line-height: 1.5;
  max-width: 960px;
  margin: 0 auto;
  color: #272727;
  padding: 1rem;
  background-color: #fce6e6;
}

a {
  color: #972727;
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: normal;
}
h1 .count, h1 .subtitle, h2 .count, h2 .subtitle, h3 .count, h3 .subtitle {
  font-size: 0.7em;
  opacity: 0.6;
}

h1 {
  margin-bottom: 1rem;
}

h2,
h3 {
  margin-bottom: 0;
}

.content {
  background-color: white;
  padding: 20px 40px;
  border-radius: 2rem;
  margin: 0.5rem 0;
  margin-bottom: 30px;
}

header {
  border-radius: 2rem;
  height: 280px;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-image: url("/assets/images/header.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .site-nav {
  position: absolute;
  bottom: 1rem;
}
header .logo img {
  width: 500px;
}
@media (max-width: 600px) {
  header {
    height: auto;
    min-height: 180px;
    padding: 1rem;
  }
  header .site-nav {
    width: 100%;
    position: unset;
    bottom: unset;
    margin-top: 1rem;
  }
  header .logo {
    padding: 20px;
  }
  header .logo img {
    width: 100%;
  }
}

.btn {
  background: white;
  color: #272727;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.85em;
  display: inline-block;
}
.btn:hover {
  opacity: 0.7;
}
@media (prefers-color-scheme: dark) {
  .btn {
    background: black;
    color: rgb(197, 209, 222);
  }
}

.content .btn {
  background: rgba(241, 241, 241, 0.8);
}
@media (prefers-color-scheme: dark) {
  .content .btn {
    background: rgba(98, 80, 80, 0.2);
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.site-nav a {
  background: #fce6e6;
  color: #272727;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: bold;
}
@media (max-width: 600px) {
  .site-nav a {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
}
.site-nav a:hover {
  opacity: 0.7;
}
.site-nav a.active {
  background: #272727;
  color: #fce6e6;
}
@media (prefers-color-scheme: dark) {
  .site-nav a.active {
    background: rgb(197, 209, 222);
    color: #1b0a07;
  }
}
@media (prefers-color-scheme: dark) {
  .site-nav a {
    color: rgb(197, 209, 222);
  }
}

.entity-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.entity-list .count {
  font-size: 0.8em;
  opacity: 0.6;
}

.page-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.page-nav .btn.disabled {
  visibility: hidden;
}
.page-nav .group {
  margin-left: auto;
  display: flex;
  gap: 0.2rem;
}

.event-summary .event-title {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.2em;
}
.event-summary .event-title a {
  color: black;
}
.event-summary .event-title .event-time {
  font-size: 0.7em;
}
.event-summary .event-title .event-time.past, .event-summary .event-title .event-location {
  font-size: 0.7em;
  opacity: 0.6;
}
.event-summary .event-actions {
  margin-top: 0.8rem;
}
.event-summary .event-talks {
  margin-top: 10px;
}
.event-summary .event-talks ul {
  padding-left: 20px;
  margin-top: 0px;
}

.recorded-event h2 a {
  color: black;
}

.title-with-action {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.title-with-action .btn {
  font-size: 0.55em;
}

.btn.btn-primary {
  margin-left: auto;
  white-space: nowrap;
  background-color: #972727;
  color: white;
}

.alert {
  background-color: #972727;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9em;
  margin: 1rem 0;
}
.alert a {
  color: white;
  text-decoration: none;
}

ul.meetup-details {
  padding-left: 0;
  list-style: none;
}
ul.meetup-details > li {
  margin-bottom: 10px;
}
ul.meetup-details > li .detail-heading {
  font-weight: bold;
}

.talk-card .talk-title {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.2em;
}
.talk-card ul {
  padding-left: 20px;
  margin: 0;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 1rem 0;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.person-talks li,
.person-organised li {
  margin-bottom: 0.4rem;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1b0a07;
    color: rgb(197, 209, 222);
  }
  a {
    color: #ffa4a4;
  }
  .talk-speakers {
    color: #aaa;
  }
  .content {
    background-color: black;
  }
  .site-nav a {
    background: #1b0a07;
  }
  .recorded-event h2 a {
    color: white;
  }
  .event-summary .event-title a {
    color: white;
  }
}

/*# sourceMappingURL=main.css.map */