/*
Theme Name: Pingvin Hybrid
Author: Your Name
Description: Hybrid WordPress theme scaffold with theme.json, custom blocks, and block variations.
Version: 0.1.0
*/
.spacing-xs {
  margin-bottom: 0.25rem;
}
.spacing-sm {
  margin-bottom: 0.5rem;
}
.spacing-md {
  margin-bottom: 1rem;
}
.spacing-lg {
  margin-bottom: 1.5rem;
}
.spacing-xl {
  margin-bottom: 2rem;
}
.spacing-2xl {
  margin-bottom: 3rem;
}
.spacing-3xl {
  margin-bottom: 4rem;
}
.spacing-4xl {
  margin-bottom: 6rem;
}

/*
Theme Name: Pingvin Hybrid
Author: Your Name
Description: Hybrid WordPress theme scaffold with theme.json, custom blocks, and block variations.
Version: 0.1.0
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  line-height: 1.5;
  color: #171717;
  min-height: 100vh;
  background-color: #737373;
}

.site-branding {
  view-transition-name: site-logo;
}

.desktop-navigation {
  view-transition-name: desktop-nav;
}

.hamburger-menu {
  view-transition-name: mobile-hamburger;
}

.site-logo,
.site-logo a {
  display: flex;
  align-items: center;
}

.site-logo img {
  padding: 0.25rem 0;
  height: 50px;
  width: auto;
}

.site-header {
  border: none;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  height: 100px;
}
.site-header.header-shrink {
  height: 60px;
}
.site-header.header-shrink .header-container {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  flex-direction: row;
  gap: 2rem;
}
.site-header .header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 0;
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .site-branding .site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #171717;
}
.site-header .site-branding .site-title a {
  text-decoration: none;
  color: inherit;
}
.site-header .site-branding .site-title a:hover {
  color: #69a1b1;
}
.site-header .site-branding .site-description {
  font-size: 0.875rem;
  color: #525252;
  margin: 0;
}
.site-header .main-navigation .primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
.site-header .main-navigation .primary-menu li {
  position: relative;
  padding: 0.5rem 0;
}
.site-header .main-navigation .primary-menu li a {
  text-decoration: none;
  color: #171717;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.site-header .main-navigation .primary-menu li a:hover, .site-header .main-navigation .primary-menu li a:focus {
  color: #69a1b1;
  background: transparent;
}
.site-header .desktop-navigation {
  display: block;
}
.site-header .mobile-navigation {
  display: none;
}
.site-header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.site-header .hamburger-menu .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #171717;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header .hamburger-menu.active {
  position: absolute;
  top: 25px;
  right: 25px;
}
.site-header .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.site-header .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.site-content {
  background-color: #ffffff;
  padding-bottom: 0px;
}
@media (max-width: 900px) {
  .site-content {
    padding: 0 !important;
  }
}
.site-content.dark {
  background-color: #e5e5e5;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.site-content .content-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.site-content .content-area .featured-content {
  color: #737373;
  margin: 2rem 0 0 0;
  font-weight: 500;
}

.widget-area .widget {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.widget-area .widget .widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #171717;
}
.widget-area .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-area .widget ul li {
  padding: 0.25rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.widget-area .widget ul li:last-child {
  border-bottom: none;
}
.widget-area .widget ul li a {
  text-decoration: none;
  color: #171717;
  transition: color 0.2s ease;
}
.widget-area .widget ul li a:hover {
  color: #69a1b1;
}

.pingvin-posts-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.pingvin-posts-list article {
  position: relative;
  background-color: #fafafa;
  padding: 1.5rem;
  width: calc(33.333% - 2rem);
  border: 1px solid #f5f5f5;
}
.pingvin-posts-list article h3 {
  color: #171717;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.pingvin-posts-list article h3 a {
  text-decoration: none;
  color: inherit;
}
.pingvin-posts-list article h3 a:hover {
  color: #69a1b1;
}
.pingvin-posts-list article .post-excerpt {
  color: #525252;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}
.pingvin-posts-list article .pingvin-post-meta {
  font-size: 0.75rem;
  color: #525252;
}
.pingvin-posts-list article .pingvin-post-meta i {
  margin-right: 0.5rem;
  color: #737373;
}
.pingvin-posts-list article .pingvin-post-meta .pingvin-post-categories a {
  text-decoration: none;
  color: #171717;
}
.pingvin-posts-list article .pingvin-post-meta .pingvin-post-categories a:hover {
  color: #69a1b1;
}

@media (max-width: 900px) {
  .pingvin-posts-list {
    flex-direction: column;
  }
  .pingvin-posts-list article {
    width: 100%;
  }
  .pingvin-posts-list article .pingvin-post-thumbnail a {
    display: block;
    width: 100%;
  }
  .pingvin-posts-list article .pingvin-post-thumbnail a img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.pingvin-read-more {
  color: #69a1b1;
  text-decoration: none;
}

.archive-header {
  padding-top: 1.5rem;
}

.archive-title {
  margin: 0;
}

.archive-posts-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.archive-posts-list article {
  position: relative;
  background-color: #fafafa;
  padding: 1.5rem;
  width: 100%;
  border: 1px solid #f5f5f5;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
.archive-posts-list article .archive-post-thumbnail {
  width: 35%;
  margin-bottom: 0.5rem;
}
.archive-posts-list article .archive-post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/0.75;
  overflow: hidden;
  object-fit: cover;
  height: auto;
}
.archive-posts-list article .archive-post-content {
  flex: 1;
}
.archive-posts-list article h2.archive-post-title {
  color: #171717;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.archive-posts-list article h2.archive-post-title a {
  text-decoration: none;
  color: inherit;
}
.archive-posts-list article h2.archive-post-title a:hover {
  color: #69a1b1;
}
.archive-posts-list article .archive-post-excerpt {
  color: #525252;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
}
.archive-posts-list article .archive-post-meta {
  font-size: 0.75rem;
  color: #525252;
  margin-bottom: 1rem;
}
.archive-posts-list article .archive-post-meta i {
  margin-right: 0.5rem;
  color: #737373;
}
.archive-posts-list article .archive-post-meta .pingvin-post-categories a {
  text-decoration: none;
  color: #171717;
}
.archive-posts-list article .archive-post-meta .pingvin-post-categories a:hover {
  color: #69a1b1;
}
@media (max-width: 1200px) {
  .archive-posts-list article {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 900px) {
  .archive-posts-list article {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .archive-posts-list {
    flex-direction: column;
  }
  .archive-posts-list article {
    width: 100%;
    flex-direction: column;
  }
  .archive-posts-list article .archive-post-thumbnail {
    width: 100%;
  }
  .archive-posts-list article .archive-post-thumbnail a {
    display: block;
    width: 100%;
  }
  .archive-posts-list article .archive-post-thumbnail a img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Subcategory filter below archive title */
