html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #333333;
  text-decoration: underline;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: 0.875rem;
}

blockquote {
  border-left: 4px solid #aaaaaa;
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #c7c7c7;
}
blockquote p {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
ul li, ol li {
  margin-bottom: 1rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

code {
  background-color: #efefef;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9em;
}

pre {
  background-color: #efefef;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
pre code {
  background: none;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background-color: #aaaaaa;
  margin: 50px auto;
  width: 80%;
}
@media (max-width: 768px) {
  hr {
    width: 100%;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-muted {
  color: #c7c7c7;
}

.text-small {
  font-size: 0.875rem;
}

.text-emphasis {
  font-size: 1.4em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container,
.header-container,
.footer-container,
.page-container,
.list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .container,
  .header-container,
  .footer-container,
  .page-container,
  .list-container {
    padding: 1rem;
  }
}

.page-container {
  padding: 0 2rem 2rem;
}

.header {
  border-bottom: 1px solid #aaaaaa;
  padding: 0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-link {
  text-decoration: none;
  color: #333333;
  font-size: 3rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 400;
  line-height: 1.2em;
}
.logo-link:hover {
  opacity: 0.7;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #ffffff;
    border-top: 1px solid #aaaaaa;
    padding: 1.5rem;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .nav-menu.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-item {
    padding: 1rem 0;
    border-bottom: 1px solid #efefef;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}
.nav-link:hover, .nav-link.active {
  opacity: 0.7;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
}

.nav-item-parent {
  position: relative;
}
.nav-item-parent > .nav-link {
  cursor: pointer;
}
.nav-item-parent:hover .nav-submenu {
  display: flex;
}
@media (max-width: 768px) {
  .nav-item-parent:hover .nav-submenu {
    display: none;
  }
}

.nav-submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #efefef;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 0;
  display: none;
  min-width: 200px;
  z-index: 1000;
  padding: 1rem 0;
  margin-top: 0.5rem;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
@media (max-width: 768px) {
  .nav-submenu {
    position: static;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-subitem {
    padding-left: 2rem;
  }
}
.nav-subitem .nav-link {
  padding: 1rem 2rem;
  color: #333333;
}
.nav-subitem .nav-link::after {
  display: none;
}
.nav-subitem .nav-link:hover {
  background-color: #f5f5f5;
  opacity: 1;
}
@media (max-width: 768px) {
  .nav-subitem .nav-link {
    padding: 1rem 0;
  }
}

.footer {
  margin-top: 0;
  border-top: 1px solid #aaaaaa;
  background-color: #ffffff;
  padding: 3rem 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
}

.footer-container {
  padding: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.footer-section p {
  font-size: 0.9rem;
  color: #c7c7c7;
}

.footer-links,
.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a,
.social-links a {
  color: #333333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-links a:hover,
.social-links a:hover {
  color: #aaaaaa;
}

.footer-bottom {
  text-align: center;
  color: #c7c7c7;
  font-size: 0.9rem;
}

article.page-content {
  padding: 0;
}

.page-header {
  display: none;
  margin-bottom: 0;
}

.page-header-container {
  text-align: center;
  margin-bottom: 0;
}

.page-title {
  margin-bottom: 1.5rem;
}

.page-description {
  color: #c7c7c7;
  font-size: 1.1rem;
}

.page-featured-image {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
}
.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-body p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #777777;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.page-with-image {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px !important;
  padding: 2rem !important;
  min-height: 900px;
}
@media (max-width: 976px) {
  .page-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.page-with-image .page-image-section .page-featured-image {
  margin: 0;
  max-width: 100%;
}
.page-with-image.about-page .page-image-section .page-featured-image {
  max-width: 80%;
}
.page-with-image .page-body {
  margin: 0;
  max-width: 100%;
}

.page-reviews-section {
  padding: 3rem 2rem;
  margin-top: 3rem;
  background-color: #fafafa;
}
.page-reviews-section .reviews-content {
  max-width: 1200px;
  margin: 0 auto;
}
.page-reviews-section .reviews-content h2 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.25rem;
}

.reviews-list {
  display: grid;
  gap: 3rem;
}

.review-item {
  padding: 2rem;
  background-color: white;
  border-left: 4px solid #aaaaaa;
  box-shadow: 0px 0px 11px #d9d9d9;
}
.review-item .review-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #777777;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-item .review-source {
  font-size: 1.2rem;
  color: #777777;
  font-weight: 500;
  margin: 0;
}

.page-quote-section-wrapper {
  background-color: #f5f5f5;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 3rem 0;
}

.page-content > .page-quote-section-wrapper:last-child {
  margin-bottom: -3rem;
}

.page-quote-section {
  text-align: center;
}
.page-quote-section .quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 3rem;
  color: #aaaaaa;
  opacity: 0.4;
}
.page-quote-section .quote-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.page-quote-section h2 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-family: "Averia Serif Libre", display;
  color: #666666;
}
.page-quote-section footer {
  font-size: 2rem;
  color: #c7c7c7;
  margin-top: 1.5rem;
  font-family: "Averia Serif Libre", display;
  font-style: italic;
  font-weight: 400;
}

.page-body.about-body h2 {
  display: none;
}

.list-page {
  padding: 3rem 0;
}

.list-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.list-items {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.list-item {
  padding: 2rem;
  border: 1px solid #efefef;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.list-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-color: #aaaaaa;
}

.list-item-title {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}
.list-item-title a {
  text-decoration: none;
  color: #333333;
}
.list-item-title a:hover {
  color: #aaaaaa;
}

.list-item-description {
  color: #c7c7c7;
  margin-bottom: 1.5rem;
}

.list-item-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: all 0.3s ease;
}
.list-item-link:hover {
  color: #aaaaaa;
}

.no-items {
  text-align: center;
  padding: 3rem;
  color: #c7c7c7;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #aaaaaa;
}
@media (max-width: 768px) {
  .pagination {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.pagination-link {
  padding: 1.5rem 2rem;
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}
.pagination-link:hover {
  background-color: #efefef;
  border-color: #333333;
}
@media (max-width: 768px) {
  .pagination-link {
    width: 100%;
    text-align: center;
  }
}

.featured-book {
  padding: 3rem 0;
  margin-bottom: 3rem;
  background-image: url("/images/hero/crossroads-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 768px) {
  .featured-book {
    background-attachment: scroll;
  }
}
.featured-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.featured-book-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .featured-book-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.featured-book-text h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}
.featured-book-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.3rem;
}
.featured-book-text p:last-child {
  margin-bottom: 2rem;
}
.featured-book-text em {
  font-style: italic;
  color: #333333;
}

.awards-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 3rem;
}
.awards-list li {
  line-height: 0.9;
}

.awards-content {
  text-align: center;
}

.featured-book-cover {
  text-align: center;
}
.featured-book-cover img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.purchase-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding: 0 0 2rem;
  flex-wrap: wrap;
}
.purchase-links a {
  display: flex;
  align-items: center;
}
.purchase-links a img {
  max-width: 100%;
  height: auto;
}

.latest-news {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.latest-news-container h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 976px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-item {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.news-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.news-item.featured {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: stretch;
}
.news-item.featured .news-image {
  flex: 0 0 40%;
}
.news-item.featured .news-content {
  flex: 1;
  padding: 3rem;
}
@media (max-width: 976px) {
  .news-item.featured {
    grid-column: auto;
    flex-direction: column;
  }
  .news-item.featured .news-image {
    flex: 0 0 auto;
  }
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 179px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.featured .news-image {
  height: auto;
  background-color: transparent;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured .news-image img {
  object-fit: cover;
  padding: 0;
  height: 100%;
}
.news-image:hover img {
  transform: scale(1.03);
}

.news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: white;
}
.featured .news-content {
  background-color: white;
}
.news-content p {
  margin-bottom: 1rem;
}
.news-content .news-date {
  color: #aaaaaa;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.news-content .news-title {
  color: #333333;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
  flex-grow: 1;
}
.featured .news-content .news-title {
  font-size: 1.4rem;
}
.news-content .news-link {
  text-decoration: none;
  color: #7a8fa3;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid #7a8fa3;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.news-content .news-link:hover {
  background-color: #7a8fa3;
  color: white;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #333333;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 4px;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid white;
  outline-offset: 2px;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #333333;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #333333;
  transition: all 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #333333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #c7c7c7;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-button {
  background-color: #333333;
  color: white;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-button:hover {
  background-color: #aaaaaa;
}
.form-button:active {
  transform: scale(0.98);
}

.form-success,
.form-error {
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.form-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

.form-error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #c62828;
}

.btn {
  display: inline-block;
  padding: 1.5rem 2rem;
  background-color: #333333;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #aaaaaa;
}
.btn.btn-outline {
  background-color: transparent;
  border: 1px solid #333333;
  color: #333333;
}
.btn.btn-outline:hover {
  background-color: #333333;
  color: white;
}
.btn.btn-small {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}
.btn.btn-large {
  padding: 2rem 3rem;
  font-size: 1.1rem;
}

@media (max-width: 976px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .container,
  .header-container,
  .footer-container,
  .page-container,
  .list-container {
    padding: 1.5rem;
  }
  .contact-form {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .container,
  .header-container,
  .footer-container,
  .page-container,
  .list-container {
    padding: 1rem;
    max-width: 100%;
  }
  .header-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .logo-link {
    font-size: 1.5rem;
  }
  .nav {
    width: 100%;
    order: 3;
  }
  .nav-menu {
    width: 100%;
  }
  .nav-menu.active {
    display: flex;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 16px;
  }
  .form-button {
    width: 100%;
    padding: 1rem;
  }
  .list-items {
    gap: 1rem;
  }
  .list-item {
    padding: 1rem;
  }
  .list-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .list-item-description {
    font-size: 0.9rem;
  }
  .pagination {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  .pagination-link {
    width: 100%;
  }
  .footer {
    padding: 1.5rem 1rem;
  }
  .footer-content {
    gap: 1.5rem;
  }
  .footer-section h3, .footer-section h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  .footer-section p {
    font-size: 0.85rem;
  }
  .footer-links,
  .social-links {
    gap: 0.5rem;
  }
  .footer-links a,
  .social-links a {
    font-size: 0.85rem;
  }
  .hide-mobile {
    display: none;
  }
  .show-mobile {
    display: block;
  }
  .text-center-mobile {
    text-align: center;
  }
  hr {
    width: 100%;
    margin: 2rem auto;
  }
  blockquote {
    padding-left: 1rem;
    margin: 1rem 0;
  }
  ul, ol {
    padding-left: 1.5rem;
  }
  code {
    padding: 0.25em 0.35em;
  }
  pre {
    padding: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .container,
  .header-container,
  .footer-container,
  .page-container,
  .list-container {
    padding: 0.75rem;
  }
  .logo-link {
    font-size: 1.25rem;
  }
  .form-input,
  .form-textarea {
    font-size: 16px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media print {
  header,
  footer,
  .nav,
  .pagination,
  .no-print {
    display: none;
  }
  body {
    font-size: 12pt;
    color: black;
    background: white;
  }
  a {
    color: black;
    text-decoration: underline;
  }
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  p {
    page-break-inside: avoid;
  }
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}

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