:root {
  --rc-forest: #17362b;
  --rc-forest-2: #244c3d;
  --rc-sage: #6d8b78;
  --rc-mint: #e9f1eb;
  --rc-cream: #fbf7ef;
  --rc-cream-2: #f4eadb;
  --rc-gold: #d8a84a;
  --rc-gold-soft: #f7e6bf;
  --rc-coral: #bd6758;
  --rc-ink: #20332b;
  --rc-muted: #68776f;
  --rc-line: rgba(32, 51, 43, 0.12);
  --rc-white: #fffdf8;
  --rc-shadow: 0 22px 60px rgba(24, 54, 43, 0.12);
  --rc-shadow-soft: 0 14px 34px rgba(24, 54, 43, 0.08);
  --rc-radius-lg: 34px;
  --rc-radius-md: 22px;
  --rc-radius-sm: 14px;
  --rc-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(216, 168, 74, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(109, 139, 120, 0.22), transparent 38rem),
    linear-gradient(180deg, #fffaf2 0%, var(--rc-cream) 46%, #fffdf8 100%);
  color: var(--rc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .rc-header {
  top: 32px;
}

a {
  color: var(--rc-forest);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: #0d241c;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--rc-forest);
  color: #fff;
  border-radius: 999px;
}

.rc-container {
  width: min(calc(100% - 40px), var(--rc-container));
  margin-inline: auto;
}

.rc-site {
  min-height: 100vh;
  overflow-x: clip;
}

.rc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 51, 43, 0.08);
}

.rc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 18px 0;
}

.rc-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.rc-logo img,
.custom-logo {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 72px;
}

.rc-logo-mark {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rc-forest), var(--rc-sage));
  box-shadow: var(--rc-shadow-soft);
  text-decoration: none;
}

.rc-logo-cross,
.rc-logo-cross::before,
.rc-logo-cross::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 999px;
  background: var(--rc-gold);
}

.rc-logo-cross {
  width: 6px;
  height: 34px;
  transform: rotate(6deg);
}

.rc-logo-cross::before {
  left: -14px;
  top: 10px;
  width: 34px;
  height: 5px;
  transform: rotate(-8deg);
}

.rc-logo-cross::after {
  left: -6px;
  top: 17px;
  width: 34px;
  height: 5px;
  background: var(--rc-coral);
  transform: rotate(-14deg);
}

.rc-site-title-wrap {
  min-width: 0;
}

.rc-site-title {
  margin: 0;
  color: var(--rc-forest);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.rc-site-title a {
  color: inherit;
  text-decoration: none;
}

.rc-site-description {
  margin: 0.2rem 0 0;
  color: var(--rc-muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.rc-nav {
  display: flex;
  align-items: center;
}

.rc-nav ul,
.rc-footer-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-nav li {
  position: relative;
}

.rc-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--rc-forest);
  font-weight: 720;
  font-size: 0.96rem;
  line-height: 1;
  text-decoration: none;
}

.rc-nav a:hover,
.rc-nav a:focus,
.rc-nav .current-menu-item > a,
.rc-nav .current_page_item > a {
  background: var(--rc-mint);
}

.rc-nav .sub-menu,
.rc-nav .children {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: block;
  min-width: 220px;
  padding: 10px;
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  border-radius: 18px;
  box-shadow: var(--rc-shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.rc-nav li:hover > .sub-menu,
.rc-nav li:focus-within > .sub-menu,
.rc-nav li:hover > .children,
.rc-nav li:focus-within > .children {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.rc-nav .sub-menu a,
.rc-nav .children a {
  justify-content: flex-start;
  width: 100%;
  border-radius: 12px;
}

.rc-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--rc-line);
  border-radius: 14px;
  background: var(--rc-white);
  cursor: pointer;
}

.rc-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--rc-forest);
  border-radius: 999px;
}

.rc-main {
  padding: 34px 0 64px;
}

.rc-front-page {
  padding-top: 0;
}

.rc-hero {
  position: relative;
  padding: clamp(46px, 7vw, 96px) 0 clamp(38px, 6vw, 72px);
}

.rc-hero::before {
  position: absolute;
  inset: 26px 0 auto 0;
  width: min(860px, 76vw);
  height: 420px;
  margin-inline: auto;
  content: "";
  border-radius: 999px;
  background: rgba(216, 168, 74, 0.13);
  filter: blur(50px);
  pointer-events: none;
}

.rc-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.rc-pill,
.rc-section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(216, 168, 74, 0.38);
  border-radius: 999px;
  background: rgba(247, 230, 191, 0.62);
  color: #75581a;
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1.2;
}

