@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
/*
  Global box-sizing reset
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  Reset some basic elements
*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

/*
  Basic styling
*/
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
  color: #6e4c2f;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
}

h2 {
  margin-top: 2rem;
  font-size: 2rem;
  border-bottom: 2px solid rgba(44, 62, 80, 0.1);
  padding-bottom: 0.5rem;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

h4,
h5,
h6 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Body */
body {
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
  background-color: #f8f9fa;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img-core/wcl-tin.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #333333;
  line-height: 1.6;
  overflow-y: scroll;
}

/* Images & Iframes */
body img,
iframe {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  width: auto;
  border: none;
  transition: transform 0.3s ease;
}
body img[src*="docs.google.com"],
iframe[src*="docs.google.com"] {
  overflow: hidden;
}

article img,
.page-content img,
.page-events-content img {
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.featured-image img,
.event-card img,
.post-card-image img,
.hero-glass-card img {
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.post-content,
.page-content,
.page-events-content {
  overflow-x: hidden;
}

/* Paragraphs */
p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
}

/* Lists */
ul,
ol,
dl {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 1.5rem;
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
}

li {
  margin-bottom: 0.5rem;
}

dt {
  font-weight: bold;
  color: #2c3e50;
}

dd {
  margin-bottom: 0.5rem;
}

/*
  Links
*/
a {
  color: #5865F2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
a:hover {
  color: #e67e22;
  text-decoration: underline;
}

/*
  Blockquote
*/
blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid #e67e22;
  background: white;
  border-radius: 0 12px 12px 0;
  color: #666666;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/**
 * Tables - Responsive
 * Works with both markdown tables and wrapped HTML tables
 */
table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #2c3e50;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

th:first-child {
  border-top-left-radius: 12px;
}

th:last-child {
  border-top-right-radius: 12px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: rgba(230, 126, 34, 0.05);
}

@media (max-width: 768px) {
  table {
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  thead {
    display: none;
  }
  tbody {
    display: block;
  }
  tr {
    display: block;
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  tr:hover td {
    background-color: transparent;
  }
  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    text-align: right;
  }
  td::before {
    content: "";
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: left;
    margin-right: auto;
    padding-right: 15px;
  }
  td {
    border-radius: 0 !important;
  }
  td:last-child {
    border-bottom: none;
  }
  td a {
    font-weight: 600;
  }
  td:nth-child(1)::before {
    content: "Venue";
  }
  td:nth-child(2)::before {
    content: "Frequency";
  }
  td:nth-child(3)::before {
    content: "Time";
  }
  td:nth-child(4)::before {
    content: "Price";
  }
  td:nth-child(5)::before,
  td:nth-child(6)::before {
    content: "";
  }
}
@media (max-width: 480px) {
  tr {
    margin-bottom: 12px;
  }
  td {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  td::before {
    font-size: 0.75rem;
  }
}
html {
  scroll-padding-top: 84px;
}

code,
pre {
  font-family: "Source Code Pro", monospace;
}

code {
  padding: 0.25em 0.5em;
  font-size: 0.8rem;
  background-color: #f5f5f5;
  border-radius: 3px;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  white-space: pre;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
}

pre code {
  padding: 0;
  font-size: 100%;
  color: inherit;
  background-color: transparent;
}

/* Pygments via Jekyll */
.highlight {
  margin-bottom: 1rem;
  border-radius: 4px;
}

.highlight pre {
  margin-bottom: 0;
}

/* Gist via GitHub Pages */
.gist .gist-file {
  font-family: "Source Code Pro", monospace !important;
}

.gist .markdown-body {
  padding: 15px;
}

.gist pre {
  padding: 0;
  background-color: transparent;
}

.gist .gist-file .gist-data {
  font-size: 0.8rem !important;
  line-height: 1.4;
}

.gist code {
  padding: 0;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

/*
  Site container
*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 1240px) {
  .container {
    width: calc(100% - 20px);
  }
}

.content-wrapper {
  padding-top: 124px;
  padding-bottom: 40px;
  margin: 0 auto;
  display: block;
  width: 100%;
  box-sizing: border-box;
  /* 
     We can't easily mask the wrapper itself relative to the viewport if the wrapper scrolls with the body.
     However, if we use mask-image: linear-gradient(...), it tracks the element.
     The BEST way to "dissipate" content as it hits the top is a fixed white gradient overlay.
  */
}

.content-wrapper h1 {
  margin: 0 0 30px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding-top: 114px;
  }
}
.layout-front-page .footer {
  margin-top: 0;
}
@media (max-width: 768px) {
  .layout-front-page .content-wrapper {
    padding-top: 114px;
  }
}

/*
  Header Fade Overlay
  Creates a fixed bridge at the top of the viewport that matches the site background.
  Content scrolling under the header will hit this overlay and fade out into the background.
*/
.site-header-fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 999;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img-core/wcl-tin.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  -webkit-mask-image: linear-gradient(to bottom, black 0, black 60px, transparent 95px);
  mask-image: linear-gradient(to bottom, black 0, black 60px, transparent 95px);
}

.footer {
  text-align: center;
  padding: 15px 40px;
  margin: 0 auto 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-color: #d4a76a;
  background-image: radial-gradient(circle at 12px 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(circle at calc(100% - 12px) 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(ellipse at 30% 60%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), radial-gradient(ellipse at 70% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.03) 1.5px, transparent 2px), linear-gradient(to bottom, #f3d19e 0%, #d4a76a 50%, rgb(202.8625, 148.3, 74.3375) 100%);
  background-size: 100% 100%, 100% 100%, 350px 40px, 450px 50px, 100% 4px, 100% 100%;
  background-repeat: no-repeat, no-repeat, repeat-x, repeat-x, repeat, no-repeat;
  border: 4px solid #4d2d18;
  border-top-width: 7px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1), inset 0 2.5px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer a {
  color: #4d2d18;
  padding: 0 12px;
  text-decoration: none;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}
.footer a::after {
  display: none !important;
}
.footer a:hover {
  color: #6e4c2f;
  text-decoration: none;
  transform: translateY(-3px) scale(1.1);
}

.footer-description {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  color: #4d2d18;
  font-size: clamp(0.4rem, 2.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  padding: 0 5px;
  box-sizing: border-box;
}

@media (max-width: 1240px) {
  .footer {
    width: calc(100% - 20px);
    max-width: none;
    margin: 0 auto 10px;
    border-radius: 20px;
    padding: 12px 20px;
  }
  .footer a {
    padding: 0 8px;
  }
}
.site-header {
  min-height: 64px;
  width: 100%;
  max-width: 1200px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #d4a76a;
  background-image: radial-gradient(circle at 12px 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(circle at calc(100% - 12px) 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(ellipse at 20% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), radial-gradient(ellipse at 80% 60%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.03) 1.5px, transparent 2px), linear-gradient(to bottom, #f3d19e 0%, #d4a76a 50%, rgb(202.8625, 148.3, 74.3375) 100%);
  background-size: 100% 100%, 100% 100%, 300px 50px, 400px 60px, 100% 4px, 100% 100%;
  background-repeat: no-repeat, no-repeat, repeat-x, repeat-x, repeat, no-repeat;
  border: 4px solid #4d2d18;
  border-bottom: 7px solid #4d2d18;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), inset 0 2.5px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0 40px;
  box-sizing: border-box;
  border-radius: 15px;
}
@media (max-width: 1100px) {
  .site-header {
    padding: 0 20px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    width: calc(100% - 20px);
    max-width: none;
    border-radius: 20px;
    top: 0;
    margin-top: 10px;
    padding: 0 20px;
  }
}
.site-header a {
  text-decoration: none;
  color: #4d2d18;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.site-header a:hover {
  color: #6e4c2f;
  transform: scale(1.05);
  text-decoration: none;
}

.site-title {
  font-size: clamp(0.95rem, 4vw, 1.6rem);
  font-weight: 900;
  line-height: 64px;
  margin: 0;
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-list {
  line-height: 64px;
  display: flex;
  align-items: center;
}

.menu-link {
  padding: 0 15px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}
@media (max-width: 1100px) {
  .menu-link {
    padding: 0 10px;
  }
}

/*
  Responsiveness with a dropdown menu
*/
@media (min-width: 1040px) {
  .dropdown {
    display: none;
  }
  .dropbtn {
    display: none;
  }
  .dropdown-content {
    display: none;
  }
}
@media (max-width: 1040px) {
  .menu-list {
    display: none;
  }
  .dropbtn {
    background-color: transparent;
    color: #4d2d18;
    padding: 0 10px;
    height: 64px;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    line-height: 64px;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .dropbtn:hover {
    color: #6e4c2f;
    transform: scale(1.1);
  }
  .dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
  }
  .dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #d4a76a;
    background-image: radial-gradient(circle at 12px calc(100% - 12px), rgba(0, 0, 0, 0.4) 2px, transparent 3px), radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), rgba(0, 0, 0, 0.4) 2px, transparent 3px), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.02) 1.5px, transparent 2px), linear-gradient(to bottom, rgb(207.43125, 157.65, 90.16875) 0%, #d4a76a 30%, #f3d19e 100%);
    background-size: 100% 100%, 100% 100%, 100% 4px, 100% 100%;
    min-width: 240px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid #4d2d18;
    border-bottom-width: 7px;
    border-top: none;
    border-radius: 0 0 16px 16px;
    z-index: 1001;
    top: 100%;
    right: 0;
    text-align: left;
    overflow: hidden;
    transform: translateY(-5px) scaleY(0.98);
    transform-origin: top center;
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.2s;
  }
  .dropdown-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  .dropdown-content a {
    color: #4d2d18;
    padding: 14px 22px;
    text-decoration: none;
    display: block;
    border-bottom: 2px solid rgba(77, 45, 24, 0.1);
    font-weight: 800;
    transition: all 0.2s ease;
    position: relative;
    z-index: 5;
  }
  .dropdown-content a:hover {
    background-color: rgba(77, 45, 24, 0.08);
    padding-left: 28px;
    color: #6e4c2f;
  }
  .dropdown.is-open .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .dropdown.is-open .dropbtn {
    color: #6e4c2f;
  }
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 64px;
}
.nav-dropdown .nav-dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown .nav-dropdown-trigger i {
  font-size: 0.6em;
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-dropdown-trigger i {
  transform: rotate(180deg);
}
.nav-dropdown .nav-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #f3d19e;
  background-image: radial-gradient(circle at 12px 12px, rgba(0, 0, 0, 0.2) 1.5px, transparent 2.5px), radial-gradient(circle at calc(100% - 12px) 12px, rgba(0, 0, 0, 0.2) 1.5px, transparent 2.5px), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.01) 1.5px, transparent 2px), linear-gradient(to bottom, #fcf8f3 0%, #f3d19e 100%);
  background-size: 100% 100%, 100% 100%, 100% 4px, 100% 100%;
  min-width: 240px;
  border: 3px solid #4d2d18;
  border-bottom-width: 6px;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 10px 10px -10px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  overflow: hidden;
  margin-top: 0;
  padding-top: 5px;
  line-height: 1.4;
  text-align: left;
  transform: translateX(-50%) translateY(-15px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.2s;
}
.nav-dropdown .nav-dropdown-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(77, 45, 24, 0.1);
  pointer-events: none;
}
.nav-dropdown .nav-dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #4d2d18 !important;
  border-bottom: 1px solid rgba(77, 45, 24, 0.1);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-dropdown .nav-dropdown-content a strong {
  display: block;
  margin-bottom: 2px;
}
.nav-dropdown .nav-dropdown-content a .dropdown-meta {
  font-size: 0.8em;
  opacity: 0.7;
  font-weight: 600;
  display: block;
}
.nav-dropdown .nav-dropdown-content a:hover {
  background-color: rgba(77, 45, 24, 0.1);
  transform: none !important;
}
.nav-dropdown .nav-dropdown-content a.all-link {
  text-align: center;
  background-color: rgba(77, 45, 24, 0.05);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
}
.nav-dropdown .nav-dropdown-content a.all-link:hover {
  background-color: rgba(77, 45, 24, 0.15);
  color: #6e4c2f !important;
}
.nav-dropdown .nav-dropdown-content hr {
  margin: 0;
  border: none;
  border-top: 2px solid rgba(77, 45, 24, 0.1);
}
.nav-dropdown .nav-dropdown-content .dropdown-empty {
  display: block;
  padding: 16px;
  color: rgba(77, 45, 24, 0.6);
  font-style: italic;
  text-align: center;
}
.nav-dropdown:hover .nav-dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mobile-dropdown-section {
  border-bottom: 2px solid rgba(77, 45, 24, 0.1);
  background-color: transparent;
}
.mobile-dropdown-section:last-of-type {
  border-bottom: none;
}
.mobile-dropdown-section .mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 12px;
  background-color: rgba(77, 45, 24, 0.03);
}
.mobile-dropdown-section .mobile-dropdown-header .menu-link {
  flex-grow: 1;
  padding: 14px 22px;
}
.mobile-dropdown-section .mobile-section-toggle {
  background: rgba(77, 45, 24, 0.08);
  border: 2px solid rgba(77, 45, 24, 0.15);
  border-radius: 6px;
  color: #4d2d18;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-dropdown-section .mobile-section-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}
.mobile-dropdown-section .mobile-section-toggle:hover {
  background: rgba(77, 45, 24, 0.15);
  color: #6e4c2f;
}
.mobile-dropdown-section .mobile-dropdown-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #f3d19e;
  background-image: radial-gradient(circle at 12px 12px, rgba(0, 0, 0, 0.2) 1.5px, transparent 2.5px), radial-gradient(circle at calc(100% - 12px) 12px, rgba(0, 0, 0, 0.2) 1.5px, transparent 2.5px), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.01) 1.5px, transparent 2px), linear-gradient(to bottom, #fcf8f3 0%, #f3d19e 100%);
  background-size: 100% 100%, 100% 100%, 100% 4px, 100% 100%;
  box-shadow: inset 0 8px 12px -6px rgba(0, 0, 0, 0.2), inset 0 -8px 12px -6px rgba(0, 0, 0, 0.1);
}
.mobile-dropdown-section.is-open .mobile-dropdown-collapsible {
  max-height: 800px;
}
.mobile-dropdown-section.is-open .mobile-section-toggle {
  background: rgba(77, 45, 24, 0.2);
}
.mobile-dropdown-section.is-open .mobile-section-toggle i {
  transform: rotate(180deg);
}
.mobile-dropdown-section .mobile-dropdown-item {
  padding: 12px 22px !important;
  padding-left: 40px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #4d2d18 !important;
  background-color: transparent;
  display: block;
  border-bottom: 1px solid rgba(77, 45, 24, 0.1);
  transition: all 0.2s ease;
  line-height: 1.4;
}
.mobile-dropdown-section .mobile-dropdown-item strong {
  display: block;
  margin-bottom: 2px;
}
.mobile-dropdown-section .mobile-dropdown-item .dropdown-meta {
  font-size: 0.8em;
  opacity: 0.7;
  font-weight: 600;
  display: block;
}
.mobile-dropdown-section .mobile-dropdown-item:hover {
  background-color: rgba(77, 45, 24, 0.08) !important;
  padding-left: 48px !important;
  color: #6e4c2f !important;
}

.hero-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.hero-glass-card {
  position: relative;
  z-index: 2;
  background-color: #fcf8f3;
  background-image: linear-gradient(rgba(252, 248, 243, 0.85), rgba(252, 248, 243, 0.85)), url("../img-core/meeple-watercolour.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid #d4a76a;
  outline: 6px solid rgba(212, 167, 106, 0.15);
  outline-offset: -12px;
  padding: 40px;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .hero-glass-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    border-radius: 20px;
    outline: none;
    gap: 20px;
  }
}

.hero-mascot {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  box-shadow: none;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}
@media (max-width: 768px) {
  .hero-mascot {
    width: 120px;
    margin-bottom: 10px;
  }
}

.hero-content {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.hero-content h1,
.hero-content h2,
.hero-content h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #6e4c2f;
  border-bottom: none;
  padding-bottom: 0;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  line-height: 1.2;
}
.hero-content p {
  margin-bottom: 0;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .hero-content h1, .hero-content h2, .hero-content h3 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    margin-bottom: 15px;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
}

.featured-post {
  height: 400px;
  margin: 5px 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.featured-post h2 {
  bottom: 0;
  margin: 0;
  padding: 10px;
  position: absolute;
}

.featured-post h2 span {
  display: inline-block;
  color: white;
  font: 700 24px/45px "Quicksand", "Inter", "Roboto", sans-serif;
  letter-spacing: -1px;
  background: rgb(0, 0, 0); /* fallback color */
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
}

.featured-post span a {
  color: white;
}

.featured-post h1 {
  margin: 10px;
}

/*
  Pagination
*/
.pagination {
  text-align: center;
}

.pagination a {
  text-decoration: none;
}

.pagination-button {
  color: #4d2d18;
  background-color: #f3d19e;
  border: 3px solid #4d2d18;
  padding: 12px 30px;
  margin: 10px 5px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none !important;
  box-shadow: 0 4px 0 #4d2d18;
}

.pagination-active:hover {
  background-color: #d4a76a;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #4d2d18;
  color: white;
}

.pagination-active:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 #4d2d18;
}

.featured-tournaments-group {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  box-sizing: border-box;
  background-color: #fcf8f3;
  border: 4px solid #4d2d18;
  border-radius: 16px;
  overflow: visible;
  box-shadow: none !important;
  position: relative;
  padding: 20px 0 0;
}
.featured-tournaments-group .badge-tournament-group {
  background-color: #d4af37;
  color: #4d2d18;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(0.6rem, 2vw, 0.75rem);
  letter-spacing: 1px;
  border: 3px solid #4d2d18;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: max-content;
  max-width: 90vw;
}
@media (max-width: 480px) {
  .featured-tournaments-group .badge-tournament-group {
    padding: 5px 24px;
    letter-spacing: 0.5px;
  }
}
.featured-tournaments-group .badge-tournament-group i {
  margin-right: 6px;
}
.featured-tournaments-group .badge-tournament-group:hover {
  background-color: #f1c40f;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.featured-tournaments-group .tournament-items {
  padding: 12px 24px 6px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .featured-tournaments-group .tournament-items {
    padding: 12px 16px 6px;
  }
}
.featured-tournaments-group .tournament-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 12px;
  margin: 0 -12px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(77, 45, 24, 0.1);
  gap: 12px;
  text-align: left;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.featured-tournaments-group .tournament-item:hover {
  background: rgba(243, 209, 158, 0.3);
}
.featured-tournaments-group .tournament-item:last-child {
  border-bottom: none;
}
.featured-tournaments-group .tournament-item .item-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-grow: 1;
  min-width: 0;
}
.featured-tournaments-group .tournament-item .item-title {
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.1rem);
  margin: 0;
  line-height: 1.4;
}
.featured-tournaments-group .tournament-item .item-title a {
  color: #4d2d18;
  text-decoration: none;
}
.featured-tournaments-group .tournament-item .item-title a:hover {
  text-decoration: underline;
}
.featured-tournaments-group .tournament-item .item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  font-weight: 700;
  color: #d4a76a;
  font-style: italic;
  flex-wrap: wrap;
}
.featured-tournaments-group .tournament-item .item-meta i {
  color: #d4a76a;
  font-size: 0.75rem;
}
.featured-tournaments-group .tournament-item .tournament-action-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.05);
  color: #d4a76a !important;
  border: 3px solid #d4a76a;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.featured-tournaments-group .tournament-item .tournament-action-button:hover {
  background: rgba(212, 167, 106, 0.15);
  color: #6e4c2f !important;
  border-color: #6e4c2f;
}
.featured-tournaments-group .tournament-item .tournament-action-button.active {
  background-color: #d4af37;
  color: #4d2d18 !important;
  border-color: #927521;
  box-shadow: 2px 2px 0 #927521;
}
.featured-tournaments-group .tournament-item .tournament-action-button.active:hover {
  background-color: #f1c40f;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 #927521;
}
@media (max-width: 768px) {
  .featured-tournaments-group .tournament-item {
    display: block;
    padding: 16px 12px;
    text-align: center;
  }
  .featured-tournaments-group .tournament-item .item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 4px;
  }
  .featured-tournaments-group .tournament-item .item-title {
    margin-bottom: 0;
    white-space: normal;
  }
  .featured-tournaments-group .tournament-item .item-meta {
    justify-content: center;
  }
  .featured-tournaments-group .tournament-item .item-actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .featured-tournaments-group .tournament-item .item-actions .tournament-action-button {
    width: auto;
  }
}

