@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');.ans-share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ans-share-button, .ans-social-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.ans-share-button {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
}

.ans-social-button {
    text-align: center;
    color: #fff;
}

.ans-facebook-button {
    background-color: #3b5998;
}

.ans-x-button {
    background-color: #1da1f2;
}

.ans-share-button:hover, .ans-social-button:hover {
    transform: scale(1.05);
}

.ans-share-button:active, .ans-social-button:active {
    transform: scale(0.95);
}
/*
Theme Name:   Maneki Theme
Theme URI:    https://maneki.info.bd/
Author:       Maneki
Author URI:   https://maneki.info.bd/
Description:  A clean, responsive, SEO-optimized WordPress blogging theme with Rank Math & Yoast SEO support, LiteSpeed Cache compatibility, AI search optimization (ChatGPT/Gemini), auto FAQ schema markup, admin options panel, and full Gutenberg block editor support.
Version:      2.0.1
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Tags:              blog, two-columns, right-sidebar, responsive-layout, custom-menu, block-patterns, wide-blocks, editor-style, custom-colors
Text Domain:       maneki
*/

/* =====================================================================
   GOOGLE FONTS
===================================================================== */


/* =====================================================================
   DESIGN TOKENS
===================================================================== */
:root {
  --primary:       #0d9488;
  --primary-dark:  #0f766e;
  --primary-light: #ccfbf1;
  --accent:        #f59e0b;
  --text:          #374151;
  --text-light:    #6b7280;
  --bg:            #f3f4f6;
  --card:          #ffffff;
  --border:        #e5e7eb;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.07);
  --shadow-md:     0 4px 14px rgba(0,0,0,.1);
  --radius:        .5rem;
  --radius-sm:     .375rem;
  --font:          'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Block editor */
  --wp--preset--color--primary:    var(--primary);
  --wp--preset--color--secondary:  var(--accent);
  --wp--preset--color--foreground: var(--text);
  --wp--preset--color--background: var(--bg);
  --wp--preset--font-size--small:  14px;
  --wp--preset--font-size--normal: 16px;
  --wp--preset--font-size--large:  20px;
  --wp--preset--font-size--huge:   36px;
}

/* =====================================================================
   RESET & BASE
===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: inherit; font-size: inherit; }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }
img,svg,video { display: block; max-width: 100%; height: auto; }
ul,ol { margin: 0; padding: 0; }

button {
  font-family: var(--font);
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0; margin: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
button:focus:not(:focus-visible) { outline: none; }

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

/* =====================================================================
   PAGE STRUCTURE
===================================================================== */

/* Outer wrapper */
.site-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Two-column grid: main + sidebar — mobile first = single column */
.content-area {
  width: 100%;
  max-width: 1280px;
  margin: 1.75rem auto 3rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Full-width variant (no sidebar) */
.content-area.full-width {
  max-width: 860px;
}

/* Main column */
#primary { min-width: 0; }

/* Sidebar */
#secondary { min-width: 0; }

/* =====================================================================
   HEADER
===================================================================== */
.site-header {
  background: var(--card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}

/* Site logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo svg { color: var(--primary); width: 26px; height: 26px; flex-shrink: 0; }
.site-logo img { height: 38px; width: auto; max-width: 140px; object-fit: contain; }
.site-logo:hover { color: var(--primary); }

/* Desktop nav (hidden mobile, shown lg+) */
.nav-desktop {
  display: none;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
  gap: 1.5rem;
}
.nav-desktop li { position: relative; margin: 0; }
.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
  padding: .2rem 0;
  display: block;
}
.nav-link:hover,
.nav-link[aria-current="page"],
.nav-desktop .current-menu-item > a { color: var(--primary); }

/* Header action buttons (search icon, hamburger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: #4b5563;
  transition: background .15s, color .15s;
}
.header-btn:hover { background: var(--primary-light); color: var(--primary); }
.header-btn svg  { width: 20px; height: 20px; }

/* =====================================================================
   MOBILE MENU
===================================================================== */
#mobile-menu {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
}
#mobile-menu.is-open { display: block; }