.rc-hero h1,
.rc-entry-header h1,
.rc-page-header h1 {
  margin: 0;
  color: var(--rc-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.rc-hero p {
  max-width: 670px;
  margin: 1.35rem 0 0;
  color: var(--rc-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.rc-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.rc-button,
.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.rc-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.rc-button-primary,
.wp-block-button__link,
input[type="submit"] {
  background: var(--rc-forest);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(23, 54, 43, 0.18);
}

.rc-button-primary:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
  background: #0f2a21;
}

.rc-button-secondary {
  background: rgba(255, 253, 248, 0.82);
  color: var(--rc-forest);
  border-color: var(--rc-line);
}

.rc-button-secondary:hover {
  background: var(--rc-white);
  box-shadow: var(--rc-shadow-soft);
}

.rc-hero-card {
  position: relative;
  min-height: clamp(340px, 42vw, 540px);
  overflow: hidden;
  border: 12px solid rgba(255, 253, 248, 0.78);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(23, 54, 43, 0.1), rgba(216, 168, 74, 0.12)),
    var(--rc-mint);
  box-shadow: var(--rc-shadow);
}

.rc-hero-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.rc-hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(23, 54, 43, 0.32));
  pointer-events: none;
}

.rc-hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 168, 74, 0.42), transparent 140px),
    linear-gradient(180deg, #edf4ee 0%, #dfece3 58%, #b8cdbd 100%);
}

.rc-sun {
  position: absolute;
  top: 48px;
  right: 58px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(216, 168, 74, 0.42);
  filter: blur(2px);
}

.rc-window {
  position: absolute;
  top: 112px;
  width: 74px;
  height: 160px;
  border: 10px solid rgba(23, 54, 43, 0.24);
  border-radius: 70px 70px 10px 10px;
  background: rgba(255, 253, 248, 0.42);
}

.rc-window-1 { left: 28%; }
.rc-window-2 { left: 52%; height: 190px; }

.rc-bench {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 20px;
  border-radius: 999px;
  background: rgba(23, 54, 43, 0.62);
  transform: skewY(-4deg);
}

.rc-bench-1 { bottom: 118px; }
.rc-bench-2 { bottom: 78px; left: 16%; }
.rc-bench-3 { bottom: 38px; left: 22%; }

.rc-hero-mini-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(240px, calc(100% - 44px));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--rc-shadow-soft);
  backdrop-filter: blur(12px);
}

.rc-hero-mini-card strong {
  color: var(--rc-forest);
}

.rc-hero-mini-card span {
  color: var(--rc-muted);
  font-size: 0.92rem;
}

.rc-section {
  padding: clamp(42px, 7vw, 88px) 0;
}

.rc-two-column,
.rc-about-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.74fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.rc-section h2,
.rc-content-card h1,
.rc-content-card h2,
.rc-post-card h2,
.widget-title {
  margin: 0 0 1rem;
  color: var(--rc-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.rc-section p {
  margin-top: 0;
  color: var(--rc-muted);
}

.rc-live-card,
.rc-content-card,
.rc-post-card,
.rc-sidebar .widget,
.rc-agenda-widget-wrap,
.rc-empty-state {
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-lg);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--rc-shadow-soft);
}

.rc-live-card {
  padding: clamp(24px, 4vw, 38px);
}

.rc-live-card h3 {
  margin: 0.9rem 0 0.5rem;
  color: var(--rc-forest);
  font-size: 1.45rem;
  line-height: 1.2;
}

.rc-play-icon {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--rc-forest);
  box-shadow: 0 12px 24px rgba(23, 54, 43, 0.18);
}

.rc-play-icon::after {
  position: absolute;
  left: 25px;
  top: 19px;
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid #fff;
}

.rc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--rc-forest);
  font-weight: 780;
  text-decoration: none;
}

.rc-link-arrow:hover {
  text-decoration: underline;
}

.rc-agenda-section {
  background:
    linear-gradient(180deg, rgba(233, 241, 235, 0.58), rgba(255, 253, 248, 0.42));
}

.rc-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.rc-section-header h2 {
  margin-bottom: 0;
}

.rc-agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rc-event-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  min-height: 230px;
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-md);
  background: var(--rc-white);
  box-shadow: var(--rc-shadow-soft);
}

.rc-event-date {
  display: grid;
  align-content: center;
  justify-items: center;
  align-self: start;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: var(--rc-mint);
  color: var(--rc-forest);
}

.rc-event-date strong {
  font-size: 1.55rem;
  line-height: 1;
}

.rc-event-date span {
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.rc-event-content p,
.rc-event-content span {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.96rem;
}

.rc-event-content h3 {
  margin: 0.45rem 0 0.6rem;
  color: var(--rc-forest);
  font-size: 1.22rem;
  line-height: 1.2;
}

.rc-about-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(216, 168, 74, 0.22);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 168, 74, 0.18), transparent 210px),
    var(--rc-white);
  box-shadow: var(--rc-shadow-soft);
}

.rc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 30px;
  align-items: start;
}

.rc-content-card,
.rc-post-card,
.rc-empty-state {
  padding: clamp(24px, 4vw, 46px);
}

.rc-page-card {
  min-width: 0;
}

.rc-entry-header {
  margin-bottom: 1.25rem;
}

.rc-entry-header h1,
.rc-page-header h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.rc-entry-meta {
  margin-top: 0.7rem;
  color: var(--rc-muted);
  font-size: 0.92rem;
}

