/* --- Base palette (dark as default) --- */
:root {
    --fox-orange: #e07a2d;
    --fox-dark: #f4e9d8;
    --fox-cream: #2b2522;
    --fox-light: #1c1816;
    --accent: #d9a074;

    --bg-body: var(--fox-light);
    --bg-card: #241f1c;
    --text-main: var(--fox-dark);
    --text-muted: #b9a89c;
    --border-soft: rgba(255,255,255,0.15);
}

/* --- Global --- */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: var(--fox-dark);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* --- Header --- */
.site-header {
    background: var(--fox-orange);
    color: white;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header img {
    width: 48px;
    height: 48px;
}

.site-title {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.site-title a {
    color: white;
    text-decoration: none;
}

/* --- Main layout --- */
.site-main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem 3rem;
}

.card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 1px solid var(--border-soft);
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Post / content typography --- */
.entry-title {
    margin-top: 0;
    color: var(--accent);
}

.entry-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--accent);
}

.entry-content h1 { font-size: 2rem; }
.entry-content h2 { font-size: 1.7rem; }
.entry-content h3 { font-size: 1.4rem; }
.entry-content h4 { font-size: 1.2rem; }
.entry-content h5 { font-size: 1rem; }
.entry-content h6 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }

.entry-content p {
    margin: 0.6rem 0;
}

.entry-content ul,
.entry-content ol {
    margin: 0.6rem 0 0.6rem 1.5rem;
}

.entry-content li {
    margin: 0.2rem 0;
}

/* Code blocks */
.entry-content pre,
.entry-content code {
    font-family: "JetBrains Mono", "Fira Code", monospace;
}

.entry-content pre {
    background: rgba(255,255,255,0.08);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    overflow-x: auto;
    border: 1px solid var(--border-soft);
}

