
:root {
  --bg: #f3ede0;
  --ink: #2b1f1f;
  --ink-rgb: 43, 31, 31;
  --muted: #5a4a4a;
  --accent: #c25d32;
  --accent-rgb: 194, 93, 50;
  --accent-dark: #8a3e1f;
  --leaf: #4f9a9a;
  --card: #fff9f0;
  --border: #e0d8c9;
  --shadow: 0 10px 30px rgba(43, 31, 31, 0.18);
  --radius: 10px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  background-image:
    url("https://queracontestu.be/media/2025/10/pattern_blog.png"),
    radial-gradient(circle at 10% 20%, rgba(194, 93, 50, 0.15), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(79, 154, 154, 0.18), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(138, 62, 31, 0.12), transparent 30%);
  background-repeat: repeat-y, no-repeat, no-repeat, no-repeat;
  background-position: top right, 10% 20%, 80% 0%, 50% 80%;
  background-size: 400px, auto, auto, auto;
  background-attachment: scroll, fixed, fixed, fixed;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1110px;
  }
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a:hover,
a:focus {
  color: var(--accent-dark);
}
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled {
  background: rgba(243, 237, 224, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(43, 31, 31, 0.08);
}
body.admin-bar .site-header.scrolled {
  top: 32px;
}
@media (max-width: 782.98px) {
  body.admin-bar .site-header.scrolled {
    top: 46px;
  }
}
@media (max-width: 600.98px) {
  body.admin-bar .site-header.scrolled {
    top: 0;
  }
}
.header-inner {
  top: 0;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.site-logo {
  width: 200px;
  height: auto;
  padding: 8px 10px;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.nav-toggle:focus-visible,
.nav-toggle:hover {
  outline: none;
}
.burger {
  position: relative;
}
.burger-lines,
.burger-lines::before,
.burger-lines::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.burger-lines {
  top: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.burger-lines::before,
.burger-lines::after {
  content: "";
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.burger-lines::before {
  top: -8px;
}
.burger-lines::after {
  top: 8px;
}
.burger-squeeze.is-active .burger-lines {
  background-color: transparent;
}
.burger-squeeze.is-active .burger-lines::before {
  transform: translateY(8px) rotate(45deg);
}
.burger-squeeze.is-active .burger-lines::after {
  transform: translateY(-8px) rotate(-45deg);
}
.primary-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
  align-items: center;
}
.primary-nav .nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.primary-nav .nav-link:hover,
.primary-nav .nav-link:focus-visible {
  color: var(--accent);
  outline: none;
  box-shadow: none;
  border: none;
}
.primary-nav .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: var(--card);
  padding: 8px;
}
.primary-nav .dropdown-item {
  border-radius: 8px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.18s ease, background-color 0.18s ease;
}
.primary-nav .dropdown-item:hover,
.primary-nav .dropdown-item:focus {
  background: rgba(194, 93, 50, 0.12);
  color: var(--accent-dark);
}
.card {
  border-radius: var(--radius);
  border: 0px solid var(--border);
  background: var(--card);
}
.post-card.card {
  border: none;
  box-shadow: none;
  background: transparent;
}
.widget {
  width: 100%;
}
.widget {
  padding: 18px 20px;
  font-family: "Lora", serif;
  font-size: 14px;
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget ul li+li {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 8px;
}
.widget h3,
.widget h4,
.widget h5 {
  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.widget h3::after,
.widget h4::after,
.widget h5::after {
  content: "";
  display: inline-block;
  width: 150px;
  height: 1px;
  border-radius: 999px;
  background: var(--accent);
}
aside .sidebar-widgets {
  position: sticky;
  top: 30px;
}
.post-card .card-body {
  padding: 0;
}
.post-card .post-thumb {
  height: 266px;
  overflow: hidden;
  border-radius: 10px;
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.single-thumb {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 21px;
}
.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.single .card-body {
  width: 80%;
  margin: 0 auto;
}
.single .card-title {
  font-size: 23px;
}
.share-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.share-label {
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--ink);
}
.share-buttons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.share-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  color: currentColor;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.share-btn:hover,
.share-btn:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.share-facebook,
.share-facebook:active,
.share-facebook:focus {
  color: #1877f2;
}
.share-facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
}
.share-threads,
.share-threads:active,
.share-threads:focus {
  color: #000;
}
.share-threads:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.share-email,
.share-email:active,
.share-email:focus {
  color: #6c757d;
}
.comment-respond {
  margin-top: 32px;
  padding: 20px;
}
.comment-respond h3 {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}
.comment-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.comment-notes {
  font-family: "Lora", serif;
  font-size: 12px;
}
.comment-form-comment {
  display: none;
}
.comment-form>* {
  grid-column: 1 / -1;
}
#wp-manon_comment-wrap+p {
  display: none;
}
.comment-form label {
  display: block;
  font-family: "Lora", serif;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: "Lora", serif;
  font-size: 14px;
}
.comment-form .comment-form-comment {
  grid-column: 1 / -1;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin: 0;
}
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.comment-form-cookies-consent label {
  margin: 0;
}
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.comment-form .comment-form-comment {
  grid-column: 1 / -1;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin: 0;
}
.comment-form-author {
  grid-column: 1 / 2;
}
.comment-form-email {
  grid-column: 2 / 3;
}
.comment-form-url {
  grid-column: 3 / 4;
}
.comment-form-cookies-consent {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.comment-form-cookies-consent label {
  margin: 0;
}
.form-submit {
  grid-column: 1 / -1;
  margin: 0;
}
.comment-form input[type="submit"] {
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid var(--accent);
  background: rgba(194, 93, 50, 0.08);
  color: var(--accent);
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}
.comment-form input[type="submit"]:hover,
.comment-form input[type="submit"]:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(194, 93, 50, 0.22);
}
.logged-in-as {
  font-size: 12px;
}
.comments-area {
  margin-top: 32px;
}
h3#comments {
  font-family: "Lora", serif;
  font-size: 20px;
  margin: 30px 0 20px;
}
.comment-list,
.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-item {
  margin: 0 0 12px;
}
.comment-list .children,
.commentlist .children {
  list-style: none;
  padding-left: 80px;
}
.depth-1 .comment-body {
  border-top: 1px solid var(--border);
}
.depth-1 .comment-main {
  border-left: 1px solid var(--border);
  padding-left: 20px;
  margin-left: 5px;
}
.comment-body {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0 0 16px;
  padding-top: 10px;
}
.comment-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-header {
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.comment-author-name a {
  color: var(--ink);
}
.comment-metadata {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(var(--ink-rgb), 0.65);
}
.comment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(var(--ink-rgb), 0.65);
  margin-bottom: 6px;
}
.comment-meta .comment-reply-link {
  border: none;
  padding: 0;
  color: var(--accent);
  background: transparent;
}
.comment-meta .comment-reply-link:hover,
.comment-meta .comment-reply-link:focus-visible {
  background: transparent;
  text-decoration: none;
  color: var(--accent-dark);
  transform: none;
}
.comment-edit-link {
  font-weight: 700;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}
.comment-content {
  margin-top: 10px;
  font-family: "Lora", serif;
  font-size: 14px;
  color: var(--ink);
}
.comment-content p {
  margin: 0 0 10px;
}
.comment-content {
  font-family: "Lora", serif;
  font-size: 14px;
  color: var(--ink);
}
.comment-reply-link {
  display: inline-block;
  margin-top: 0px;
  font-family: "manrope", "Segoe UI", -apple-system, sans-serif;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.comment-reply-link:hover,
.comment-reply-link:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
#cancel-comment-reply-link {
  display: inline-block;
  margin-top: 6px;
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.comment-nav {
  font-family: "Lora", serif;
  font-size: 13px;
  gap: 12px;
}
.comment-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.comment-pagination li {
  display: inline-flex;
}
.comment-pagination a,
.comment-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 700;
}
.comment-pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.comment-pagination a:hover,
.comment-pagination a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
  text-decoration: none;
}
.navigation {
  display: none;
}
.comment-nav {
  text-align: center;
}
.comment-nav a {
  color: var(--accent);
  font-weight: 700;
}
.comment-nav a:hover,
.comment-nav a:focus-visible {
  color: var(--accent-dark);
  text-decoration: none;
}
.share-email:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}
.post-nav {
  border-top: 1px dotted var(--border);
  border-bottom: 1px dotted var(--border);
  padding: 16px 0;
}
.post-nav-item {
  max-width: 48%;
}
.post-nav-element {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}
.post-nav-chevron {
  color: rgba(var(--ink-rgb), 0.6);
  font-size: 14px;
}
.post-nav-chevron i {
  vertical-align: middle;
}
.post-nav-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: rgba(var(--accent-rgb), 0.1);
  flex-shrink: 0;
}
.post-nav-title {
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--ink);
}
.post-nav-title:hover {
  color: var(--accent-dark);
}
.post-nav-text small {
  font-family: "Lora", serif;
  color: rgba(var(--ink-rgb), 0.6);
}
@media (max-width: 768px) {
  .single .card-body {
    width: 100%;
  }
}
.card .card-body {
  padding: 24px;
}
.meta {
  color: var(--muted);
}
.meta span {
  font-size: 11px;
}
.meta .meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0px 6px;
  border-radius: 50px;
  background: rgba(194, 93, 50, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
}
.post-card .card-title {
  margin: 0;
}
.post-card .card-title a {
  color: var(--ink);
}
.post-card .card-title a:hover {
  color: var(--accent-dark);
}
.post-card .card-text {
  color: var(--muted);
  font-family: "Lora", serif;
  font-size: 14px;
}
.btn-readmore {
  padding: 8px 30px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: "Lora", serif;
  letter-spacing: 0.2px;
  background: rgba(194, 93, 50, 0.08);
  border-radius: 50px;
  font-size: 15px;
  z-index: 1;
}
.btn-readmore:hover {
  background: var(--accent);
  color: var(--bg);
  ;
}
.entry-content {
  color: var(--ink);
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: "Lora", serif;
  font-weight: 700;
  margin: 1.4em 0 0.6em;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-size: 20px;
}
.entry-content h5,
.entry-content h6 {
  font-size: 18px;
}
.entry-content p {
  margin-bottom: 1.5em;
  font-family: "Lora", serif;
  font-size: 14px;
}
.entry-content figure,
.entry-content .wp-caption {
  margin: 24px auto;
  padding: 12px;
  border-radius: var(--radius);
}
.entry-content .wp-caption img,
.entry-content figure img {
  display: block;
  margin: 0 auto 10px;
  border-radius: 8px;
  max-width: 98%;
  height: auto;
}
.wp-caption {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(43, 31, 31, 0.1);
}
.entry-content .wp-caption-text,
.entry-content figure figcaption {
  font-family: "Lora", serif;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.75);
}
.entry-content blockquote,
.manon-blockquote {
  position: relative;
  margin: 24px 0;
  padding: 18px 24px 14px 100px;
  border-top: 1px dotted var(--border);
  border-bottom: 1px dotted var(--border);
  color: rgba(var(--ink-rgb), .70);
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}
.entry-content blockquote::before,
.manon-blockquote::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: 0;
  font-size: 150px;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.12);
  font-family: "Playfair Display", serif;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.5em 1.3em;
  padding: 0;
  font-family: "Lora", serif;
  font-size: 15px;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content li {
  margin-bottom: 0.6em;
}
.entry-content ul ul,
.entry-content ul ol,
.entry-content ol ul,
.entry-content ol ol {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.entry-content strong,
.entry-content b {
  color: var(--ink);
  font-weight: 800;
}
.entry-content em {
  color: rgba(var(--ink-rgb), 0.8);
}
.entry-content code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(var(--ink-rgb), 0.06);
  border: 1px solid rgba(var(--ink-rgb), 0.08);
}
.entry-content pre {
  overflow-x: auto;
  padding: 14px 16px;
  border-radius: 10px;
  background: #1f1b16;
  color: #f2e8d8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(43, 31, 31, 0.16);
}
.entry-content pre code {
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
}
.entry-content hr,
.entry-content .wp-block-separator {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 36px 0;
}
.entry-content table,
.entry-content .wp-block-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-family: "Lora", serif;
  font-size: 14px;
}
.entry-content table th,
.entry-content table td,
.entry-content .wp-block-table th,
.entry-content .wp-block-table td {
  padding: 12px;
  border: 1px solid var(--border);
  text-align: left;
}
.entry-content table th,
.entry-content .wp-block-table th {
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--ink);
  font-weight: 700;
}
.entry-content .alignleft {
  float: left;
  margin: 0.4em 1.4em 1em 0;
}
.entry-content .alignright {
  float: right;
  margin: 0.4em 0 1em 1.4em;
}
.entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-content .alignwide {
  width: auto;
  margin-left: max(-60px, -6vw);
  margin-right: max(-60px, -6vw);
}
.entry-content .alignfull {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}
.entry-content .wp-block-image img {
  border-radius: 10px;
}
.entry-content .wp-block-image figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.75);
}
.entry-content .wp-block-gallery {
  gap: 12px;
}
.entry-content .wp-block-gallery .wp-block-image {
  overflow: hidden;
  border-radius: 12px;
}
.entry-content .wp-block-gallery img {
  height: 100%;
  object-fit: cover;
}
.entry-content .wp-block-embed {
  margin: 24px 0;
}
.entry-content .wp-block-embed__wrapper,
.entry-content .wp-block-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.entry-content .wp-block-embed__wrapper iframe,
.entry-content .wp-block-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(43, 31, 31, 0.12);
}
.entry-content iframe {
  width: 100%;
  max-width: 100%;
  display: block;
  border: none;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  .entry-content iframe {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 768px) {
  .entry-content .alignwide,
  .entry-content .alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
  }
}
.entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: "Lora", serif;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}
.entry-content .wp-block-button__link:hover,
.entry-content .wp-block-button__link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(194, 93, 50, 0.26);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.entry-content .wp-block-pullquote {
  margin: 32px 0;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  background: rgba(var(--accent-rgb), 0.06);
  box-shadow: 0 10px 24px rgba(43, 31, 31, 0.08);
}
.entry-content .wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  color: rgba(var(--ink-rgb), 0.8);
  font-size: 18px;
}
.entry-content .wp-block-pullquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
}
.entry-content a {
  text-decoration: underline;
}
.navigation.pagination {
  margin-top: 16px;
}
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.navigation.pagination .page-numbers {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
}
.navigation.pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.navigation.pagination .page-numbers:hover {
  border-color: var(--accent);
}
.related-posts {
  padding: 0 20px;
}
.related-posts h3.h6 {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}
.related-posts h2 {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}
.related-posts .card .card-body {
  padding: 0px;
  margin: 0;
  width: 100%;
}
.category-title {
  font-family: "Manrope", "Segoe UI", -apple-system, sans-serif;
  font-size: 24px;
  margin-left: 24px;
}
.site-footer {
  margin-top: auto;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  box-shadow: 0 -6px 20px rgba(43, 31, 31, 0.08);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.footer-inner .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(194, 93, 50, 0.14), rgba(79, 154, 154, 0.16));
  border: 1px solid rgba(194, 93, 50, 0.25);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 20px rgba(43, 31, 31, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.tag-badge:hover,
.tag-badge:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(194, 93, 50, 0.22);
  border-color: var(--accent);
  color: var(--accent-dark);
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: 0;
  box-shadow: 0 12px 28px rgba(194, 93, 50, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 14px 30px rgba(194, 93, 50, 0.28);
  outline: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .primary-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 0 8px;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0px;
    box-shadow: 0 12px 28px rgba(43, 31, 31, 0.14);
    z-index: 9;
  }
  .primary-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-inner {
    align-items: center;
    flex-direction: row;
  }
}
@media (max-width: 900px) {
  body {
    background-image:
      radial-gradient(circle at 10% 20%, rgba(194, 93, 50, 0.15), transparent 25%),
      radial-gradient(circle at 80% 0%, rgba(79, 154, 154, 0.18), transparent 28%),
      radial-gradient(circle at 50% 80%, rgba(138, 62, 31, 0.12), transparent 30%);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 10% 20%, 80% 0%, 50% 80%;
    background-size: auto, auto, auto;
    background-attachment: fixed, fixed, fixed;
  }
  .card .card-body {
    padding: 18px;
  }
}