.archive-subcategories {
  margin: 0.5rem 0 1.5rem 0;
}
.archive-subcategories .subcategories-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.archive-subcategories .subcategories-list li a {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #ffffff;
  color: #171717;
  text-decoration: none;
  background-color: #e5e5e5;
  transition: background 0.15s ease, color 0.15s ease;
}
.archive-subcategories .subcategories-list li a:hover {
  background: #a3a3a3;
  color: #ffffff;
}
.archive-subcategories .subcategories-list li a.current {
  background: #69a1b1;
  color: #ffffff;
  border-color: #69a1b1;
  pointer-events: none;
}

/* Parent category link above archive title */
.archive-parent .archive-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #171717;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.125rem;
  background: transparent;
}
.archive-parent .archive-parent-link i {
  font-size: 0.95rem;
  color: #525252;
}
.archive-parent .archive-parent-link:hover {
  color: #69a1b1;
}

/* Search popup overlay */
.search-icon:hover {
  color: #69a1b1;
  cursor: pointer;
}

.search-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100000;
}
.search-overlay .search-box {
  width: min(720px, 92%);
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.search-overlay .search-box .search-popup-form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.search-overlay .search-box .search-popup-form .search-popup-input {
  border-radius: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px solid #e5e5e5;
}
.search-overlay .search-box .search-popup-form .search-popup-input:focus {
  outline: none;
  border-color: #e5e5e5;
}
.search-overlay .search-box .search-popup-form .search-popup-submit {
  border-radius: 0;
  border: 0;
  padding: 0.25rem 1rem;
  cursor: pointer;
  margin-top: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.pagination .page-numbers,
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  margin: 0 0.25rem;
  background: #ffffff;
  color: #171717;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}
.pagination .page-numbers:hover,
.pagination a:hover {
  background: #69a1b1;
  color: #ffffff;
}
.pagination .page-numbers.current,
.pagination .page-numbers.current a {
  background: #69a1b1;
  color: #ffffff;
  pointer-events: none;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  min-width: auto;
  padding: 0 1rem;
}
.pagination .screen-reader-text {
  position: absolute;
  left: -10000px;
}

.pingvin-featured-post {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.pingvin-featured-post article {
  position: relative;
  padding: 0;
  width: 100%;
}
.pingvin-featured-post article .pingvin-featured-post-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .pingvin-featured-post article .pingvin-featured-post-content {
    flex-direction: column;
  }
  .pingvin-featured-post article .pingvin-featured-post-content .pingvin-post-thumbnail {
    width: 100%;
  }
}
.pingvin-featured-post article .pingvin-post-thumbnail {
  width: 35%;
}
.pingvin-featured-post article .pingvin-post-thumbnail img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.pingvin-featured-post article .pingvin-post-excerpt {
  color: #171717;
  font-size: 1rem;
  margin: 0;
  padding-top: 0;
  flex: 1;
}
.pingvin-featured-post article .pingvin-post-excerpt p {
  margin: 0 0 1rem 0;
}
.pingvin-featured-post article h1 {
  color: #171717;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.pingvin-featured-post article h1 a {
  text-decoration: none;
  color: inherit;
}
.pingvin-featured-post article h1 a:hover {
  color: #69a1b1;
}
.pingvin-featured-post article .pingvin-post-meta {
  font-size: 0.75rem;
  color: #525252;
  margin-bottom: 1rem;
}
.pingvin-featured-post article .pingvin-post-meta i {
  margin-right: 0.5rem;
  color: #737373;
}
.pingvin-featured-post article .pingvin-post-meta .pingvin-post-categories a {
  text-decoration: none;
  color: #171717;
}
.pingvin-featured-post article .pingvin-post-meta .pingvin-post-categories a:hover {
  color: #69a1b1;
}

.single-featured-hero {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  display: block;
}
.single-featured-hero .single-featured-image,
.single-featured-hero img.single-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.single-post-area .single-post-header {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.single-post-area .single-post-header .single-post-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #171717;
}
.single-post-area .single-post-meta {
  font-size: 0.875rem;
  color: #525252;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}
.single-post-area .single-post-meta i {
  margin-right: 0.5rem;
  color: #737373;
}
.single-post-area .single-post-meta .single-post-categories a {
  text-decoration: none;
  color: #171717;
}
.single-post-area .single-post-meta .single-post-categories a:hover {
  color: #69a1b1;
}
.single-post-area .single-post-content {
  color: #171717;
  line-height: 1.5;
  font-size: 1rem;
}
.single-post-area .single-post-content img {
  max-width: 100%;
  height: auto;
}

.pingvin-share-container {
  position: absolute;
  top: 10px;
  right: -10px;
  transition: all 0.2s ease;
}
.pingvin-share-container:hover {
  transform: scale(1.25);
}

.pingvin-share-trigger {
  background: #525252;
  border: 0;
  cursor: pointer;
  color: inherit;
  padding: 5px;
  border-radius: 100px;
  aspect-ratio: 1;
  width: 30px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pingvin-share-trigger i {
  color: #ffffff;
}
.pingvin-share-trigger:hover {
  background: #69a1b1;
}

.share-button {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.55rem;
  color: inherit;
  padding: 0.5rem;
}

.share-button:hover {
  transform: scale(1.2);
  background-color: transparent;
}

.wp-element-button,
.button-link,
button,
input[type=submit] {
  background-color: #69a1b1;
  border: none;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 0;
  transition: background-color 0.12s ease, transform 0.08s ease;
}
.wp-element-button:hover,
.button-link:hover,
button:hover,
input[type=submit]:hover {
  background-color: rgb(79.0263157895, 135.7631578947, 151.9736842105);
  text-decoration: none !important;
}
.wp-element-button:active,
.button-link:active,
button:active,
input[type=submit]:active {
  transform: translateY(1px);
}
.wp-element-button:disabled,
.button-link:disabled,
button:disabled,
input[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wp-block-buttons .wp-block-button__link {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.2s ease;
  padding-top: calc(0.5rem + 3px);
}
.wp-block-buttons .wp-block-button__link:hover {
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.25);
}

.grecaptcha-badge {
  visibility: hidden;
}

.site-footer {
  background-color: #737373;
}
.site-footer .footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: nowrap;
  padding-bottom: 0.5rem;
}
.site-footer .footer-section-primary {
  width: 50%;
  padding-right: 6rem;
}
.site-footer .footer-section-primary .site-logo {
  margin-bottom: 1rem;
}
.site-footer .footer-section-primary p {
  padding: 0 2rem 0 0;
}
.site-footer .footer-section-primary .social-icons {
  padding-bottom: 1rem;
}
.site-footer .footer-section-primary .social-icons a {
  color: #ffffff;
  padding: 0 1rem;
  font-size: 1.25rem;
}
.site-footer .footer-section-primary .social-icons a:hover {
  color: #69a1b1;
}
.site-footer .footer-section-secondary {
  width: 25%;
}
.site-footer .footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.site-footer .site-info {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-top: 1px solid #d4d4d4;
  color: #ffffff;
  font-size: 0.75rem;
  width: 100%;
  padding: 1rem;
}
.site-footer .site-info a {
  color: #69a1b1;
}
.site-footer .site-info a:hover {
  color: #69a1b1;
}
.site-footer .site-info .grecaptcha {
  font-size: 0.625rem;
  color: #ffffff;
}
.site-footer .site-info .grecaptcha a {
  color: #ffffff;
}
.site-footer .site-info .grecaptcha a:hover {
  color: #ffffff;
}
.site-footer p,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  color: #ffffff;
  margin: 0 0 1rem 0;
}
.site-footer p {
  font-size: 0.875rem;
}

.hero-section {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: absolute;
  color: #865945;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  /*
  --s: 1.5rem; 
  --p: 6; 

  --offset: calc(2 * var(--s));

  --R: calc(var(--s) * sqrt(var(--p) * var(--p) + 1)) at 50%;

  -webkit-mask:
    radial-gradient(var(--R) calc(var(--s) * (1 + var(--p))), #000 99%, #0000 101%) calc(50% - 2 * var(--s) + var(--offset)) 0 / calc(4 * var(--s)) 51% repeat-x,
    radial-gradient(var(--R) calc(-1 * var(--s) * var(--p)), #0000 99%, #000 101%) calc(50% + var(--offset)) calc(var(--s)) / calc(4 * var(--s)) 51% repeat-x,
     radial-gradient(var(--R) calc(100% - var(--s) * (1 + var(--p))), #000 99%, #0000 101%) calc(50% - 2 * var(--s)) 100% / calc(4 * var(--s)) 51% repeat-x,
    radial-gradient(var(--R) calc(100% + var(--s) * var(--p)), #0000 99%, #000 101%) 50% calc(100% - var(--s)) / calc(4 * var(--s)) 51% repeat-x;

  mask:
    radial-gradient(var(--R) calc(var(--s) * (1 + var(--p))), #000 99%, #0000 101%) calc(50% - 2 * var(--s) + var(--offset)) 0 / calc(4 * var(--s)) 51% repeat-x,
    radial-gradient(var(--R) calc(-1 * var(--s) * var(--p)), #0000 99%, #000 101%) calc(50% + var(--offset)) calc(var(--s)) / calc(4 * var(--s)) 51% repeat-x,
     radial-gradient(var(--R) calc(100% - var(--s) * (1 + var(--p))), #000 99%, #0000 101%) calc(50% - 2 * var(--s)) 100% / calc(4 * var(--s)) 51% repeat-x,
    radial-gradient(var(--R) calc(100% + var(--s) * var(--p)), #0000 99%, #000 101%) 50% calc(100% - var(--s)) / calc(4 * var(--s)) 51% repeat-x;

  padding-bottom: calc((1.75 * var(--s)));
  padding-top: calc((1.75 * var(--s)));
  margin-top: calc(-3 * (1.75 * var(--s)));
  */
  margin-top: -150px;
}
@media (max-width: 900px) {
  .hero-section .hero-text {
    transform: translateY(-10vh);
  }
}
.hero-section .hero-text .hero-subtitle {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 1rem 2rem;
  line-height: normal;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.25);
  margin-top: 1rem;
}
.hero-section .hero-logo {
  width: 50%;
}
.hero-section a {
  color: #865945;
  text-decoration: none;
}
.hero-section a:hover {
  color: #865945;
}

@media (max-width: 1200px) {
  .site-header .header-container {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  .site-header .main-navigation .primary-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .site-content .content-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .footer-widgets {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 900px) {
  .site-header .header-container {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .site-header .hamburger-menu {
    display: flex;
    top: 1rem;
    margin-bottom: 0.5rem;
  }
  .site-header .desktop-navigation {
    display: none;
  }
  .site-header .mobile-navigation {
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    display: flex;
    align-items: flex;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .site-header .mobile-navigation.active {
    transform: translateX(0);
  }
  .site-header .mobile-navigation .primary-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
  }
  .site-header .mobile-navigation .primary-menu li {
    text-align: left;
  }
  .site-header .mobile-navigation .primary-menu li a {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s ease;
    color: #171717;
  }
  .site-header .mobile-navigation .primary-menu li a:hover, .site-header .mobile-navigation .primary-menu li a:focus {
    color: #525252;
  }
  .site-header .mobile-navigation .menu-item-has-children {
    position: relative;
  }
  .site-header .mobile-navigation .menu-item-has-children > a {
    position: relative;
    padding-right: calc(2rem + 8px);
  }
  .site-header .mobile-navigation .menu-item-has-children .submenu-indicator {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #525252;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    z-index: 999999999999;
    margin-top: 0;
  }
  .site-header .mobile-navigation .social-icons a {
    font-size: 1.5rem;
    color: #69a1b1;
    margin: 0 0.25rem;
  }
  .site-header .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .site-header .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
  #site-footer .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  #site-footer .footer-section-primary,
  #site-footer .footer-section-secondary {
    width: 90%;
    padding: 0 5%;
    margin-bottom: 1.5rem;
  }
  #site-footer .footer-section-primary p,
  #site-footer .footer-section-secondary p {
    padding: 0;
  }
  .site-content .content-area {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-widgets {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-section {
    height: 85vh;
    max-height: 85vh;
  }
  .hero-section img {
    min-width: 100%;
    min-height: 85vh;
  }
  .hero-section .hero-text {
    margin: 0 2rem;
  }
}
.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: 1rem;
  background-color: #69a1b1;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 0.375rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
}

.pingvin-share-container-single {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 32px;
  z-index: 1000;
}
.pingvin-share-container-single button {
  background-color: #69a1b1;
}
@media (max-width: 900px) {
  .pingvin-share-container-single {
    right: 30px;
  }
}

.wp-block-quote {
  position: relative;
  background-color: #d4d4d4;
  padding: 8px 24px;
  border-radius: 16px;
  display: inline-block;
  font-family: system-ui, sans-serif;
  color: #737373 !important;
  border-left: 0 !important;
  margin: 5px !important;
  margin-left: 7rem !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.wp-block-quote p {
  margin: 0 !important;
}

/* The Triangle/Tail */
.wp-block-quote::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d4d4d4;
}

/*
Theme Name: Pingvin Hybrid
Author: Your Name
Description: Hybrid WordPress theme scaffold with theme.json, custom blocks, and block variations.
Version: 0.1.0
*/
@media (min-width: 900px) {
  #site-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
}
#site-navigation div ul {
  gap: 1rem;
}
#site-navigation div ul li a {
  color: #171717;
  font-weight: 600;
  padding: 0;
  font-size: 0.875rem;
}
#site-navigation div ul li a:hover {
  color: #69a1b1;
}

.social-icons {
  position: absolute;
  top: 20px;
  right: 45px;
  display: flex;
  gap: 0.5rem;
}
.social-icons .social-icon {
  color: #69a1b1;
  transition: color 0.1s ease;
  min-width: 24px;
  text-align: center;
}
.social-icons .social-icon:hover {
  color: #171717;
}

@media (max-width: 900px) {
  .header-container .social-icons {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    top: auto;
    right: auto;
    font-size: 1.5rem !important;
  }
  .header-container .social-icons .social-icon {
    margin: 0 5px;
  }
}
/**
  * Submenu styles
  */
.primary-menu .menu-item-has-children {
  position: relative;
}

@media (min-width: 900px) {
  /* Hide submenu */
  .primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    margin-top: 0;
    padding: 0.5rem 2rem;
    gap: 0.25rem !important;
  }
}
.sub-menu li {
  list-style-type: none;
  padding: 0;
}
.sub-menu li a {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 1rem !important;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  font-size: 0.875rem;
}

.primary-menu .sub-menu a:hover {
  background: #f5f5f5;
}

@media (max-width: 900px) {
  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    height: 0;
    overflow: hidden;
    visibility: visible;
    display: block;
    padding: 0;
    transform: none;
    transition: height 300ms ease;
    display: flex;
    flex-direction: column;
  }
  .primary-menu .submenu-open > .sub-menu {
    opacity: 1;
    height: auto;
    transform: translateY(0);
    display: block;
  }
  .sub-menu li {
    transition: all 0.3s ease;
  }
}
.current_page_item > a,
.current-menu-item > a,
.current_page_ancestor > a,
.current-menu-ancestor > a {
  color: #69a1b1 !important;
  font-weight: 700 !important;
}

.primary-menu .sub-menu {
  transition: 0.2s ease all;
}

.footer-navigation ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-navigation ul li {
  padding: 0;
}
.footer-navigation ul li.current-menu-ancestor a, .footer-navigation ul li.current-menu-item a, .footer-navigation ul li.current_page_ancestor a, .footer-navigation ul li.current_page_item a {
  color: #ffffff !important;
  font-weight: 500 !important;
}
.footer-navigation ul li a {
  color: #ffffff;
  font-weight: 500;
  padding: 0;
  font-size: 0.875rem;
  text-decoration: none;
}
.footer-navigation ul li a:hover {
  color: #69a1b1;
}

#search-toggle {
  display: none;
}

/*
Theme Name: Pingvin Hybrid
Author: Your Name
Description: Hybrid WordPress theme scaffold with theme.json, custom blocks, and block variations.
Version: 0.1.0
*/
.form,
form,
.ff-el-group {
  width: 100%;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form label,
form label,
.ff-el-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #171717;
  font-size: 0.875rem;
}
.form .form-row,
form .form-row,
.ff-el-group .form-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.form .form-row.stacked,
form .form-row.stacked,
.ff-el-group .form-row.stacked {
  flex-direction: column;
}
.form input[type=text],
.form input[type=email],
.form input[type=url],
.form input[type=tel],
.form input[type=search],
.form input[type=password],
.form textarea,
.form select,
form input[type=text],
form input[type=email],
form input[type=url],
form input[type=tel],
form input[type=search],
form input[type=password],
form textarea,
form select,
.ff-el-group input[type=text],
.ff-el-group input[type=email],
.ff-el-group input[type=url],
.ff-el-group input[type=tel],
.ff-el-group input[type=search],
.ff-el-group input[type=password],
.ff-el-group textarea,
.ff-el-group select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff !important;
  background-color: #ffffff;
  color: #171717;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.18s ease;
  border-radius: 0 !important;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=url]:focus,
.form input[type=tel]:focus,
.form input[type=search]:focus,
.form input[type=password]:focus,
.form textarea:focus,
.form select:focus,
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=tel]:focus,
form input[type=search]:focus,
form input[type=password]:focus,
form textarea:focus,
form select:focus,
.ff-el-group input[type=text]:focus,
.ff-el-group input[type=email]:focus,
.ff-el-group input[type=url]:focus,
.ff-el-group input[type=tel]:focus,
.ff-el-group input[type=search]:focus,
.ff-el-group input[type=password]:focus,
.ff-el-group textarea:focus,
.ff-el-group select:focus {
  outline: none;
  border-color: #69a1b1 !important;
}
.form textarea,
form textarea,
.ff-el-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form .help-text,
form .help-text,
.ff-el-group .help-text {
  display: block;
  margin-top: 0.25rem;
  color: #525252;
  font-size: 0.75rem;
}
.form .input-error,
form .input-error,
.ff-el-group .input-error {
  border-color: #ef4444 !important;
}
.form .form-actions,
form .form-actions,
.ff-el-group .form-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.form .button,
.form button,
.form input[type=submit],
.form .ff-btn,
form .button,
form button,
form input[type=submit],
form .ff-btn,
.ff-el-group .button,
.ff-el-group button,
.ff-el-group input[type=submit],
.ff-el-group .ff-btn {
  background-color: #69a1b1 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.5rem 1.5rem !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border-radius: 0 !important;
  transition: background-color 0.12s ease, transform 0.08s ease;
}
.form .button:hover,
.form button:hover,
.form input[type=submit]:hover,
.form .ff-btn:hover,
form .button:hover,
form button:hover,
form input[type=submit]:hover,
form .ff-btn:hover,
.ff-el-group .button:hover,
.ff-el-group button:hover,
.ff-el-group input[type=submit]:hover,
.ff-el-group .ff-btn:hover {
  background-color: rgb(79.0263157895, 135.7631578947, 151.9736842105);
}
.form .button:active,
.form button:active,
.form input[type=submit]:active,
.form .ff-btn:active,
form .button:active,
form button:active,
form input[type=submit]:active,
form .ff-btn:active,
.ff-el-group .button:active,
.ff-el-group button:active,
.ff-el-group input[type=submit]:active,
.ff-el-group .ff-btn:active {
  transform: translateY(1px);
}
.form .button:disabled,
.form button:disabled,
.form input[type=submit]:disabled,
.form .ff-btn:disabled,
form .button:disabled,
form button:disabled,
form input[type=submit]:disabled,
form .ff-btn:disabled,
.ff-el-group .button:disabled,
.ff-el-group button:disabled,
.ff-el-group input[type=submit]:disabled,
.ff-el-group .ff-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form fieldset,
form fieldset,
.ff-el-group fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
@media (min-width: 900px) {
  .form .form-row.row-2,
  form .form-row.row-2,
  .ff-el-group .form-row.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-inline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.form-inline label {
  margin: 0;
}

#search-toggle {
  background-color: transparent !important;
  color: #171717 !important;
  padding: 0 !important;
  transition: none;
  margin-top: 0 !important;
}
#search-toggle:hover {
  background-color: transparent;
}
#search-toggle:active {
  transform: none;
}

.searchform {
  width: 100%;
  padding: 1rem;
  background-color: #d4d4d4;
}

.pingvin-galerie-slider {
  width: 100%;
  margin: 0 auto;
}
.pingvin-galerie-slider .pingvin-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
}
.pingvin-galerie-slider .pingvin-slider .pingvin-slider-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
}
.pingvin-galerie-slider .pingvin-slider .pingvin-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pingvin-galerie-slider .pingvin-slider .pingvin-slide img {
  width: 100%;
  height: 500px; /* fixed max height */
  max-height: 500px;
  object-fit: cover; /* crop to cover */
  display: block;
  cursor: zoom-in;
}
.pingvin-galerie-slider .pingvin-slider .pingvin-slider-prev,
.pingvin-galerie-slider .pingvin-slider .pingvin-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}
.pingvin-galerie-slider .pingvin-slider .pingvin-slider-prev {
  left: 12px;
}
.pingvin-galerie-slider .pingvin-slider .pingvin-slider-next {
  right: 12px;
}