.mobile-nav-link {
  display: block;
  padding: .7rem 1.25rem;
  font-size: .9375rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { background: #f0fdfa; color: var(--primary); }

/* =====================================================================
   SEARCH OVERLAY
===================================================================== */
#search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
#search-overlay.is-open { opacity: 1; pointer-events: auto; }

#search-modal {
  background: var(--card);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: scale(.95);
  transition: transform .25s;
}
#search-overlay.is-open #search-modal { transform: scale(1); }

#search-close-button {
  position: absolute;
  top: .75rem; right: .75rem;
  font-size: 1.4rem;
  line-height: 1;
  width: 2rem; height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
#search-close-button:hover { background: #f3f4f6; color: #1f2937; }

/* =====================================================================
   SEARCH FORM
===================================================================== */
.search-form { display: flex; flex-direction: column; gap: .5rem; }

#search-input,
.search-form input[type="search"],
.search-form input[type="text"] {
  width: 100%;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
  -webkit-appearance: none;
}
#search-input:focus,
.search-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}

#search-submit,
.search-form input[type="submit"],
.search-form button[type="submit"] {
  padding: .65rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .15s;
  width: 100%;
  font-size: .9375rem;
}
#search-submit:hover,
.search-form input[type="submit"]:hover { background: var(--primary-dark); }

/* =====================================================================
   POST CARDS
===================================================================== */
.post-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 1.5rem;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card:last-child { margin-bottom: 0; }

.card-body { padding: 1.25rem; }

/* Featured image with aspect ratio */
.post-thumb { display: block; overflow: hidden; line-height: 0; }
.post-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .3s;
  line-height: 1;
}
.post-thumb:hover img { transform: scale(1.02); }

/* Category badge */
.cat-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .15s;
  margin-bottom: .5rem;
}
.cat-badge:hover { background: var(--primary-dark); }
.brand-bg { background-color: var(--primary); }

/* Entry title */
.entry-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
  margin: .35rem 0 .6rem;
}
.entry-title a { color: inherit; }
.entry-title a:hover { color: var(--primary); }

/* Post meta row */
.entry-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem .75rem;
  font-size: .8125rem;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.entry-meta a { color: var(--primary); font-weight: 500; }
.entry-meta a:hover { color: var(--primary-dark); }

.entry-excerpt {
  font-size: .9375rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Read more */
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap .2s, color .2s;
}
.read-more-link:hover { color: var(--primary-dark); gap: .5rem; }
.read-more-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =====================================================================
   SINGLE POST
===================================================================== */
.single-post-title {
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1f2937;
  margin-bottom: .75rem;
}

.single-post-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .8125rem;
  color: var(--text-light);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.single-post-meta .meta-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem .75rem;
}
.single-post-meta a { color: var(--primary); font-weight: 500; }

/* =====================================================================
   SHARE BUTTON
===================================================================== */
.ans-share-button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: .3rem .75rem;
  border-radius: 9999px;
  transition: all .15s;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.ans-share-button:hover { background: var(--primary); color: #fff; }
.ans-share-button svg { width: 13px; height: 13px; flex-shrink: 0; }

/* =====================================================================
   PROSE (Article Body)
===================================================================== */
.prose {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.0625rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child  { margin-bottom: 0; }

.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--primary-dark); }
.prose strong, .prose b { font-weight: 700; color: #1f2937; }
.prose em { font-style: italic; }

.prose h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #1f2937;
  margin: 2rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--primary-light);
  line-height: 1.3;
}
.prose h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #1f2937;
  margin: 1.5rem 0 .5rem;
  line-height: 1.3;
}
.prose h4 { font-size: 1.05rem; font-weight: 600; color: #374151; margin: 1.25rem 0 .4rem; }
.prose p  { margin: 0 0 1.1rem; }

.prose ul, .prose ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.prose li { margin-bottom: .35rem; }
.prose ul li { list-style-type: disc; }
.prose ol li { list-style-type: decimal; }
.prose ul ul, .prose ol ol { margin-bottom: 0; margin-top: .25rem; }

.prose blockquote {
  border-left: 4px solid var(--primary);
  background: #f0fdfa;
  margin: 1.5rem 0;
  padding: .875rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #374151;
}
.prose blockquote p:last-child { margin-bottom: 0; }

.prose pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  font-size: .875rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  max-width: 100%;
  white-space: pre;
}
.prose code {
  background: #f1f5f9;
  color: #be123c;
  padding: .15rem .4rem;
  border-radius: .25rem;
  font-size: .875em;
  font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
}
.prose pre code { background: transparent; color: inherit; padding: 0; font-size: inherit; border-radius: 0; }

