@charset "UTF-8";
/**
 * Variables for spacing (like margin and padding) and sizing (like breakpoints
 * and content width)
 */
/**
 * Breakpoints
 */
/**
 * Global Colors
 */
.take-action-page em {
  font-style: italic;
}
.take-action-page {
  padding: 0 1rem;
}
@media (max-width: 800px) {
  .take-action-page h1 {
    font-size: 2rem;
  }
}
.take-action-page .two-col .-tips h2 {
  margin: 0.5rem 0 0.75rem 0;
}
.take-action-page .tips-list {
  padding-left: 0rem;
  line-height: 1.6;
  margin-top: 0;
  list-style: none;
}
.take-action-page .tips-list li {
  margin-bottom: 0.75rem;
}
.take-action-page .page-desc {
  margin-bottom: 0;
}
.take-action-page details {
  margin: 1rem 0;
  border: 2px solid #E9E9E9;
  border-radius: 0.25rem;
  overflow: hidden;
}
.take-action-page summary {
  padding: 0.5rem 0.75rem;
  background-color: #E9E9E9;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  cursor: pointer;
}
.take-action-page summary::-webkit-details-marker {
  display: none;
}
.take-action-page summary::before {
  content: "▶";
  font-size: 0.75em;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.take-action-page details[open] summary::before {
  transform: rotate(90deg);
}
.take-action-page .details-content {
  overflow: hidden;
  transition: height 0.4s ease;
}
.take-action-page .details-content-inner {
  padding: 0.75rem;
}
.take-action-page .details-content-inner p {
  margin: 0;
}
.take-action-page .details-content-inner p + p {
  margin-top: 0.5rem;
}
.take-action-page .page-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #126587;
}

.panel.-warning {
  padding: 0.75rem 1rem;
  background: #fff3cd;
  border: solid 2px #ffc107;
  border-radius: 0.25rem;
  color: #664d03;
}

