.page-hero { position: relative; overflow: hidden; padding: 46px 0 82px; border-bottom: 1px solid var(--border-light); background: radial-gradient( circle at 82% 10%, rgba(215, 166, 61, 0.12), transparent 32% ), linear-gradient(135deg, #17110b, #0d0b08); }
.page-hero::before { content: ""; position: absolute; top: -220px; right: -160px; width: 520px; height: 520px; border: 1px solid rgba(215, 166, 61, 0.12); border-radius: 50%; }
.breadcrumb { position: relative; z-index: 1; margin-bottom: 52px; padding: 0; background-color: transparent; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #827868; font-size: 0.82rem; }
.breadcrumb li + li::before { content: "/"; margin-right: 9px; color: #554d41; }
.breadcrumb a:hover { color: var(--brand-light); }
.page-hero-content { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4.8rem); letter-spacing: -0.045em; }
.page-hero-content > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--text-soft); font-size: 1.06rem; }

.page-section { padding: 100px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.035em; }
.section-heading > p { width: min(430px, 100%); margin-bottom: 4px; color: var(--text-soft); }

.category-section { position: sticky; top: 74px; z-index: 50; border-bottom: 1px solid var(--border-light); background: rgba(20, 16, 11, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.category-nav { display: flex; align-items: center; gap: 8px; overflow-x: auto; padding: 15px 0; scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a { flex: 0 0 auto; padding: 9px 16px; border: 1px solid var(--border-light); border-radius: 999px; color: var(--text-soft); background: rgba(255, 255, 255, 0.02); font-size: 0.86rem; font-weight: 600; white-space: nowrap; transition: color var(--transition), border-color var(--transition), background var(--transition); }
.category-nav a:hover { color: var(--brand-light); border-color: var(--border); }
.category-nav a.active { color: var(--text-dark); border-color: var(--brand); background: var(--brand); }
.category-tag { display: inline-flex; align-items: center; width: fit-content; padding: 5px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--brand-light); background: rgba(215, 166, 61, 0.08); font-size: 0.72rem; font-weight: 700; }

.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.content-card { overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); transition: transform var(--transition), border-color var(--transition); }
.content-card:hover { transform: translateY(-5px); border-color: var(--border); }
.content-card-image { display: block; overflow: hidden; aspect-ratio: 3 / 2; }
.content-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.content-card:hover .content-card-image img { transform: scale(1.035); }
.content-card-body { padding: 26px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 13px; margin-bottom: 14px; color: #948a79; font-size: 0.78rem; }
.article-meta span { color: var(--brand); }
.content-card-body h2 { margin-bottom: 13px; font-size: 1.25rem; }
.content-card-body h2 a:hover { color: var(--brand-light); }
.content-card-body p { margin-bottom: 18px; height: 5em; color: var(--text-soft); font-size: 0.91rem; -webkit-line-clamp: 3; }

.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin-top: 54px; }
.pagination a { min-width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 13px; border: 1px solid var(--border-light); border-radius: 8px; color: var(--text-soft); background: var(--surface); font-size: 0.86rem; }
.pagination a:hover, .pagination a.active { color: var(--text-dark); border-color: var(--brand); background: var(--brand); }
.pagination a.disabled { opacity: 0.4; pointer-events: none; }

.service-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-list-card { overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--surface); transition: transform var(--transition), border-color var(--transition); }
.service-list-card:hover { transform: translateY(-5px); border-color: var(--border); }
.service-list-image { display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.service-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.service-list-card:hover img { transform: scale(1.035); }
.service-list-body { padding: 27px; }
.service-list-body h2 { margin: 14px 0 12px; font-size: 1.3rem; }
.service-list-body h2 a:hover { color: var(--brand-light); }
.service-list-body p { height: 5em; color: var(--text-soft); font-size: 0.92rem; -webkit-line-clamp: 3; }

.services-page-grid { display: grid; gap: 28px; }
.service-page-card { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--surface); }
.service-page-card:nth-child(even) .service-page-image { order: 2; }
.service-page-image { min-height: 430px; }
.service-page-image img { width: 100%; height: 100%; object-fit: cover; }
.service-page-body { align-self: center; padding: 54px; }
.service-page-body .service-number { display: block; margin-bottom: 18px; color: var(--brand); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; }
.service-page-body h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.service-page-body > p { margin-bottom: 24px; color: var(--text-soft); }
.feature-list { display: grid; gap: 10px; margin-bottom: 30px; }
.feature-list li { position: relative; padding-left: 22px; color: #d1c7b7; font-size: 0.92rem; }
.feature-list li::before { content: ""; position: absolute; top: 0.75em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

.cta-section { padding: 0 0 100px; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 48px 52px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: radial-gradient( circle at 90% 10%, rgba(215, 166, 61, 0.14), transparent 28% ), var(--surface); }
.cta-box h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-box p:last-child { margin-bottom: 0; color: var(--text-soft); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; align-items: start; }
.featured-article { overflow: hidden; margin-bottom: 44px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--surface); }
.featured-article-image { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.featured-article-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-article-body { padding: 34px; }
.featured-article-body h2 { margin-bottom: 14px; font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.featured-article-body h2 a:hover, .article-row h2 a:hover { color: var(--brand-light); }
.featured-article-body p, .article-row p { color: var(--text-soft); }
.article-list { display: grid; }
.article-row { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--border-light); }
.article-row-image { overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 3 / 2; }
.article-row-image img { width: 100%; height: 100%; object-fit: cover; }
.article-row h2 { margin-bottom: 11px; font-size: 1.3rem; }
.article-row p { margin-bottom: 13px; font-size: 0.9rem; }

.sidebar { position: sticky; top: 100px; display: grid; gap: 22px; }
.sidebar-box { padding: 26px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); }
.sidebar-box > h2 { margin-bottom: 20px; font-size: 1rem; }
.category-list { display: grid; }
.category-list li + li { border-top: 1px solid var(--border-light); }
.category-list a { min-height: 45px; display: flex; align-items: center; justify-content: space-between; color: var(--text-soft); font-size: 0.88rem; }
.category-list a:hover { color: var(--brand-light); }
.category-list span { color: #6e6558; }
.sidebar-posts article { display: grid; grid-template-columns: 32px 1fr; gap: 8px; padding: 15px 0; border-top: 1px solid var(--border-light); }
.sidebar-posts article:first-child { padding-top: 0; border-top: 0; }
.sidebar-posts span { color: var(--brand); font-size: 0.77rem; font-weight: 800; }
.sidebar-posts h3 { margin: 0; font-size: 0.87rem; }
.sidebar-posts a:hover { color: var(--brand-light); }

.faq-container { max-width: 980px; }
.faq-card-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.faq-card { padding: 30px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); transition: transform var(--transition), border-color var(--transition); }
.faq-card:hover { transform: translateY(-4px); border-color: var(--border); }
.faq-card-category { margin-bottom: 13px; color: var(--brand); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; }
.faq-card h2 { margin-bottom: 12px; font-size: 1.25rem; }
.faq-card h2 a:hover { color: var(--brand-light); }
.faq-card p { margin-bottom: 17px; color: var(--text-soft); font-size: 0.91rem; }

.faq-list { border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px 6px; color: #eee5d6; font-size: 1.05rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: var(--brand); transform: translate(-50%, -50%); transition: transform var(--transition); }
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary { color: var(--brand-light); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { max-width: 820px; padding: 0 50px 26px 6px; color: var(--text-soft); }
.faq-answer p:last-child { margin-bottom: 0; }

.detail-container { max-width: 900px; }
.detail-hero { padding: 42px 0 74px; border-bottom: 1px solid var(--border-light); background: radial-gradient( circle at 85% 5%, rgba(215, 166, 61, 0.11), transparent 30% ), var(--bg-deep); }
.detail-header { padding-top: 24px; }
.detail-header h1 { margin: 18px 0; font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.04em; }
.detail-lead { max-width: 760px; margin-bottom: 20px; color: var(--text-soft); font-size: 1.08rem; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #82796b; font-size: 0.8rem; }
.detail-content, .service-detail-section, .faq-detail-section { padding: 70px 0 100px; }
.detail-cover { overflow: hidden; margin: 0 0 52px; border-radius: var(--radius-lg); }
.detail-cover img { width: 100%; }
.article-body { color: #c9bfaf; font-size: 1rem; line-height: 1.9; }
.article-body > p { margin-bottom: 24px; }
.article-body h2 { margin: 50px 0 18px; color: var(--text); font-size: clamp(1.55rem, 3vw, 2.15rem); }
.article-body h3 { margin: 34px 0 14px; color: #ece2d2; font-size: 1.3rem; }
.article-body ul, .article-body ol { display: grid; gap: 10px; margin: 20px 0 30px; padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li::marker { color: var(--brand); }

.feature-box-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 25px 0 42px; }
.feature-box { padding: 25px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); }
.feature-box > span { color: var(--brand); font-size: 0.78rem; font-weight: 800; }
.feature-box h3 { margin: 9px 0; color: var(--text); font-size: 1.05rem; }
.feature-box p { margin: 0; color: var(--text-soft); font-size: 0.88rem; }

.answer-highlight { margin-bottom: 46px; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(215, 166, 61, 0.07); }
.answer-highlight span { display: block; margin-bottom: 8px; color: var(--brand); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em; }
.answer-highlight p { margin: 0; color: #e7ddce; font-size: 1.06rem; }
.related-questions { margin-top: 60px; padding-top: 35px; border-top: 1px solid var(--border-light); }
.related-questions h2 { margin-bottom: 20px; font-size: 1.4rem; }
.related-questions a { display: block; padding: 15px 0; border-bottom: 1px solid var(--border-light); color: var(--text-soft); }
.related-questions a:hover { color: var(--brand-light); }

.related-section { padding: 0 0 100px; }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.related-card { padding: 25px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); transition: border-color var(--transition); }
.related-card span { display: block; margin-bottom: 8px; color: var(--brand); font-size: 0.74rem; }
.related-card h3 { margin: 0; font-size: 1.05rem; }
.related-card:hover { border-color: var(--border); }
.related-card:hover h3 { color: var(--brand-light); }

.detail-page .detail-container { max-width: var(--container); }
.detail-page .detail-hero { padding: 38px 0 66px; }
.detail-page .detail-hero .breadcrumb { margin-bottom: 34px; padding: 0; background: none; }
.detail-page .detail-header { max-width: 920px; padding-top: 8px; }
.detail-kicker { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.detail-kicker > span { color: #817768; font-size: 0.78rem; }
.detail-page .detail-header h1 { margin: 0 0 18px; font-size: clamp(2.35rem, 4.5vw, 4.35rem); }
.detail-page .detail-lead { margin-bottom: 20px; }
.detail-page .detail-meta { padding-top: 14px; border-top: 1px solid var(--border-light); }
.post-section { padding: 48px 0 100px; background: radial-gradient( circle at 12% 8%, rgba(215, 166, 61, 0.045), transparent 28% ), var(--bg); }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 30px; align-items: start; }
.post-main { min-width: 0; }
.post-card { overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14); }
.post-cover { overflow: hidden; aspect-ratio: 16 / 8.6; background: var(--surface-soft); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }

.post-card-content { padding: 38px 42px 42px; }
.post-card-content .table { border-spacing: 0; }
.post-card-content .bg-light , .post-card-content .card { background: var(--bg) !important; }
.post-card-content .text-primary { color: var(--brand) !important; }

.post-summary { margin-bottom: 24px; padding: 22px 24px; border-left: 3px solid var(--brand); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: rgba(215, 166, 61, 0.07); }
.post-summary strong { display: block; margin-bottom: 6px; color: var(--brand-light); font-size: 0.88rem; }
.post-summary p { margin: 0; color: #ddd2c1; font-size: 0.96rem; }
.post-toc { margin-bottom: 34px; padding: 24px 26px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--bg-deep); }
.post-toc > strong { display: block; margin-bottom: 13px; color: var(--text); font-size: 0.95rem; }
.post-toc ol { display: grid; gap: 8px; padding-left: 20px; list-style: decimal; }
.post-toc li { color: var(--brand); }
.post-toc a { color: var(--text-soft); font-size: 0.9rem; }
.post-toc a:hover { color: var(--brand-light); }
.detail-page .article-body { color: #cbc1b1; font-size: 1rem; line-height: 1.92; }
.detail-page .article-body .article-intro { color: #e1d7c7; font-size: 1.06rem; }
.detail-page .article-body h2 { position: relative; margin: 48px 0 17px; padding-left: 17px; font-size: clamp(1.55rem, 2.5vw, 2.05rem); }
.detail-page .article-body h2::before { content: ""; position: absolute; left: 0; top: 0.22em; width: 4px; height: 1.05em; border-radius: 999px; background: var(--brand); }
.detail-page .article-body h3 { margin: 32px 0 13px; }
.detail-page .article-body blockquote { margin: 30px 0; padding: 22px 25px; border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: var(--radius-md); color: #e7ddcd; background: rgba(215, 166, 61, 0.055); font-size: 1.02rem; }
.article-note { margin: 28px 0; padding: 22px 24px; border: 1px solid rgba(215, 166, 61, 0.19); border-radius: var(--radius-md); background: linear-gradient( 135deg, rgba(215, 166, 61, 0.08), rgba(255, 255, 255, 0.018) ); }
.article-note strong { display: block; margin-bottom: 5px; color: var(--brand-light); font-size: 0.88rem; }
.article-note p { margin: 0; color: var(--text-soft); }
.post-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.post-tags > span { margin-right: 3px; color: #807669; font-size: 0.78rem; }
.post-tags a { padding: 6px 11px; border: 1px solid var(--border-light); border-radius: 999px; color: var(--text-soft); font-size: 0.76rem; }
.post-tags a:hover { color: var(--brand-light); border-color: var(--border); }
.author-box { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 17px; align-items: center; margin-top: 30px; padding: 24px; border-radius: var(--radius-md); background: var(--bg-deep); }
.author-avatar { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text-dark); background: linear-gradient(135deg, var(--brand-light), var(--brand)); font-size: 1.2rem; font-weight: 900; }
.author-box span { display: block; color: #796f62; font-size: 0.72rem; }
.author-box strong { display: block; margin: 1px 0 4px; color: var(--text); }
.author-box p { margin: 0; color: var(--text-soft); font-size: 0.85rem; }
.post-navigation { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.post-navigation a { min-width: 0; padding: 20px 22px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); }
.post-navigation a:last-child { text-align: right; }
.post-navigation span { display: block; margin-bottom: 4px; color: var(--brand); font-size: 0.72rem; font-weight: 700; }
.post-navigation strong { display: block; overflow: hidden; color: #ddd3c3; font-size: 0.9rem; text-overflow: ellipsis; white-space: nowrap; }
.post-navigation a:hover { border-color: var(--border); }
.post-navigation a:hover strong { color: var(--brand-light); }
.post-related { margin-top: 52px; }
.post-section-title { margin-bottom: 22px; }
.post-section-title h2 { margin: 0; font-size: 1.65rem; }
.post-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.post-related-grid article { min-width: 0; }
.post-related-image { display: block; overflow: hidden; margin-bottom: 13px; border-radius: var(--radius-md); aspect-ratio: 3 / 2; }
.post-related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.post-related-grid article:hover img { transform: scale(1.035); }
.post-related-grid article > span { display: block; margin-bottom: 6px; color: var(--brand); font-size: 0.72rem; font-weight: 700; }
.post-related-grid h3 { margin: 0; font-size: 1rem; }
.post-related-grid h3 a:hover { color: var(--brand-light); }

.wp-sidebar { position: sticky; top: 98px; display: grid; gap: 18px; }
.widget { padding: 23px; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: var(--surface); }
.widget > h2 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); font-size: 0.98rem; }
.widget-toc { display: grid; }
.widget-toc a { position: relative; padding: 9px 0 9px 15px; color: var(--text-soft); font-size: 0.84rem; }
.widget-toc a::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-dark); }
.widget-toc a:hover { color: var(--brand-light); }
.widget-list { display: grid; }
.widget-list li + li { border-top: 1px solid var(--border-light); }
.widget-list a { min-height: 43px; display: flex; align-items: center; justify-content: space-between; color: var(--text-soft); font-size: 0.84rem; }
.widget-list a:hover { color: var(--brand-light); }
.widget-list span { color: #71685c; font-size: 0.74rem; }
.widget-posts { display: grid; gap: 14px; }
.widget-posts a { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 12px; align-items: center; }
.widget-posts img { width: 78px; height: 58px; object-fit: cover; border-radius: var(--radius-sm); }
.widget-posts strong { display: -webkit-box; overflow: hidden; margin-bottom: 3px; color: #d9cfbf; font-size: 0.8rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.widget-posts small { color: #756c60; font-size: 0.68rem; }
.widget-posts a:hover strong { color: var(--brand-light); }
.widget-highlight { border-color: var(--border); background: radial-gradient( circle at 90% 10%, rgba(215, 166, 61, 0.12), transparent 32% ), var(--surface); }
.widget-eyebrow { display: block; margin-bottom: 8px; color: var(--brand); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; }
.widget-highlight h2 { margin-bottom: 8px; padding: 0; border: 0; font-size: 1.12rem; }
.widget-highlight p { margin-bottom: 14px; color: var(--text-soft); font-size: 0.82rem; }

@media (max-width: 1024px) {
	.content-grid, .service-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.article-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 35px; }
	.article-row { grid-template-columns: 210px minmax(0, 1fr); }
	.service-page-body { padding: 38px; }
	.post-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; }
	.post-card-content { padding: 32px; }
	.widget { padding: 20px; }
}
@media (max-width: 860px) {
	.post-layout { grid-template-columns: 1fr; }
	.wp-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wp-sidebar .widget:first-child { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
	.category-section { top: 66px; }
	.page-hero { padding: 35px 0 65px; }
	.breadcrumb { margin-bottom: 38px; }
	.page-section { padding: 76px 0; }
	.section-heading { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 34px; }
	.service-page-card { grid-template-columns: 1fr; }
	.service-page-card:nth-child(even) .service-page-image { order: 0; }
	.service-page-image { min-height: auto; aspect-ratio: 16 / 9; }
	.article-layout { grid-template-columns: 1fr; }
	.sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cta-box { flex-direction: column; align-items: flex-start; padding: 38px; }
	.detail-content, .service-detail-section, .faq-detail-section { padding: 55px 0 80px; }
}
@media (max-width: 600px) {
	.page-hero { padding: 28px 0 54px; }
	.page-hero h1 { font-size: clamp(2.15rem, 11vw, 3rem); }
	.page-hero-content > p:last-child { font-size: 0.94rem; }
	.breadcrumb { margin-bottom: 34px; }
	.category-nav { margin-right: -14px; padding-right: 14px; }
	.page-section { padding: 62px 0; }
	.section-heading h2 { font-size: 2rem; }
	.content-grid, .service-list-grid, .faq-card-list, .feature-box-grid, .related-grid { grid-template-columns: 1fr; }
	.content-card-body, .service-list-body, .faq-card { padding: 22px; }
	.service-page-body { padding: 27px 23px 30px; }
	.service-page-image { aspect-ratio: 4 / 3; }
	.cta-section { padding-bottom: 70px; }
	.cta-box { padding: 28px 23px; }
	.cta-box .btn { width: 100%; }
	.featured-article-body { padding: 24px; }
	.article-row { grid-template-columns: 1fr; gap: 18px; }
	.article-row-image { aspect-ratio: 16 / 9; }
	.sidebar { grid-template-columns: 1fr; }
	.faq-item summary { min-height: 72px; padding: 18px 2px; font-size: 0.96rem; }
	.faq-answer { padding: 0 36px 22px 2px; font-size: 0.91rem; }
	.detail-hero { padding: 30px 0 54px; }
	.detail-header h1 { font-size: 2.2rem; }
	.detail-lead { font-size: 0.96rem; }
	.detail-content, .service-detail-section, .faq-detail-section { padding: 45px 0 65px; }
	.detail-cover { margin-bottom: 36px; border-radius: var(--radius-md); }
	.article-body { font-size: 0.94rem; }
	.article-body h2 { margin-top: 38px; }
	.answer-highlight { padding: 22px; }
	.detail-page .detail-hero { padding: 28px 0 46px; }
	.detail-page .detail-header h1 { font-size: 2.15rem; }
	.detail-page .detail-meta { display: grid; gap: 5px; }
	.post-section { padding: 28px 0 68px; }
	.post-card { margin-inline: -2px; border-radius: var(--radius-md); }
	.post-cover { aspect-ratio: 4 / 3; }
	.post-card-content { padding: 24px 20px 28px; }
	.post-summary, .post-toc, .article-note { padding: 19px; }
	.detail-page .article-body h2 { margin-top: 38px; padding-left: 14px; }
	.post-navigation { grid-template-columns: 1fr; }
	.post-navigation a:last-child { text-align: left; }
	.post-related-grid, .wp-sidebar { grid-template-columns: 1fr; }
	.wp-sidebar .widget:first-child { grid-column: auto; }
	.author-box { grid-template-columns: 48px minmax(0, 1fr); padding: 20px; }
	.author-avatar { width: 48px; height: 48px; }
}