.rc-entry-meta a {
  color: inherit;
}

.rc-entry-content > *:first-child {
  margin-top: 0;
}

.rc-entry-content > *:last-child {
  margin-bottom: 0;
}

.rc-entry-content h2,
.rc-entry-content h3,
.rc-entry-content h4 {
  color: var(--rc-forest);
  line-height: 1.2;
}

.rc-entry-content h2 {
  margin-top: 2.1rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.rc-entry-content h3 {
  margin-top: 1.8rem;
  font-size: 1.45rem;
}

.rc-entry-content p,
.rc-entry-content li {
  color: var(--rc-ink);
}

.rc-entry-content a:not(.wp-block-button__link) {
  font-weight: 700;
}

.rc-entry-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

.rc-entry-content th,
.rc-entry-content td {
  padding: 0.85rem;
  border: 1px solid var(--rc-line);
}

.rc-entry-content th {
  background: var(--rc-mint);
  color: var(--rc-forest);
  text-align: left;
}

.rc-featured-image {
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 24px;
}

.rc-featured-image img {
  display: block;
  width: 100%;
}

.rc-content-list {
  display: grid;
  gap: 22px;
}

.rc-page-header {
  margin-bottom: 0;
  padding: 28px;
  border-radius: var(--rc-radius-lg);
  background: rgba(255, 253, 248, 0.62);
}

.rc-post-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
}

.rc-post-thumb {
  overflow: hidden;
  border-radius: 24px;
  background: var(--rc-mint);
}

.rc-post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-post-body h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.rc-post-body h2 a {
  color: inherit;
  text-decoration: none;
}

.rc-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.rc-sidebar .widget {
  padding: 22px;
}

.rc-sidebar .widget-title,
.rc-footer .widget-title,
.rc-home-agenda-widget .widget-title {
  margin: 0 0 0.9rem;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.rc-sidebar ul,
.rc-home-agenda-widget ul {
  margin: 0;
  padding-left: 1.1rem;
}

.rc-sidebar li,
.rc-home-agenda-widget li {
  margin-bottom: 0.55rem;
}

.rc-agenda-widget-wrap {
  padding: clamp(18px, 3vw, 30px);
}

.rc-agenda-widget-wrap .widget {
  margin: 0;
}

.rc-footer {
  margin-top: 24px;
  padding: 64px 0 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 168, 74, 0.2), transparent 260px),
    linear-gradient(135deg, #122a22, var(--rc-forest));
  color: rgba(255, 255, 255, 0.84);
}

.rc-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.6fr) minmax(180px, 0.6fr);
  gap: clamp(28px, 5vw, 70px);
}

.rc-footer h2,
.rc-footer h3 {
  margin: 0 0 0.9rem;
  color: #fff;
  line-height: 1.15;
}

.rc-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.rc-footer p {
  margin: 0;
}

.rc-footer a {
  color: #fff;
}

.rc-footer-menu {
  display: grid;
  gap: 0.55rem;
  align-items: start;
}

.rc-footer-menu a {
  text-decoration: none;
}

.rc-footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

form input[type="text"],
form input[type="email"],
form input[type="search"],
form input[type="url"],
form input[type="tel"],
form input[type="password"],
form textarea,
form select {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--rc-line);
  border-radius: 14px;
  background: var(--rc-white);
  color: var(--rc-ink);
}

form textarea {
  min-height: 140px;
}

.search-form {
  display: flex;
  gap: 0.55rem;
}

.search-form label {
  flex: 1;
}

.navigation.pagination,
.rc-pagination {
  color: var(--rc-forest);
}

.wp-block-cover,
.wp-block-group,
.wp-block-media-text,
.wp-block-columns {
  border-radius: var(--rc-radius-md);
}