.next-gathering-card {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  background: #f4f0fa;
  border: 4px solid #4d2d18;
  border-radius: 16px;
  display: block;
  position: relative;
  overflow: visible;
  box-shadow: none !important;
}
.next-gathering-card .badge-gathering {
  background-color: #5d4485;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(0.6rem, 2vw, 0.75rem);
  letter-spacing: 1px;
  border: 3px solid #4d2d18;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-radius: 4px;
  color: white;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: max-content;
  max-width: 90vw;
}
@media (max-width: 480px) {
  .next-gathering-card .badge-gathering {
    padding: 3px 8px;
    letter-spacing: 0.5px;
  }
}
.next-gathering-card .badge-gathering i {
  margin-right: 6px;
  color: #e8e0f0;
}
.next-gathering-card .card-content {
  padding: 30px 24px 14px;
}
@media (max-width: 768px) {
  .next-gathering-card .card-content {
    padding: 35px 16px 16px;
  }
}
.next-gathering-card .gathering-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .next-gathering-card .gathering-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
.next-gathering-card .gathering-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .next-gathering-card .gathering-info {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
}
.next-gathering-card .gathering-info .event-title {
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin: 0;
  color: #3b2b5a;
  line-height: 1.4;
  word-break: break-word;
}
.next-gathering-card .gathering-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6a5a8a;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-style: italic;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .next-gathering-card .gathering-meta {
    justify-content: center;
  }
}
.next-gathering-card .gathering-meta i {
  color: #8e7caf;
  font-size: 0.8rem;
}
.next-gathering-card .gathering-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: #5d4485;
  color: white !important;
  text-decoration: none !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 3px solid #2d1b4e;
  box-shadow: 2px 2px 0 #2d1b4e;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}