/* Lightbox styles for full-size image preview */
.pingvin-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.pingvin-lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
}

.pingvin-lightbox-content img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  display: block;
}

/* Styles for the Zusammenfassung block */
.wp-block-pingvin-hybrid-zusammenfassung {
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-sm {
  padding: 12px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-md {
  padding: 20px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-top-sm {
  padding-top: 12px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-top-md {
  padding-top: 20px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-right-sm {
  padding-right: 12px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-right-md {
  padding-right: 20px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-bottom-sm {
  padding-bottom: 12px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-bottom-md {
  padding-bottom: 20px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-left-sm {
  padding-left: 12px;
}
.wp-block-pingvin-hybrid-zusammenfassung.padding-left-md {
  padding-left: 20px;
}
.wp-block-pingvin-hybrid-zusammenfassung {
  /* make inner content readable in dark themes by default */
  color: inherit;
}

/* Styles for the Zusammenfassung block */
.zusammenfassung {
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
}
.zusammenfassung.padding-sm {
  padding: 12px;
}
.zusammenfassung.padding-md {
  padding: 24px;
}
.zusammenfassung .zusammenfassung-inner {
  max-width: var(--content-width, 1200px);
  margin: 0 auto;
}

/* editor adjustments */
.editor-styles-wrapper .zusammenfassung {
  box-shadow: none;
}

/*
Theme Name: Pingvin Hybrid
Author: Your Name
Description: Hybrid WordPress theme scaffold with theme.json, custom blocks, and block variations.
Version: 0.1.0
*/
.roaver-widget-container {
  padding: 0 0 25px 0 !important;
  min-height: 175px !important;
}
.roaver-widget-container div {
  padding: 0 !important;
}

#roaver-widget {
  margin-top: -41px !important;
  width: 100% !important;
}
#roaver-widget .search-form {
  width: 100% !important;
}
#roaver-widget .search-form .tabs {
  width: 100% !important;
}
#roaver-widget .search-form .tabs__contents {
  min-height: 175px !important;
  padding-top: 25px !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}
#roaver-widget .search-form .tabs__content {
  width: 100% !important;
}
#roaver-widget .selectize-input {
  padding: 10px 0 0 45px !important;
  border: none !important;
  background-color: #ffffff !important;
}
#roaver-widget .input-to .selectize-input,
#roaver-widget .book-options__root .selectize-input {
  padding: 10px 0 0 15px !important;
}
#roaver-widget .selectize-control {
  margin-right: 5px !important;
  border: none !important;
  background-color: #ffffff !important;
}
#roaver-widget button {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
#roaver-widget .date-input-container {
  margin-right: 5px !important;
  border: none !important;
  background-color: #ffffff !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
#roaver-widget .date-input-container input {
  border: none !important;
  background-color: #ffffff !important;
}
#roaver-widget .selectize-dropdown {
  border: none !important;
  background-color: #ffffff !important;
}
#roaver-widget .selectize-dropdown-content div {
  padding: 5px !important;
}
#roaver-widget .request-quote-button {
  display: none !important;
}
#roaver-widget label {
  margin-bottom: 3px !important;
  font-weight: bold !important;
}