.alignwide {
  max-width: min(100%, 1080px);
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 980px) {
  body.admin-bar .rc-header {
    top: 46px;
  }

  .rc-menu-toggle {
    display: block;
  }

  .rc-nav {
    position: fixed;
    inset: 84px 20px auto 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--rc-line);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--rc-shadow);
  }

  .rc-menu-open .rc-nav {
    display: block;
  }

  .rc-nav ul,
  .rc-nav .menu {
    display: grid;
    gap: 4px;
    width: 100%;
  }

  .rc-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
  }

  .rc-nav .sub-menu,
  .rc-nav .children {
    position: static;
    display: grid;
    margin-left: 0.8rem;
    padding: 4px 0 4px 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .rc-hero-grid,
  .rc-two-column,
  .rc-about-card,
  .rc-layout,
  .rc-footer-grid {
    grid-template-columns: 1fr;
  }

  .rc-sidebar {
    position: static;
  }

  .rc-agenda-grid {
    grid-template-columns: 1fr;
  }

  .rc-hero-card {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .rc-container {
    width: min(calc(100% - 28px), var(--rc-container));
  }

  .rc-header-inner {
    padding: 12px 0;
  }

  .rc-site-description {
    display: none;
  }

  .rc-logo img,
  .custom-logo {
    max-width: 200px;
    max-height: 58px;
  }

  .rc-logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .rc-nav {
    inset: 74px 14px auto 14px;
  }

  .rc-hero {
    padding-top: 34px;
  }

  .rc-hero h1 {
    font-size: clamp(2.6rem, 17vw, 4.5rem);
  }

  .rc-button-row,
  .search-form {
    display: grid;
  }

  .rc-button,
  .wp-block-button__link,
  button,
  input[type="submit"] {
    width: 100%;
  }

  .rc-section-header {
    display: grid;
    align-items: start;
  }

  .rc-event-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .rc-event-date {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .rc-post-card {
    grid-template-columns: 1fr;
  }

  .rc-post-thumb img {
    max-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ==========================================================
   Versie 1.1 — rustigere Lovable-stijl
   Minder grote titels, zachtere achtergronden en rustigere cards.
   ========================================================== */

:root {
  --rc-forest: #17382d;
  --rc-forest-2: #23473a;
  --rc-sage: #748a7d;
  --rc-mint: #edf3ee;
  --rc-cream: #fbf6ed;
  --rc-cream-2: #f7efe2;
  --rc-gold: #d4a94f;
  --rc-gold-soft: #f8e9c8;
  --rc-ink: #22362d;
  --rc-muted: #697a72;
  --rc-line: rgba(34, 54, 45, 0.10);
  --rc-white: #fffdf9;
  --rc-shadow: 0 18px 42px rgba(24, 54, 43, 0.09);
  --rc-shadow-soft: 0 10px 24px rgba(24, 54, 43, 0.055);
  --rc-radius-lg: 28px;
  --rc-radius-md: 20px;
  --rc-radius-sm: 13px;
  --rc-container: 1120px;
}

body {
  background:
    radial-gradient(circle at 18% 4%, rgba(216, 168, 74, 0.10), transparent 30rem),
    radial-gradient(circle at 86% 0%, rgba(109, 139, 120, 0.12), transparent 34rem),
    linear-gradient(180deg, #fffaf3 0%, var(--rc-cream) 42%, #fffdf9 100%);
  font-size: 17px;
  line-height: 1.68;
}

.rc-container {
  width: min(calc(100% - 44px), var(--rc-container));
}

.rc-header {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
}

.rc-header-inner {
  min-height: 74px;
  padding: 10px 0;
}

.rc-branding {
  gap: 12px;
}

.rc-logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(24, 54, 43, 0.10);
}

.rc-logo img,
.custom-logo {
  max-width: 230px;
  max-height: 60px;
}

.rc-site-title {
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  letter-spacing: -0.025em;
}

.rc-site-description {
  margin-top: 0.12rem;
  font-size: 0.86rem;
}

.rc-nav ul,
.rc-footer-menu {
  gap: 4px;
}

.rc-nav a {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 730;
}

/* Verberg het WordPress frontend-bewerkicoon in de header als je bent ingelogd. */
.rc-header .edit-link,
.rc-header .post-edit-link,
.rc-nav .edit-link,
.rc-nav .post-edit-link {
  display: none !important;
}

.rc-main {
  padding-bottom: 54px;
}

.rc-hero {
  padding: clamp(42px, 6vw, 74px) 0 clamp(46px, 6vw, 78px);
}

.rc-hero::before {
  inset: 54px 0 auto 0;
  width: min(720px, 70vw);
  height: 320px;
  background: rgba(216, 168, 74, 0.075);
  filter: blur(70px);
}

.rc-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
}

.rc-hero-copy {
  max-width: 650px;
}

.rc-pill,
.rc-section-label {
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.68rem;
  background: rgba(248, 233, 200, 0.46);
  color: #755a21;
  font-size: 0.78rem;
  font-weight: 750;
}

.rc-hero h1,
.rc-entry-header h1,
.rc-page-header h1 {
  font-size: clamp(2.45rem, 5.45vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.rc-hero p {
  max-width: 580px;
  margin-top: 1.15rem;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.72;
}

.rc-button-row {
  gap: 0.72rem;
  margin-top: 1.65rem;
}

.rc-button,
.wp-block-button__link,
button,
input[type="submit"] {
  min-height: 46px;
  padding: 0.72rem 1.12rem;
  font-size: 0.95rem;
  box-shadow: none;
}

.rc-button-primary,
.wp-block-button__link,
input[type="submit"] {
  box-shadow: 0 10px 20px rgba(23, 54, 43, 0.12);
}

.rc-button-secondary:hover,
.rc-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: none;
}

.rc-hero-card {
  min-height: clamp(300px, 35vw, 430px);
  border-width: 10px;
  border-radius: 34px;
  box-shadow: 0 18px 42px rgba(24, 54, 43, 0.10);
}

.rc-hero-art {
  background:
    radial-gradient(circle at 74% 20%, rgba(216, 168, 74, 0.30), transparent 112px),
    linear-gradient(180deg, #f0f5f0 0%, #e6eee8 56%, #bdd0c2 100%);
}

.rc-sun {
  top: 46px;
  right: 54px;
  width: 92px;
  height: 92px;
  opacity: 0.82;
}

.rc-window {
  top: 98px;
  width: 62px;
  height: 132px;
  border-width: 8px;
  opacity: 0.7;
}

.rc-window-2 {
  height: 158px;
}

.rc-bench {
  height: 16px;
  background: rgba(23, 54, 43, 0.50);
}

.rc-bench-1 { bottom: 96px; }
.rc-bench-2 { bottom: 64px; }
.rc-bench-3 { bottom: 34px; }

.rc-hero-mini-card {
  right: 18px;
  bottom: 18px;
  width: min(210px, calc(100% - 36px));
  padding: 0.82rem 0.9rem;
  border-radius: 17px;
  box-shadow: 0 10px 22px rgba(24, 54, 43, 0.08);
}

.rc-hero-mini-card strong {
  font-size: 0.98rem;
}

.rc-hero-mini-card span {
  font-size: 0.84rem;
}

.rc-section {
  padding: clamp(50px, 7vw, 82px) 0;
}

.rc-two-column,
.rc-about-card {
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.66fr);
  gap: clamp(30px, 6vw, 70px);
}

.rc-section h2,
.rc-content-card h1,
.rc-content-card h2,
.rc-post-card h2,
.widget-title {
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.rc-section p {
  max-width: 660px;
  line-height: 1.72;
}

.rc-live-card,
.rc-content-card,
.rc-post-card,
.rc-sidebar .widget,
.rc-agenda-widget-wrap,
.rc-empty-state {
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--rc-shadow-soft);
}

.rc-live-card {
  padding: clamp(22px, 3.5vw, 34px);
}

.rc-live-card h3 {
  margin-top: 0.85rem;
  font-size: 1.28rem;
}

.rc-play-icon {
  width: 54px;
  height: 54px;
  box-shadow: 0 10px 20px rgba(23, 54, 43, 0.12);
}

.rc-play-icon::after {
  left: 22px;
  top: 17px;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 15px;
}

.rc-agenda-section {
  background: linear-gradient(180deg, rgba(237, 243, 238, 0.44), rgba(255, 253, 249, 0.34));
}

.rc-section-header {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.rc-agenda-grid {
  gap: 16px;
}

.rc-event-card {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  min-height: 196px;
  padding: 18px;
  border-radius: 18px;
  box-shadow: none;
}

.rc-event-date {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.rc-event-date strong {
  font-size: 1.36rem;
}

.rc-event-date span {
  font-size: 0.68rem;
}

.rc-event-content h3 {
  font-size: 1.12rem;
}

.rc-event-content p,
.rc-event-content span {
  font-size: 0.92rem;
}

.rc-about-card {
  padding: clamp(26px, 4.2vw, 46px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 168, 74, 0.11), transparent 210px),
    rgba(255, 253, 249, 0.86);
}

.rc-content-card,
.rc-post-card,
.rc-empty-state {
  padding: clamp(22px, 3.4vw, 38px);
}

.rc-entry-header h1,
.rc-page-header h1 {
  font-size: clamp(2.05rem, 4vw, 3.45rem);
}

.rc-entry-content h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.rc-footer {
  margin-top: 18px;
  padding: 52px 0 22px;
}

.rc-footer h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

@media (max-width: 980px) {
  .rc-hero-grid,
  .rc-two-column,
  .rc-about-card,
  .rc-layout,
  .rc-footer-grid {
    grid-template-columns: 1fr;
  }

  .rc-hero-copy {
    max-width: 760px;
  }

  .rc-hero-card {
    min-height: 330px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16.5px;
  }

  .rc-container {
    width: min(calc(100% - 28px), var(--rc-container));
  }

  .rc-hero {
    padding-top: 30px;
  }

  .rc-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 1.05;
  }

  .rc-section h2,
  .rc-content-card h1,
  .rc-content-card h2,
  .rc-post-card h2,
  .widget-title {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .rc-button,
  .wp-block-button__link,
  button,
  input[type="submit"] {
    width: auto;
    min-height: 45px;
  }

  .rc-button-row,
  .search-form {
    display: flex;
  }

  .rc-hero-card {
    min-height: 280px;
    border-radius: 28px;
  }

  .rc-event-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: auto;
    padding: 15px;
  }

  .rc-event-date {
    width: 58px;
    height: 58px;
  }
}

/* v1.3: Agenda, meekijken and header live button */
.rc-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.rc-header-live-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(216, 168, 74, 0.45);
  background: var(--rc-forest);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(24, 54, 43, 0.16);
  white-space: nowrap;
}

.rc-header-live-button:hover,
.rc-header-live-button:focus {
  background: #0f2a21;
  color: #fff !important;
  transform: translateY(-1px);
}

.rc-live-dot {
  width: 0.55em;
  height: 0.55em;
  border-radius: 999px;
  background: #e95f4b;
  box-shadow: 0 0 0 5px rgba(233, 95, 75, 0.14);
}

.rc-special-page .rc-page-hero {
  padding: clamp(56px, 8vw, 104px) 0 clamp(22px, 4vw, 42px);
}

.rc-page-hero-simple .rc-page-hero-inner,
.rc-meekijken-hero .rc-page-hero-inner {
  max-width: 760px;
}

.rc-page-hero h1,
.rc-meekijken-hero h1 {
  margin: 0.2rem 0 1.05rem;
  color: var(--rc-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.rc-page-hero p,
.rc-meekijken-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--rc-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.rc-agenda-list-section {
  padding-top: clamp(30px, 5vw, 68px);
}

.rc-agenda-list-wrap {
  max-width: 980px;
}

.rc-agenda-list {
  display: grid;
  gap: 1rem;
}

.rc-event-card {
  text-decoration: none;
  color: inherit;
}

.rc-event-card-list {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  min-height: auto;
  padding: clamp(1.15rem, 2.8vw, 1.75rem);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-lg);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 14px 34px rgba(24, 54, 43, 0.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rc-event-card-list:hover,
.rc-event-card-list:focus {
  transform: translateY(-2px);
  border-color: rgba(216, 168, 74, 0.4);
  box-shadow: 0 18px 42px rgba(24, 54, 43, 0.09);
}

.rc-event-card-list .rc-event-date {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: var(--rc-gold-soft);
  border: 1px solid rgba(216, 168, 74, 0.46);
  color: var(--rc-forest);
}

.rc-event-card-list .rc-event-content {
  align-self: center;
}

.rc-event-meta {
  margin-top: 0 !important;
  margin-bottom: 0.35rem !important;
  color: var(--rc-muted);
  font-weight: 750;
}

.rc-event-desc {
  margin-bottom: 0.55rem !important;
}

.rc-event-location,
.rc-event-reading {
  display: block;
  margin-top: 0.25rem;
  color: var(--rc-muted);
}

.rc-event-location::before {
  content: "";
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: var(--rc-sage);
  vertical-align: 0.1em;
}

.rc-event-reading strong {
  color: var(--rc-forest);
  margin-right: 0.25rem;
}

.rc-meekijken-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.rc-video-card {
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-lg);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--rc-shadow-soft);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.rc-video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--rc-radius-lg) - 10px);
  background: linear-gradient(135deg, var(--rc-mint), var(--rc-cream-2));
}

.rc-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rc-video-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 0.65rem;
  text-align: center;
  color: var(--rc-forest);
  text-decoration: none;
  border-radius: calc(var(--rc-radius-lg) - 10px);
  background:
    radial-gradient(circle at 75% 20%, rgba(216,168,74,.28), transparent 12rem),
    linear-gradient(135deg, var(--rc-mint), var(--rc-cream-2));
}

.rc-video-placeholder strong {
  font-size: 1.2rem;
}

.rc-video-placeholder small {
  color: var(--rc-muted);
}

.rc-how-section {
  padding-top: clamp(28px, 5vw, 66px);
}

.rc-how-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-lg);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--rc-shadow-soft);
}