.prose img  { border-radius: var(--radius-sm); margin: 1.5rem auto; max-width: 100%; height: auto; }
.prose figure { margin: 1.5rem 0; }
.prose figcaption { text-align: center; font-size: .875rem; color: var(--text-light); margin-top: .5rem; }

/* Responsive tables */
.prose table  {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9375rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose table th,
.prose table td {
  border: 1px solid var(--border);
  padding: .55rem .875rem;
  text-align: left;
}
.prose table th { background: #f8fafc; font-weight: 600; color: #1f2937; white-space: nowrap; }
.prose table tr:nth-child(even) td { background: #fafafa; }

/* Responsive iframes / video embeds */
.prose iframe { max-width: 100%; }
.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
}

/* =====================================================================
   BREADCRUMBS
===================================================================== */
.maneki-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .2rem .4rem;
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.maneki-breadcrumb a { color: var(--primary); text-decoration: none; }
.maneki-breadcrumb a:hover { text-decoration: underline; }
.maneki-breadcrumb .sep { color: #d1d5db; }

/* =====================================================================
   SIDEBAR WIDGETS
===================================================================== */
.widget {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.widget:last-child { margin-bottom: 0; }

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: .875rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary-light);
}

.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul a { color: var(--text); transition: color .15s; }
.widget ul a:hover { color: var(--primary); }

/* Tag cloud widget */
.widget .tagcloud a {
  display: inline-block;
  font-size: .8rem !important;
  padding: .2rem .55rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  margin: .2rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all .15s;
}
.widget .tagcloud a:hover { border-color: var(--primary); color: var(--primary); }

/* =====================================================================
   PAGINATION
===================================================================== */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  margin: 2rem 0;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 .5rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
  background: var(--card);
  transition: all .15s;
}
.page-numbers:hover,
.page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-numbers.dots { border: none; background: transparent; cursor: default; }

/* =====================================================================
   COMMENTS
===================================================================== */
#comments {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.comments-title,
.comment-reply-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary-light);
}

.comment-list { list-style: none; padding: 0; margin: 0; }

.comment-body {
  display: flex;
  gap: .875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.comment-body:last-child { border-bottom: none; }
.comment-body .avatar { border-radius: 50%; flex-shrink: 0; }

.comment-content p { font-size: .9375rem; line-height: 1.65; margin-bottom: .5rem; }
.comment-content p:last-child { margin-bottom: 0; }

.comment-meta { font-size: .8rem; color: var(--text-light); margin-bottom: .35rem; }
.comment-meta .fn { font-weight: 600; color: #1f2937; font-style: normal; }
.comment-meta a  { color: var(--text-light); text-decoration: none; }

.comment-reply-link { font-size: .8rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.comment-awaiting-moderation { font-size: .85rem; color: #d97706; font-style: italic; }

.comment-respond  { margin-top: 1.5rem; }
.comment-form p   { margin-bottom: .875rem; }
.comment-form label { display: block; font-size: .875rem; font-weight: 500; color: #374151; margin-bottom: .3rem; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9375rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}
.comment-form textarea { resize: vertical; min-height: 120px; }

.comment-form .submit {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-family: var(--font);
  padding: .65rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .15s;
  font-size: .9375rem;
}
.comment-form .submit:hover { background: var(--primary-dark); }

/* =====================================================================
   ARCHIVE HEADER
===================================================================== */
.archive-header {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}
.archive-title { font-size: 1.3rem; font-weight: 700; color: #1f2937; }
.archive-description { color: var(--text-light); font-size: .9375rem; margin-top: .35rem; }

/* =====================================================================
   POST NAVIGATION
===================================================================== */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.post-nav a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  max-width: 48%;
  transition: color .15s;
}
.post-nav a:hover { color: var(--primary-dark); }
.post-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }
.post-nav .nav-next { margin-left: auto; text-align: right; }

/* =====================================================================
   TAG LIST
===================================================================== */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.tag-list .label { font-size: .875rem; font-weight: 600; color: var(--text-light); }

.tag-pill {
  display: inline-block;
  font-size: .8rem;
  padding: .25rem .65rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--text-light);
  text-decoration: none;
  transition: all .15s;
}
.tag-pill:hover { border-color: var(--primary); color: var(--primary); }

/* =====================================================================
   FAQ ACCORDION
===================================================================== */
.maneki-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: box-shadow .2s;
}
.maneki-faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,.07); }