.next-gathering-card .gathering-button:hover {
  background-color: #7b5eb1;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 #2d1b4e;
}
.next-gathering-card .gathering-button:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0 #2d1b4e;
}
.next-gathering-card .gathering-button i {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .next-gathering-card .gathering-button {
    width: auto;
    min-width: 160px;
    margin-top: 2px;
  }
}

.home-updates-section {
  width: 100%;
  max-width: none;
  margin: 80px auto 40px;
}
.home-updates-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #6e4c2f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 15px;
}
.home-updates-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #d4a76a;
  border-radius: 2px;
}

.view-all-container {
  text-align: center;
  margin-top: 50px;
}

.page-content {
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  padding: 40px 40px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fcf8f3;
  background-image: linear-gradient(rgba(252, 248, 243, 0.85), rgba(252, 248, 243, 0.85)), url("../img-core/meeple-watercolour.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 4px solid #4d2d18;
  border-bottom: 7px solid #4d2d18;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), inset 0 2.5px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  /*
  @media (max-width: $tablet-width) {
    .page-content {
      padding: 25px 20px;
      border-radius: 20px; <--- This is very round on mobile!
      outline: none; // Save space on mobile
    }
  }
  */
  border-radius: 16px;
}

@media (max-width: 768px) {
  .page-content {
    padding: 25px 20px 15px;
    outline: none;
  }
}
.page-content {
  overflow: hidden;
}
.page-content article > *:last-child {
  margin-bottom: 0;
}

.page-content h1 {
  background-color: #d4a76a;
  background-image: radial-gradient(circle at 12px 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(circle at calc(100% - 12px) 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(ellipse at 20% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), radial-gradient(ellipse at 80% 60%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.03) 1.5px, transparent 2px), linear-gradient(to bottom, #f3d19e 0%, #d4a76a 50%, rgb(202.8625, 148.3, 74.3375) 100%);
  background-size: 100% 100%, 100% 100%, 300px 50px, 400px 60px, 100% 4px, 100% 100%;
  background-repeat: no-repeat, no-repeat, repeat-x, repeat-x, repeat, no-repeat;
  color: #4d2d18;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  border: none;
  border-bottom: 2px solid rgba(77, 45, 24, 0.15);
  box-shadow: none;
  margin: -40px -40px 0 -40px;
  padding: 10px 40px;
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  line-height: 1.1;
  text-align: center;
  color: #333333;
}

@media (max-width: 768px) {
  .page-content h1 {
    font-size: 1.1rem;
    margin: -25px -20px 0 -20px;
    padding: 10px 25px;
  }
}
.page-events-content {
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  padding: 40px 40px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fcf8f3;
  background-image: linear-gradient(rgba(252, 248, 243, 0.85), rgba(252, 248, 243, 0.85)), url("../img-core/meeple-watercolour.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 4px solid #4d2d18;
  border-bottom: 7px solid #4d2d18;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), inset 0 2.5px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-events-content {
    padding: 25px 20px 15px;
  }
}
.page-events-content > *:last-child {
  margin-bottom: 0;
}

.page-events-content h1 {
  background-color: #d4a76a;
  background-image: radial-gradient(circle at 12px 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(circle at calc(100% - 12px) 50%, rgba(0, 0, 0, 0.4) 2.5px, transparent 3.5px), radial-gradient(ellipse at 20% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), radial-gradient(ellipse at 80% 60%, rgba(0, 0, 0, 0.05) 0%, transparent 60%), repeating-linear-gradient(to bottom, transparent, transparent 1px, rgba(0, 0, 0, 0.03) 1.5px, transparent 2px), linear-gradient(to bottom, #f3d19e 0%, #d4a76a 50%, rgb(202.8625, 148.3, 74.3375) 100%);
  background-size: 100% 100%, 100% 100%, 300px 50px, 400px 60px, 100% 4px, 100% 100%;
  background-repeat: no-repeat, no-repeat, repeat-x, repeat-x, repeat, no-repeat;
  border-bottom: 2px solid rgba(77, 45, 24, 0.15);
  margin: -40px -40px 0 -40px;
  padding: 10px 40px;
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  line-height: 1.1;
  text-align: center;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .page-events-content h1 {
    font-size: 1.1rem;
    margin: -25px -20px 0 -20px;
    padding: 10px 25px;
  }
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 50px 40px;
  margin-top: 50px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.event-card-wrapper {
  height: 100%;
}

.event-card {
  background: #fdf6e3;
  border: 4px solid #4d2d18;
  border-radius: 4px;
  position: relative;
  box-shadow: 6px 6px 0 #d4a76a;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 #d4a76a;
  z-index: 5;
}

.card-header-badge {
  background: #e67e22;
  color: white;
  position: absolute;
  top: -16px;
  left: 16px;
  padding: 8px 21px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  letter-spacing: 1px;
  border: 3px solid #4d2d18;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  z-index: 10;
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
  border-radius: 4px;
  white-space: nowrap;
  width: max-content;
  max-width: calc(100% - 32px);
}
@media (max-width: 480px) {
  .card-header-badge {
    padding: 6px 27px;
    letter-spacing: 0.5px;
  }
}
.card-header-badge.badge-tournament {
  background-color: #c0392b;
}
.card-header-badge.badge-social {
  background-color: #27ae60;
}

.card-content {
  padding: 35px 24px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-title {
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #4d2d18;
  line-height: 1.2;
  margin-bottom: 12px;
  margin-top: 5px;
}

.event-location {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-location i {
  color: #d4a76a;
  width: 16px;
  text-align: center;
}

.stat-block {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.stat-box {
  background: rgb(246.9, 236.1, 222.6);
  border: 2px solid #4d2d18;
  padding: 10px 8px;
  flex: 1;
  text-align: center;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #6e4c2f;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.stat-value {
  font-weight: 800;
  color: #2c3e50;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-action-button {
  background: rgba(212, 167, 106, 0.1);
  border: 1px dashed #d4a76a;
  width: 100%;
  padding: 8px;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.card-action-button span {
  font-weight: 800;
  color: #6e4c2f;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.card-action-button:hover {
  background: rgba(212, 167, 106, 0.25);
  border-style: solid;
  transform: translateY(-2px);
}

.registration-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #27ae60;
  color: white !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none !important;
  border: 3px solid #1e8449;
  box-shadow: 3px 3px 0 #1e8449;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.registration-button:hover {
  background-color: #2ecc71;
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 #1e8449;
}
.registration-button:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0 #1e8449;
}

.registration-deadline {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #c0392b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.registration-deadline i {
  font-size: 1rem;
}

.post-content {
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  padding: 40px 40px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fcf8f3;
  background-image: linear-gradient(rgba(252, 248, 243, 0.85), rgba(252, 248, 243, 0.85)), url("../img-core/meeple-watercolour.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #d4a76a;
  outline: 6px solid rgba(212, 167, 106, 0.15);
  outline-offset: -12px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.responsive-iframe-container {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #d4a76a;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.responsive-iframe-container iframe {
  width: 100% !important;
  border: none;
  display: block;
}

.shadow-container {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.minimal-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(212, 167, 106, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.minimal-card:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(212, 167, 106, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.minimal-card .card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
}
.minimal-card .card-header h1, .minimal-card .card-header h2, .minimal-card .card-header h3 {
  margin: 0 !important;
  font-size: 1.15rem;
  min-width: 0;
  flex: 0 1 auto;
}
.minimal-card .card-header .card-action {
  flex-shrink: 0;
}
.minimal-card .card-header .card-action .pagination-button {
  margin: 0 !important;
  padding: 6px 14px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.minimal-card .card-details {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
}
.minimal-card .card-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.minimal-card .card-label {
  width: 55px;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6e4c2f;
  opacity: 0.5;
  text-align: right;
  margin-top: 3px;
}
.minimal-card .card-label::after {
  content: ":";
}
.minimal-card .card-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
}
.minimal-card .card-value small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 400;
  margin-top: 2px;
}
.minimal-card .card-accent-footer {
  margin: 15px -20px -16px;
  padding: 12px 20px;
  background: rgba(212, 167, 106, 0.08);
  border-top: 1px solid rgba(212, 167, 106, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 8px 8px;
}
.minimal-card .card-accent-footer .card-footer-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6e4c2f;
  opacity: 0.8;
}
.minimal-card .card-accent-footer .pagination-button {
  margin: 0 !important;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2vw, 18px) !important;
  font-size: clamp(0.7rem, 1.8vw, 0.8rem) !important;
}

@media (max-width: 768px) {
  .minimal-card {
    padding: 15px;
  }
  .minimal-card .card-accent-footer {
    margin: 12px -15px -15px;
    padding: 10px 15px;
  }
  .minimal-card .card-header {
    gap: 10px;
    margin-bottom: 12px;
  }
  .minimal-card .card-header h1, .minimal-card .card-header h2, .minimal-card .card-header h3 {
    font-size: 1.1rem;
  }
  .minimal-card .card-details {
    column-gap: 20px;
  }
  .minimal-card .card-label {
    width: 50px;
    font-size: 0.6rem;
  }
  .minimal-card .card-value {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .minimal-card .card-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .minimal-card .card-header h1, .minimal-card .card-header h2, .minimal-card .card-header h3 {
    width: auto;
    min-width: 0;
  }
  .minimal-card .card-header .card-action {
    width: auto;
  }
  .minimal-card .card-header .card-action .pagination-button {
    display: inline-block;
    text-align: center;
    padding: 6px 12px !important;
  }
  .minimal-card .card-details {
    flex-direction: column;
    gap: 6px;
  }
  .minimal-card .card-label {
    width: 45px;
  }
}
.post-date {
  display: block;
  margin-bottom: 2rem;
  color: #d4a76a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.featured-image img {
  margin: 0;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .post-content {
    padding: 25px 20px 15px;
    border-radius: 20px;
    outline: none;
  }
}
.post-content article > *:last-child {
  margin-bottom: 0;
}

.post-share {
  padding-bottom: 1rem;
}

.sharing-icons a {
  padding-right: 10px;
}

/*
  Related Posts
*/
.related {
  padding-bottom: 1rem;
}

.related ul, ol, dl {
  margin: 0px;
}

.related-posts {
  padding: 10px 0px 10px;
  list-style: none;
  display: inline-block;
}

.related-thumbnail {
  position: relative;
  width: 600px;
  height: 200px;
  overflow: hidden;
}

.related img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  width: 600px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.related-title {
  float: right;
  padding-bottom: 0.5rem;
  font-family: "Quicksand", "Inter", "Roboto", sans-serif;
}

@media (max-width: 1200px) {
  .related-thumbnail {
    width: 60vw;
  }
}
@media (max-width: 768px) {
  .related-thumbnail {
    width: 95vw;
  }
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0 0 0;
}

.infinite-scroll-status,
.infinite-scroll-fallback {
  text-align: center;
}
.infinite-scroll-status:empty,
.infinite-scroll-fallback:empty {
  display: none;
  margin: 0;
  padding: 0;
}
.infinite-scroll-status:not(:empty),
.infinite-scroll-fallback:not(:empty) {
  margin-top: 30px;
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #d4a76a;
  background-color: #fcf8f3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: #d4a76a;
}
.post-card:hover .post-card-image {
  transform: scale(1.05);
}

.post-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #f3d19e;
  border-bottom: 2px solid rgba(212, 167, 106, 0.2);
}

.post-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.post-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 1px, transparent 1px, transparent 2px);
  background-size: 3px 3px;
}

.post-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #d4a76a;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.post-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #6e4c2f;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.post-card-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed rgba(212, 167, 106, 0.4);
  text-align: right;
}
.post-card-footer span {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f3d19e;
  border: 2px solid #4d2d18;
  border-radius: 6px;
  color: #4d2d18;
  font-size: 0.8rem;
  font-weight: 800;
  transition: all 0.2s ease;
  box-shadow: 0 2px 0 #4d2d18;
}
.post-card-footer span::after {
  content: " →";
  transition: margin-left 0.2s;
}

.post-card:hover .post-card-footer span {
  background-color: #d4a76a;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #4d2d18;
}
.post-card:hover .post-card-footer span::after {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.fa-envelope {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-envelope:hover {
  color: #f39c12;
}

.fa-twitter {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-twitter:hover {
  color: #00aced;
}

.fa-instagram {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-instagram:hover {
  color: #375989;
}

.fa-github {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-github:hover {
  color: #343434;
}

.fa-linkedin {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-linkedin:hover {
  color: #0073a4;
}

.fa-facebook {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-facebook:hover {
  color: #3d5b99;
}

.fa-google-plus {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-google-plus:hover {
  color: #e64a41;
}

.fa-pinterest {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-pinterest:hover {
  color: #bd081c;
}

.fa-medium {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-medium:hover {
  color: #00ab6c;
}

.fa-codepen {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-codepen:hover {
  color: black;
}

.fa-rss-square {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-rss-square:hover {
  color: #ff6600;
}

.fa-discord {
  padding: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.fa-discord:hover {
  color: #5865F2;
}

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