.rc-how-card h2 {
  margin: 0.35rem 0 0;
}

.rc-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rc-step;
  display: grid;
  gap: 0.85rem;
}

.rc-steps li {
  counter-increment: rc-step;
  position: relative;
  min-height: 52px;
  padding: 0.85rem 0.9rem 0.85rem 4rem;
  border: 1px solid rgba(32, 51, 43, 0.09);
  border-radius: var(--rc-radius-md);
  background: rgba(255,255,255,0.48);
  color: var(--rc-ink);
}

.rc-steps li::before {
  content: counter(rc-step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rc-forest);
  color: #fff;
  font-weight: 850;
}

.rc-empty-state {
  border: 1px dashed rgba(32,51,43,.23);
  background: rgba(255,253,248,.62);
  text-align: center;
}

.rc-empty-state h3 {
  margin-top: 0;
  color: var(--rc-forest);
}

.rc-empty-state p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--rc-muted);
}

@media (max-width: 980px) {
  .rc-header-actions {
    margin-left: auto;
  }

  .rc-header-live-button {
    display: none;
  }

  .rc-nav.toggled,
  .rc-header-actions .rc-nav.toggled {
    display: block;
  }

  .rc-meekijken-grid,
  .rc-how-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .rc-page-hero h1,
  .rc-meekijken-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .rc-event-card-list {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .rc-event-card-list .rc-event-date {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .rc-video-placeholder {
    min-height: 230px;
  }
}

/* v1.4: rustiger typografie, Libre Baskerville, complete agenda- en eventstyling */
.rc-hero h1,
.rc-page-hero h1,
.rc-meekijken-hero h1,
.rc-entry-header h1,
.rc-page-header h1,
.rc-section h2,
.rc-content-card h1,
.rc-content-card h2,
.rc-post-card h2,
.rc-footer h2,
.rc-how-card h2,
.rc-event-detail-page h1,
.rc-event-detail-page h2,
.tribe-events .tribe-events-calendar-list__event-title,
.tribe-events .tribe-events-single-event-title,
.em-event h1,
.em-event h2,
.mec-wrap h1,
.mec-wrap h2,
.mec-wrap h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
}

.rc-hero h1 {
  font-size: clamp(2rem, 4.65vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.rc-page-hero h1,
.rc-meekijken-hero h1,
.rc-entry-header h1,
.rc-page-header h1,
.rc-event-detail-page h1 {
  font-size: clamp(1.95rem, 3.9vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.rc-section h2,
.rc-content-card h1,
.rc-content-card h2,
.rc-post-card h2,
.widget-title,
.rc-how-card h2 {
  font-size: clamp(1.7rem, 2.75vw, 2.45rem);
  line-height: 1.16;
  letter-spacing: -0.026em;
}

.rc-footer h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
}

.rc-hero,
.rc-section,
.rc-special-page .rc-page-hero {
  isolation: isolate;
}

.rc-special-page .rc-page-hero,
.rc-event-detail-hero {
  padding-top: clamp(46px, 6.5vw, 84px);
  padding-bottom: clamp(18px, 3.8vw, 36px);
}

.rc-hero p,
.rc-page-hero p,
.rc-meekijken-hero p,
.rc-section p {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

/* Uniforme knopstijl voor thema, blokken en veelgebruikte agenda/event-plugins */
.rc-button,
.wp-block-button__link,
button:not(.rc-menu-toggle),
input[type="button"],
input[type="submit"],
input[type="reset"],
a.button,
.button,
.btn,
.em-button,
.em .button,
.em-search-submit,
.em-booking-submit,
.em-events-search-submit,
.tribe-common .tribe-common-c-btn,
.tribe-common .tribe-common-c-btn-border,
.tribe-events .tribe-events-c-search__button,
.tribe-events-button,
.tribe-events .tribe-events-c-subscribe-dropdown__button,
.tribe-events .tribe-events-c-top-bar__datepicker-button,
.tribe-events .tribe-events-c-nav__next,
.tribe-events .tribe-events-c-nav__prev,
.mec-wrap .mec-booking-button,
.mec-wrap a.mec-booking-button,
.mec-wrap .mec-totalcal-box .mec-totalcal-view span,
.eo-events-widget .read-more,
.eo-event-meta a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0.72rem 1.12rem !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: var(--rc-forest) !important;
  color: #fff !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.94rem !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(23, 54, 43, 0.12) !important;
  cursor: pointer !important;
  transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease !important;
}

.rc-button:hover,
.wp-block-button__link:hover,
button:not(.rc-menu-toggle):hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
a.button:hover,
.button:hover,
.btn:hover,
.em-button:hover,
.em .button:hover,
.em-search-submit:hover,
.em-booking-submit:hover,
.em-events-search-submit:hover,
.tribe-common .tribe-common-c-btn:hover,
.tribe-common .tribe-common-c-btn-border:hover,
.tribe-events .tribe-events-c-search__button:hover,
.tribe-events-button:hover,
.tribe-events .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-events .tribe-events-c-top-bar__datepicker-button:hover,
.tribe-events .tribe-events-c-nav__next:hover,
.tribe-events .tribe-events-c-nav__prev:hover,
.mec-wrap .mec-booking-button:hover,
.mec-wrap a.mec-booking-button:hover,
.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,
.eo-events-widget .read-more:hover,
.eo-event-meta a.button:hover {
  background: #0f2a21 !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(23, 54, 43, 0.16) !important;
  transform: none !important;
}

.rc-button-secondary,
.tribe-common .tribe-common-c-btn-border,
.tribe-events .tribe-events-c-top-bar__datepicker-button,
.tribe-events .tribe-events-c-nav__next,
.tribe-events .tribe-events-c-nav__prev {
  background: rgba(255, 253, 249, 0.82) !important;
  color: var(--rc-forest) !important;
  border-color: var(--rc-line) !important;
  box-shadow: none !important;
}

.rc-button-secondary:hover,
.tribe-common .tribe-common-c-btn-border:hover,
.tribe-events .tribe-events-c-top-bar__datepicker-button:hover,
.tribe-events .tribe-events-c-nav__next:hover,
.tribe-events .tribe-events-c-nav__prev:hover {
  background: var(--rc-white) !important;
  color: var(--rc-forest) !important;
  border-color: rgba(216, 168, 74, 0.42) !important;
}

.rc-menu-toggle {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--rc-forest) !important;
  box-shadow: none !important;
}

/* Agenda overzicht: rustig, Lovable-achtig en consistent */
.rc-agenda-page .rc-agenda-list-wrap,
.rc-event-archive-page .rc-agenda-list-wrap {
  max-width: 940px;
}

.rc-agenda-list {
  gap: 0.92rem;
}

.rc-event-card-list,
.rc-event-card {
  border-color: rgba(32, 51, 43, 0.095);
  background: rgba(255, 253, 249, 0.78);
}

.rc-event-card-list {
  grid-template-columns: 74px minmax(0, 1fr);
  padding: clamp(1rem, 2.35vw, 1.45rem);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(24, 54, 43, 0.045);
}

.rc-event-card-list .rc-event-date,
.rc-event-date {
  width: 58px;
  height: 58px;
  border-radius: 17px;
}

.rc-event-date strong {
  font-size: 1.22rem;
}

.rc-event-date span {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.rc-event-content h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  letter-spacing: -0.012em;
}

.rc-event-content p,
.rc-event-content span,
.rc-event-meta,
.rc-event-desc {
  font-size: 0.92rem;
  line-height: 1.55;
}

.rc-event-location,
.rc-event-reading {
  margin-top: 0.18rem;
}

/* Detailpagina van eigen evenementen en plugin-evenementen */
.rc-event-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.rc-event-detail-copy {
  max-width: 760px;
}

.rc-event-detail-intro {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--rc-muted);
  line-height: 1.72;
}

.rc-event-detail-meta {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-lg);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: var(--rc-shadow-soft);
}

.rc-event-detail-meta-card {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(32, 51, 43, 0.075);
  border-radius: var(--rc-radius-md);
  background: rgba(255,255,255,0.48);
}

.rc-event-detail-meta-card span {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--rc-muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rc-event-detail-meta-card strong {
  display: block;
  color: var(--rc-forest);
  font-size: 1rem;
  line-height: 1.38;
}

.rc-event-detail-content-grid {
  max-width: 920px;
}

.rc-event-detail-content {
  background: rgba(255, 253, 249, 0.82);
}

/* Veelgebruikte event plugin output in dezelfde rustige stijl */
.tribe-events .tribe-events-l-container,
.tribe-common .tribe-common-l-container,
.em.em-events-list,
.em-events-list,
.mec-wrap,
.eo-events,
.eo-fullcalendar,
.single-tribe_events .tribe-events-single,
.single-event .site-main,
.single-mec-events .mec-wrap {
  max-width: min(1120px, calc(100vw - 40px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tribe-events .tribe-events-calendar-list__event-row,
.tribe-events .tribe-events-calendar-list__event,
.tribe-events .tribe-events-calendar-day__event,
.tribe-events .tribe-events-calendar-month__calendar-event,
.tribe-events-event-meta,
.single-tribe_events .tribe-events-single-event-description,
.em-event,
.em-item,
.em-event-content,
.em.em-list .em-item,
.mec-wrap .mec-event-article,
.mec-single-event,
.eo-event,
.type-event,
.type-tribe_events,
.type-mec-events,
.type-ai1ec_event,
.type-event_listing,
.type-calendar_event {
  border: 1px solid var(--rc-line) !important;
  border-radius: var(--rc-radius-lg) !important;
  background: rgba(255, 253, 249, 0.78) !important;
  box-shadow: var(--rc-shadow-soft) !important;
}

.tribe-events .tribe-events-calendar-list__event-row,
.tribe-events .tribe-events-calendar-list__event,
.tribe-events .tribe-events-calendar-day__event,
.em-event,
.em-item,
.em.em-list .em-item,
.mec-wrap .mec-event-article,
.eo-event {
  padding: clamp(1rem, 2.35vw, 1.45rem) !important;
}

.tribe-events .tribe-events-calendar-list__event-title,
.tribe-events .tribe-events-single-event-title,
.em-event h1,
.em-event h2,
.em-event h3,
.mec-wrap h1,
.mec-wrap h2,
.mec-wrap h3,
.eo-event h1,
.eo-event h2,
.eo-event h3 {
  color: var(--rc-forest) !important;
  font-size: clamp(1.25rem, 2.15vw, 2rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.tribe-events .tribe-events-calendar-list__event-title a,
.em-event a,
.mec-wrap a,
.eo-event a {
  color: var(--rc-forest);
}

.tribe-common .tribe-common-b2,
.tribe-events .tribe-events-calendar-list__event-description,
.tribe-events-meta-group,
.em-event,
.em-item,
.mec-wrap,
.eo-event {
  color: var(--rc-muted) !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
}

.tribe-events .tribe-events-c-search,
.tribe-events .tribe-events-header,
.em-search,
.em-events-search,
.mec-search-form,
.eo-event-search {
  border: 1px solid var(--rc-line) !important;
  border-radius: var(--rc-radius-lg) !important;
  background: rgba(255, 253, 249, 0.72) !important;
  box-shadow: none !important;
  padding: 1rem !important;
}

@media (max-width: 820px) {
  .rc-event-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .rc-hero h1,
  .rc-page-hero h1,
  .rc-meekijken-hero h1,
  .rc-entry-header h1,
  .rc-page-header h1,
  .rc-event-detail-page h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .rc-section h2,
  .rc-content-card h1,
  .rc-content-card h2,
  .rc-post-card h2,
  .widget-title,
  .rc-how-card h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
}

@media (max-width: 620px) {
  .rc-event-card-list,
  .rc-event-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.82rem;
  }

  .rc-event-card-list .rc-event-date,
  .rc-event-date {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }
}