.maneki-faq-question {
  width: 100%;
  text-align: left;
  padding: .875rem 1rem;
  font-weight: 600;
  font-size: .9375rem;
  color: #1f2937;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  border: none;
  transition: background .15s;
  line-height: 1.4;
}
.maneki-faq-question span:first-child { flex: 1; }
.maneki-faq-question:hover { background: #f0fdfa; }
.maneki-faq-question.open  { background: #f0fdfa; color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .25s;
  margin-top: .05rem;
}
.maneki-faq-question.open .faq-icon { transform: rotate(45deg); }

.maneki-faq-answer {
  display: none;
  padding: .875rem 1rem;
  background: #fff;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.maneki-faq-answer.open { display: block; }
.maneki-faq-answer p:last-child { margin-bottom: 0; }

/* =====================================================================
   TABLE OF CONTENTS
===================================================================== */
.maneki-toc {
  background: #f0fdfa;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: .9rem;
}
.maneki-toc p  { font-weight: 700; font-size: .9rem; color: var(--primary-dark); margin-bottom: .6rem; }
.maneki-toc ol { margin: 0; padding-left: 1.25rem; }
.maneki-toc li { margin-bottom: .3rem; }
.maneki-toc a  { color: var(--primary); text-decoration: none; }
.maneki-toc a:hover { text-decoration: underline; }

/* =====================================================================
   FOOTER
===================================================================== */
.site-footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 2.5rem 0 0;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #334155;
}
.footer-brand h3 { color: #f8fafc; font-weight: 700; font-size: 1.1rem; margin-bottom: .4rem; }
.footer-brand p  { font-size: .875rem; line-height: 1.7; margin: 0; }
.footer-col h4   { color: #e2e8f0; font-weight: 600; font-size: .875rem; margin-bottom: .65rem; }
.footer-col ul   { list-style: none; padding: 0; margin: 0; }
.footer-col li   { margin-bottom: .4rem; }
.footer-col a    { color: #94a3b8; font-size: .875rem; text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #5eead4; }

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: .8125rem;
  color: #64748b;
}
.footer-bottom p { margin: 0 0 .3rem; }
.footer-bottom p:last-child { margin: 0; }
.footer-bottom a { color: #64748b; text-decoration: none; margin: 0 .4rem; transition: color .15s; }
.footer-bottom a:hover { color: #94a3b8; }

/* =====================================================================
   404 PAGE
===================================================================== */
.error-404 { text-align: center; padding: 3rem 1.5rem; }
.error-404 .code {
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-404 h1 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; color: #1f2937; margin-bottom: .75rem; }
.error-404 > p { color: var(--text-light); max-width: 440px; margin: 0 auto 1.5rem; }

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .15s;
  margin-top: 1rem;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

/* =====================================================================
   GUTENBERG BLOCK COMPATIBILITY
===================================================================== */
.wp-block-image img  { border-radius: var(--radius-sm); }
.wp-block-image      { margin: 1.5rem 0; }

.wp-block-quote {
  border-left: 4px solid var(--primary);
  background: #f0fdfa;
  margin: 1.5rem 0;
  padding: .875rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.wp-block-pullquote {
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}
.wp-block-button__link {
  background-color: var(--primary) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.wp-block-button__link:hover { background-color: var(--primary-dark) !important; }

.wp-block-separator { border-color: var(--border); margin: 1.5rem 0; }
.wp-block-code      { background: #1e293b; color: #e2e8f0; border-radius: var(--radius-sm); }
.wp-block-cover     { border-radius: var(--radius); }

.wp-block-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table td,
.wp-block-table th { border: 1px solid var(--border); padding: .55rem .875rem; }
.wp-block-table th { background: #f8fafc; font-weight: 600; }

.wp-block-columns { gap: 1.5rem; }
.wp-block-column  { min-width: 0; }

.has-primary-color { color: var(--primary) !important; }
.has-primary-background-color { background-color: var(--primary) !important; color: #fff !important; }
.has-secondary-background-color { background-color: var(--accent) !important; }

/* Alignment */
.alignleft  { float: left;  margin: .25rem 1.5rem 1rem 0; max-width: 50%; }
.alignright { float: right; margin: .25rem 0 1rem 1.5rem; max-width: 50%; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignwide  { margin-left: -1rem; margin-right: -1rem; max-width: calc(100% + 2rem); }
.alignfull  { margin-left: -1rem; margin-right: -1rem; max-width: calc(100% + 2rem); width: calc(100% + 2rem); }

/* =====================================================================
   UTILITIES
===================================================================== */
.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =====================================================================
   RESPONSIVE — TABLET ≥ 640px
===================================================================== */
@media (min-width: 640px) {
  .site-wrap    { padding: 0 1.5rem; }
  .content-area { padding: 0 1.5rem; }
  .header-inner { padding: 0 1.5rem; }
  .footer-inner { padding: 0 1.5rem 2rem; }

  .footer-grid  { grid-template-columns: repeat(2, 1fr); }
  .card-body    { padding: 1.5rem; }
}

/* =====================================================================
   RESPONSIVE — DESKTOP ≥ 1024px
===================================================================== */
@media (min-width: 1024px) {
  /* Two-column layout */
  .content-area { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 2.5rem; }
  .content-area.full-width { grid-template-columns: 1fr; max-width: 860px; }

  /* Show desktop nav, hide hamburger */
  .nav-desktop          { display: flex; }
  #mobile-menu-button   { display: none; }

  /* Footer three-column */
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

  .header-inner { padding: 0 2rem; height: 64px; }
  .footer-inner { padding: 0 2rem 2rem; }
  .content-area { padding: 0 2rem; margin-top: 2rem; }

  /* Wider alignment */
  .alignwide { margin-left: -2rem; margin-right: -2rem; max-width: calc(100% + 4rem); }
  .alignfull  { margin-left: -2rem; margin-right: -2rem; max-width: calc(100% + 4rem); width: calc(100% + 4rem); }
}

/* =====================================================================
   RESPONSIVE — LARGE ≥ 1280px
===================================================================== */
@media (min-width: 1280px) {
  .content-area { padding: 0 2rem; }
}

/* =====================================================================
   PRINT
===================================================================== */
@media print {
  .site-header, #search-overlay, #scroll-to-top, .site-footer,
  .post-nav, .tag-list, .ans-share-button, #comments { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .content-area { display: block; }
  .prose a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}.wp-block-quote{box-sizing:border-box;overflow-wrap:break-word}.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer{font-size:1.125em;text-align:right}.wp-block-quote>cite{display:block}.yarpp-related{margin-bottom:1em;margin-top:1em}.yarpp-related a{font-weight:700;text-decoration:none}.yarpp-related .yarpp-thumbnail-title{font-size:96%;font-weight:700;text-align:left;text-decoration:none}.yarpp-related h3{font-size:125%;font-weight:700;margin:0;padding:0 0 5px;text-transform:capitalize}