.entry-content code {
    background: rgba(255,255,255,0.08);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

/* Blockquotes */
.entry-content blockquote {
    border-left: 4px solid var(--fox-orange);
    margin: 1rem 0;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    color: var(--text-muted);
}

/* Images & video */
.entry-content img,
.entry-content video {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 0.8rem auto;
}

/* Post list */
.post-list-item {
    margin-bottom: 1.5rem;
}
.post-list-item-title {
    font-size: 1.3rem;
    margin: 0 0 0.2rem;
}
.post-list-item-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Featured images --- */
.featured-image img,
.featured-image-thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* --- Foxweb Message Boxes (Final, Clean, Correct) --- */
.message-box {
    position: relative;
    padding: 0.9rem 1.2rem 0.9rem 3.2rem;
    margin: 1.2rem 0;
    border-radius: 10px;
    border-left: 5px solid;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Icon */
.message-box::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}

/* INFO */
.message-info {
    background: #e3f2fd;
    border-left-color: #2196f3;
    color: #0d47a1;
}
.message-info::before {
    content: "ℹ️";
}

/* WARNING */
.message-warning {
    background: #fff8e1;
    border-left-color: #ffb300;
    color: #8a6d00;
}
.message-warning::before {
    content: "⚠️";
}

/* SUCCESS */
.message-success {
    background: #e8f5e9;
    border-left-color: #43a047;
    color: #1b5e20;
}
.message-success::before {
    content: "✔️";
}

/* ERROR */
.message-error {
    background: #ffebee;
    border-left-color: #e53935;
    color: #b71c1c;
}
.message-error::before {
    content: "❌";
}

/* FOX (your branded box) */
.message-fox {
    background: #ffe9d6;
    border-left-color: var(--fox-orange);
    color: var(--accent);
}
.message-fox::before {
    content: "🦊";
}

/* NOTE */
.message-note {
    background: #e8eaf6;
    border-left-color: #5c6bc0;
    color: #283593;
}
.message-note::before {
    content: "📝";
}

/* TIP */
.message-tip {
    background: #e0f7fa;
    border-left-color: #00acc1;
    color: #006064;
}
.message-tip::before {
    content: "💡";
}

/* QUOTE */
.message-quote {
    background: #f3e5f5;
    border-left-color: #8e24aa;
    color: #4a148c;
}
.message-quote::before {
    content: "❝";
}



/* Collapsible details */
.fox-details {
    margin: 1rem 0;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    cursor: pointer;
}

.fox-details summary {
    font-weight: 600;
    color: var(--fox-orange);
    cursor: pointer;
}

.fox-details-content {
    margin-top: 0.8rem;
    padding-left: 0.5rem;
}

.fox-kbd {
    background: #333;
    color: #fff;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}

.fox-badge {
    background: var(--fox-orange);
    color: white;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fox-pill {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

/* Color variants */
.fox-pill-orange { background: var(--fox-orange); }
.fox-pill-green  { background: #43a047; }
.fox-pill-blue   { background: #1e88e5; }
.fox-pill-red    { background: #e53935; }

.fox-button {
    display: inline-block;
    background: var(--fox-orange);
    color: white !important;
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: opacity 0.2s ease;
}

.fox-button:hover {
    opacity: 0.85;
}

.fox-spoiler {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.fox-spoiler-hidden {
    background: #333;
    color: white;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}

.fox-spoiler.revealed .fox-spoiler-hidden {
    display: none;
}

.fox-spoiler-content {
    display: none;
}

.fox-spoiler.revealed .fox-spoiler-content {
    display: inline;
}

.fox-tabs {
    margin: 1.5rem 0;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: var(--bg-card);
    padding: 1rem;
}

.fox-tabs-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fox-tab-btn {
    background: #333;
    color: var(--fox-dark);
    border: 1px solid var(--border-soft);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.fox-tab-btn.active {
    background: var(--fox-orange);
    color: white;
    border-color: var(--fox-orange);
}

.fox-tab {
    display: none;
}

.fox-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.fox-accordion-item {
    margin: 0.6rem 0;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
}

.fox-accordion-header {
    width: 100%;
    background: var(--fox-orange);
    color: white;
    padding: 0.7rem 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
}

.fox-accordion-body {
    display: none;
    padding: 1rem;
    background: var(--bg-card);
}

/* --- Foxweb Timeline (Improved) --- */

.fox-timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.fox-timeline::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--fox-orange);
    border-radius: 4px;
}

/* Timeline item */
.fox-timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

/* Marker */
.fox-timeline-marker {
    position: absolute;
    left: -1.1rem;   /* moved further left */
    top: 0.55rem;
    width: 14px;
    height: 14px;
    background: var(--fox-orange);
    transform: rotate(45deg);
    border-radius: 3px;
    border: 2px solid var(--bg-body);
    box-shadow: 0 0 0 2px var(--fox-orange);
}



/* Content card */
.fox-timeline-content {
    background: var(--bg-card);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.fox-timeline-content h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--accent);
}

.fox-timeline-content small {
    display: block;
    margin: 0.2rem 0 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.fox-timeline-content p {
    margin: 0;
    color: var(--text-main);
}

.fox-timeline::before {
    left: -0.1rem;   /* aligns with diamond */
}

.fox-timeline-content {
    margin-left: 0.5rem;
}

.fox-progress {
    margin: 1rem 0;
}

.fox-progress-label {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.fox-progress-track {
    width: 100%;
    background: #222;
    border-radius: 999px;
    overflow: hidden;
}

.fox-progress-bar {
    height: 10px;
    background: var(--fox-orange);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.fox-steps {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.fox-step {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.fox-step::before {
    content: "○";
    color: var(--fox-orange);
    font-weight: 700;
    margin-top: 0.1rem;
}

.fox-step.done::before {
    content: "✔";
}

.fox-pricing {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100%;
}


@media (min-width: 768px) {
    .fox-pricing {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fox-plan {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    position: relative;
    display: flex !important;
    flex-direction: column;
}

.fox-plan-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--fox-orange);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.fox-plan-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.4rem 0 0.8rem;
}

.fox-plan-body ul {
    padding-left: 1.1rem;
    margin: 0;
}

.fox-hero {
    padding: 3rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(255,140,0,0.25), transparent),
                radial-gradient(circle at bottom right, rgba(255,140,0,0.2), transparent),
                var(--bg-body);
    border-radius: 16px;
    margin: 1.5rem 0;
}

.fox-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fox-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.fox-hero-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.fox-alert {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 500;
}

.fox-alert-info {
    background: #1e2a38;
    color: #bbdefb;
}

.fox-alert-warning {
    background: #3a2f12;
    color: #ffe082;
}

.fox-alert-error {
    background: #3b1818;
    color: #ffcdd2;
}

.fox-alert-success {
    background: #1b3520;
    color: #c8e6c9;
}

.fox-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.fox-table th,
.fox-table td {
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--border-soft);
}

.fox-table th {
    text-align: left;
    background: #181818;
    color: var(--text-main);
}

.fox-table tr:nth-child(even) td {
    background: #151515;
}

.fox-compare {
    margin: 1.5rem 0;
}

.fox-compare-inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.fox-compare-inner img {
    display: block;
    width: 100%;
}

.fox-compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
}

.fox-compare-overlay img {
    width: 100%;
}

.fox-compare-slider {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
}

.fox-counter {
    text-align: center;
    margin: 1rem 0;
}

.fox-counter-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fox-orange);
}

.fox-counter-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.fox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.fox-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.fox-modal-dialog {
    position: relative;
    max-width: 500px;
    margin: 10vh auto;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.fox-modal-close {
    position: absolute;
    top: 0.4rem;
    right: 0.6rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
}



.fox-grid {
    display: grid;
    gap: 1rem;
}

.fox-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fox-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fox-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.fox-grid-item {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
}

.fox-callout {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
}

.fox-callout-icon {
    font-size: 1.6rem;
}

.fox-callout-orange { border-left: 5px solid var(--fox-orange); }
.fox-callout-blue   { border-left: 5px solid #1e88e5; }
.fox-callout-green  { border-left: 5px solid #43a047; }
.fox-callout-red    { border-left: 5px solid #e53935; }

pre code {
    display: block;
    padding: 1rem;
    background: #1e1e1e;
    color: #dcdcdc;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow-x: auto;
}

.fox-banner {
    background: var(--fox-orange);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* --- Comments --- */
.comments-card {
    margin-top: 2rem;
}

.comment-list,
.comment-list > li,
.comment-list ol,
.comment-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.comment .comment-author {
    font-weight: bold;
    color: var(--accent);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.comment-content {
    margin: 0.5rem 0 1rem;
}

.reply {
    margin-top: 0.5rem;
}

/* Comment form */
.comment-respond {
    margin-top: 2rem;
}

.comment-respond label {
    font-weight: 600;
    display: block;
    margin-top: 1rem;
    color: var(--text-main);
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
    color: var(--text-main);
    box-sizing: border-box;
    font-size: 1rem;
}

.comment-respond textarea {
    min-height: 120px;
}

.comment-respond p {
    margin: 0 0 1rem 0;
}

.comment-form-cookies-consent {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-cookies-consent label {
    margin: 0;
}

.comment-respond input[type="submit"] {
    background: var(--fox-orange);
    color: white;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1.2rem;
    font-weight: 600;
}
.comment-respond input[type="submit"]:hover {
    opacity: 0.9;
}

/* --- Navigation (with submenus + sub-submenus) --- */
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.2rem;
}

.site-nav li {
    margin: 0;
    padding: 0;
    position: relative;
}

.site-nav > ul > li > a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0.2rem;
}

.site-nav > ul > li > a:hover {
    text-decoration: underline;
}

/* Down arrow for items with children (top level) */
.site-nav ul li.menu-item-has-children > a {
    position: relative;
    padding-right: 1.2rem;
}

.site-nav ul li.menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.6rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

/* Submenu container */
.site-nav ul .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--fox-orange);
    padding: 0.4rem 0;
    border-radius: 6px;
    min-width: 190px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Show submenu on hover */
.site-nav ul li:hover > .sub-menu {
    display: block;
}

/* Submenu items */
.site-nav ul .sub-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

/* Submenu links */
.site-nav ul .sub-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 4px;
    min-width: 190px;
    box-sizing: border-box;
    text-align: left;
}

/* Hover effect */
.site-nav ul .sub-menu a:hover {
    background: rgba(0,0,0,0.18);
}

/* Sub-submenu (third level) opens to the LEFT to avoid horizontal scroll */
.site-nav ul .sub-menu .sub-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-right: 0.2rem;
    margin-left: 0;
    background: var(--fox-orange);
    padding: 0.4rem 0;
    border-radius: 6px;
    min-width: 190px;
    display: none;
    position: absolute;
    z-index: 9999;
}

/* Show sub-submenu on hover */
.site-nav ul .sub-menu li:hover > .sub-menu {
    display: block;
}

/* Right arrow for sub-submenus */
.site-nav ul .sub-menu li.menu-item-has-children > a {
    position: relative;
    padding-right: 1.6rem;
}

.site-nav ul .sub-menu li.menu-item-has-children > a::after {
    content: "▶";
    font-size: 0.6rem;
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    color: #e3f2fd;
}

/* Blog layout */
.blog-wrapper {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Each post card */
.post-list-item {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* Thumbnail */
.featured-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Post content */
.post-content {
  flex: 1;
}

.post-list-item-title {
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
  color: var(--accent);
}

.post-list-item-title a {
  color: var(--accent);
  text-decoration: none;
}

.post-list-item-title a:hover {
  text-decoration: underline;
}

.entry-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.post-list-item-excerpt {
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Pagination */
.pagination-wrapper {
  text-align: center;
  margin: 2rem 0 3rem;
}

.pagination-wrapper .nav-links {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-wrapper a,
.pagination-wrapper span {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background: var(--fox-orange);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.pagination-wrapper a:hover {
  opacity: 0.85;
}

.pagination-wrapper .current {
  background: var(--accent);
  color: #fff;
}

/* Read More button */
.read-more-btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--fox-orange);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  opacity: 0.85;
}