body {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  color: #171717;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-optical-sizing: auto;
}

.pingvin-highlight {
  background: #fffae6;
  padding: 0.5em;
  border-left: 4px solid #ff5500;
}

.entry-content {
  line-height: 1.75;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: #171717;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.entry-content h1 {
  font-size: 2.25rem;
}
.entry-content h2 {
  font-size: 1.875rem;
}
.entry-content h3 {
  font-size: 1.5rem;
}
.entry-content h4 {
  font-size: 1.25rem;
}
.entry-content h5 {
  font-size: 1.125rem;
}
.entry-content h6 {
  font-size: 1rem;
}
.entry-content p {
  margin-bottom: 1rem;
}
.entry-content a {
  color: #69a1b1;
  text-decoration: none;
  transition: color 0.1s ease;
  outline: none;
}
.entry-content a:hover {
  color: #69a1b1;
  text-decoration: underline;
}
.entry-content a:focus {
  outline: none;
}
.entry-content a:active {
  outline: none;
}
.entry-content ul,
.entry-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.entry-content blockquote {
  border-left: 4px solid #e5e5e5;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #525252;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-meta {
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 1rem;
}
.entry-meta a {
  color: #69a1b1;
}
.entry-meta a:hover {
  color: #69a1b1;
}

.entry-footer {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #525252;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #69a1b1;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.1s ease;
}
.read-more:hover {
  border-bottom-color: #69a1b1;
}

.post-thumbnail {
  margin-bottom: 1.5rem;
}
.post-thumbnail img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

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

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

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.text-primary {
  color: #69a1b1;
}

.text-secondary {
  color: #865945;
}

.text-success {
  color: #10b981;
}

.text-warning {
  color: #f59e0b;
}

.text-error {
  color: #ef4444;
}

.bg-primary {
  background-color: #69a1b1;
}

.bg-secondary {
  background-color: #865945;
}

.bg-light {
  background-color: #fdfcfb;
}

.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}
.search-form .search-field {
  flex: 1;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.375rem;
  font-size: 1rem;
}
.search-form .search-field:focus {
  outline: none;
  border-color: #69a1b1;
  box-shadow: 0 0 0 3px rgba(105, 161, 177, 0.1);
}
.search-form .search-submit {
  padding: 1rem 1.5rem;
  background-color: #69a1b1;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.search-form .search-submit:hover {
  background-color: rgb(79.0263157895, 135.7631578947, 151.9736842105);
}

.posts-navigation,
.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.posts-navigation a,
.post-navigation a {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #171717;
  transition: all 0.1s ease;
}
.posts-navigation a:hover,
.post-navigation a:hover {
  border-color: #69a1b1;
  color: #69a1b1;
}

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