.postcard-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 1rem;
  margin-bottom: 2rem;
}
.postcard-preview .postcard {
  width: min(55%, 60vh);
  border-radius: 0.375rem;
  box-shadow: 0.375rem 0.625rem 2rem rgba(0, 0, 0, 0.35);
  position: relative;
  height: fit-content;
}
.postcard-preview .postcard.-front {
  transform: rotate(-4deg);
  margin-right: -14rem;
  z-index: 2;
}
.postcard-preview .postcard.-back {
  transform: rotate(1deg) rotate(3deg) translate(-1rem, 5rem);
  z-index: 1;
}
@media (max-width: 800px) {
  .postcard-preview {
    padding: 1rem 0 2.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .postcard-preview .postcard {
    width: 68%;
    max-width: 320px;
  }
  .postcard-preview .postcard.-front {
    margin-right: -12rem;
  }
  .postcard-preview .postcard.-back {
    transform: rotate(1deg) rotate(3deg) translate(-1rem, 3.5rem);
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 30rem;
  grid-template-rows: auto 1fr;
  gap: 0 3rem;
  margin-bottom: 2rem;
}
.two-col .-intro {
  grid-column: 1;
  grid-row: 1;
}
.two-col .-tips {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.two-col .-widget {
  grid-column: 2;
  grid-row: 1/-1;
  align-self: start;
}
@media (max-width: 800px) {
  .two-col {
    display: flex;
    flex-direction: column;
  }
  .two-col .-intro {
    order: 1;
  }
  .two-col .-widget {
    order: 2;
    width: 100%;
  }
  .two-col .-tips {
    order: 3;
    margin-top: 1rem;
  }
}

[v-cloak] {
  display: none;
}

.ward-lookup .search-panel {
  padding: 1.5rem;
  background: #006ef0;
  border-radius: 0.5rem;
  margin: 0 0 1.5rem 0;
}
.ward-lookup .search-panel h2 {
  margin: 0 0 1rem;
  color: #FFF;
}
.ward-lookup .search-panel label {
  color: #FFF;
}
@media (min-width: 801px) {
  .ward-lookup .search-panel {
    margin: 4rem 0 1.5rem 0;
  }
}
.ward-lookup .search-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ward-lookup .search-container label {
  font-size: 0.8125rem;
}
.ward-lookup .search-container label,
.ward-lookup .search-container input {
  font-weight: 500;
}
.ward-lookup .address-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: solid 2px #E9E9E9;
  border-radius: 0.25rem;
}
.ward-lookup .loading {
  padding: 1rem;
  text-align: center;
  color: #767676;
  font-style: italic;
}
.ward-lookup .ward-directory {
  margin: 0;
  border: 2px solid #E9E9E9;
  border-radius: 0.5rem;
  overflow: hidden;
}
.ward-lookup .ward-directory summary {
  padding: 0.75rem 1rem;
  background-color: #E9E9E9;
  font-weight: normal;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
}
.ward-lookup .ward-directory summary::-webkit-details-marker {
  display: none;
}
.ward-lookup .ward-directory summary::before {
  content: "▶";
  font-size: 0.75em;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.ward-lookup .ward-directory[open] summary::before {
  transform: rotate(90deg);
}
.ward-lookup .ward-directory .details-content {
  overflow: hidden;
  transition: height 0.4s ease;
}
.ward-lookup .ward-directory .ward-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0.25rem 0.5rem;
  margin: 0;
  max-height: 38rem;
  overflow: auto;
}
.ward-lookup .ward-directory .ward-list-item {
  border-bottom: 1px solid #E9E9E9;
}
.ward-lookup .ward-directory .ward-list-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.ward-lookup .ward-directory .ward-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  color: #000;
}
.ward-lookup .ward-directory .ward-link:hover, .ward-lookup .ward-directory .ward-link:focus {
  background-color: #f8f9fa;
}
.ward-lookup .ward-directory .ward-list-photo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #41B6E6;
  flex-shrink: 0;
}
.ward-lookup .ward-directory .ward-list-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.ward-lookup .ward-directory .ward-list-number {
  font-size: 0.75rem;
  font-weight: bold;
  color: #0c445a;
}
.ward-lookup .ward-directory .ward-list-name {
  font-size: 0.875rem;
}
.ward-lookup .ward-result {
  margin-top: 1rem;
  padding: 1.5rem;
  background: #FFF;
  border-radius: 0.5rem;
}
.ward-lookup .ward-result h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #0c445a;
}
.ward-lookup .ward-result .result-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .ward-lookup .ward-result .result-content {
    gap: 1rem;
  }
}
.ward-lookup .ward-result .alder-photo {
  width: 7.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: solid 2px #41B6E6;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .ward-lookup .ward-result .alder-photo {
    width: 5rem;
  }
}
.ward-lookup .ward-result .ward-info {
  flex: 1;
}
.ward-lookup .ward-result .ward-info p {
  margin: 0;
}
.ward-lookup .ward-result .ward-info .ward-number {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0c445a;
}
.ward-lookup .ward-result .ward-info .alder-name {
  font-size: 1.25rem;
  color: #000;
  font-weight: bold;
}
.ward-lookup .ward-result .contact-info {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.ward-lookup .ward-result .contact-info p {
  margin: 0.5rem 0;
}
.ward-lookup .ward-result .contact-info .mailing-address-title {
  margin: 0 0 0.75rem;
  font-size: 1.55rem;
  color: #0c445a;
}
.ward-lookup .ward-result .contact-info .mailing-address {
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  border-left: 4px solid #41B6E6;
  background: #f8f9fa;
  border-radius: 0 0.25rem 0.25rem 0;
}
.ward-lookup .ward-result .contact-info .mailing-address address {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.25rem;
  font-style: normal;
  line-height: 1.6;
  color: #000;
}
@media (max-width: 800px) {
  .ward-lookup .ward-result .contact-info .mailing-address address {
    font-size: 1rem;
  }
}
.ward-lookup .ward-result .contact-info .mailing-address.-city-hall .city-hall-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  font-family: inherit;
  color: #767676;
}
.ward-lookup .ward-result .contact-info a {
  color: #126587;
  text-decoration: none;
}
.ward-lookup .ward-result .contact-info a:hover, .ward-lookup .ward-result .contact-info a:focus {
  text-decoration: underline;
}
.ward-lookup .ward-result .actions {
  margin-top: 1.25rem;
}
.ward-lookup .ward-result .actions .grey-link {
  color: #126587;
  font-weight: bold;
  text-decoration: none;
}
.ward-lookup .ward-result .actions .grey-link:hover, .ward-lookup .ward-result .actions .grey-link:focus {
  text-decoration: underline;
}

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