:root {
--clr-accent: #DE7356; --clr-text: #404040;
--clr-bg: #ffffff;
--clr-border: #eaeaea;
--font-main: 'Geist', sans-serif;
--header-height: 70px;
--sidebar-width: 300px;
--radius: 6px; --container-width: 1140px;
--header-height: 80px;
--sidebar-width: 365px;
} * { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; color: var(--clr-text); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--clr-accent); text-decoration: none; } .container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 1rem;
}
body {
font-family: var(--font-main);
color: var(--clr-text);
background: var(--clr-bg);
overflow-x: hidden; } .site-header {
background-color: var(--clr-accent);
color: #fff; height: 70px; 
display: flex;
align-items: center;
position: sticky;
top: 0;
z-index: 100; transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
} .site-header.is-scrolled {
height: 50px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.header-grid {
display: grid;
grid-template-columns: 50px 1fr 50px; align-items: center;
width: 100%;
}
.header-center {
text-align: center;
display: flex;
justify-content: center;
} .custom-logo-link img {
max-height: 40px; width: auto;
transition: max-height 0.3s ease;
}
.site-header.is-scrolled .custom-logo-link img {
max-height: 30px; } .site-title-text,
.footer-site-title {
color: #fff;
font-weight: 300!important; text-transform: uppercase; letter-spacing: 1px; font-size: 1.5rem!important;
} .btn-toggle-menu {
background: transparent;
border: none;
color: #fff;
cursor: pointer;
padding: 8px;
border-radius: var(--radius);
display: flex;
align-items: center;
gap: 10px; transition: background 0.2s;
}
.btn-toggle-menu:hover {
background: rgba(255,255,255, 0.1);
}
.btn-close-menu {
background: transparent;
border: none;
color: var(--clr-text);
cursor: pointer;
padding: 4px;
} .menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
z-index: 150;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease;
backdrop-filter: blur(2px);
}
.menu-overlay.is-active {
opacity: 1;
visibility: visible;
}
.menu-label {
display: none; font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.5px;
}
.sidebar-menu {
position: fixed;
top: 0;
left: 0;
width: var(--sidebar-width);
height: 100vh;
background: #fff;
z-index: 200;
transform: translateX(-100%);
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
border-right: 1px solid var(--clr-border);
display: flex;
flex-direction: column;
}
.sidebar-menu.is-active {
transform: translateX(0);
} .sidebar-header {
height: var(--header-height);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1.5rem;
border-bottom: 1px solid var(--clr-border);
flex-shrink: 0;
}
.sidebar-title {
font-weight: 600;
color: var(--clr-text);
} .btn-close-menu {
background: transparent;
border: none;
color: var(--clr-text);
cursor: pointer;
padding: 4px;
display: flex;
align-items: center;
justify-content: center;
} .sidebar-nav {
padding: 0;
overflow-y: auto;
flex-grow: 1;
}
.sidebar-list {
list-style: none;
padding: 0;
margin: 0;
} .sidebar-list li {
margin: 0;
border-bottom: 1px solid var(--clr-border);
}
.sidebar-list a {
display: flex; align-items: center;
width: 100%;
padding: 1.2rem 1.5rem;
color: var(--clr-text);
text-decoration: none;
font-size: 1rem;
font-weight: 500;
transition: background 0.2s, color 0.2s;
} .sidebar-list a:hover {
background-color: #fafafa;
color: var(--clr-accent);
} .sidebar-list .current-menu-item a {
background-color: #f0f0f0;
font-weight: 600;
color: var(--clr-accent);
} @media (max-width: 768px) {
.sidebar-menu {
width: 100%;
max-width: 100vw;
}
.sidebar-list a {
padding: 1.5rem; 
font-size: 1.1rem;
}
} .site-main {
padding: 3rem 0;
}
.page-header {
margin-bottom: 2rem;
text-align: center;
} .post-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
} .post-card {
background: #fff;
border: 1px solid #eaeaea;
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
display: flex;
flex-direction: column;
}
.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.post-thumbnail-link {
display: block;
height: 200px; overflow: hidden;
}
.post-image {
width: 100%;
height: 100%;
object-fit: cover; transition: transform 0.3s ease;
}
.post-card:hover .post-image {
transform: scale(1.05);
}
.post-content {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex-grow: 1; }
.post-meta {
font-size: 0.85rem;
margin-bottom: 0.5rem;
}
.post-meta a { color: #888; }
.entry-title {
font-size: 1.25rem;
margin-bottom: 0.75rem;
line-height: 1.3;
}
.entry-title a {
color: var(--clr-text);
}
.entry-title a:hover {
color: var(--clr-accent);
}
.entry-excerpt {
font-size: 0.95rem;
color: #666;
margin-bottom: 1.5rem;
flex-grow: 1; } .btn-read-more {
display: inline-block;
color: var(--clr-accent);
font-weight: 600;
text-transform: uppercase;
font-size: 0.8rem;
margin-top: auto; } .pagination {
margin-top: 3rem;
display: flex;
justify-content: center;
gap: 0.5rem;
}
.pagination .page-numbers {
padding: 0.5rem 1rem;
border: 1px solid #ddd;
color: var(--clr-text);
border-radius: 4px;
}
.pagination .current {
background-color: var(--clr-accent);
color: #fff;
border-color: var(--clr-accent);
} .site-footer {
background-color: var(--clr-accent);
color: #fff;
padding-top: 4rem;
padding-bottom: 2rem;
margin-top: auto; text-align: center;
} .footer-top {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
margin-bottom: 3rem;
} .footer-branding .custom-logo-link img {
max-height: 50px;
width: auto; filter: brightness(0) invert(1); 
opacity: 0.9;
}
.footer-site-title {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
} .footer-menu-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem 2.5rem; list-style: none;
margin: 0;
padding: 0;
}
.footer-menu-list a {
color: rgba(255, 255, 255, 0.7); font-weight: 500;
font-size: 0.95rem;
transition: color 0.2s ease;
}
.footer-menu-list a:hover {
color: #fff; } .footer-divider {
width: 100%;
height: 1px;
background-color: rgba(255, 255, 255, 0.15); margin-bottom: 2rem;
} .footer-bottom {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.5);
} .hero-news-section {
padding-bottom: 3rem;
border-bottom: 1px solid var(--clr-border);
margin-bottom: 3rem;
}
.ratio-16-9 {
display: block;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
border-radius: var(--radius);
background-color: #f0f0f0;
position: relative;
}
.ratio-16-9 img, .ratio-16-9 .img-cover {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
display: block;
}
.ratio-16-9:hover img, .ratio-16-9:hover .img-cover {
transform: scale(1.03);
} .hero-top-grid {
display: grid;
grid-template-columns: 1.5fr 1fr; gap: 0 2.5rem; margin-bottom: 2.5rem; grid-template-areas: 
"area-img area-title"
"area-img area-list"; grid-template-rows: min-content 1fr; 
} .hero-area-image { grid-area: area-img; }
.hero-area-title { grid-area: area-title; }
.hero-area-list  { grid-area: area-list; align-self: end; }  .accent-mark {
display: block;
width: 40px;
height: 6px;
background-color: var(--clr-accent);
margin-bottom: 1rem;
border-radius: 2px;
}
.hero-title-main {
font-size: 2.2rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: 1rem;
letter-spacing: -0.03em;
}
.hero-title-main a { color: var(--clr-text); }
.hero-title-main a:hover { color: var(--clr-accent); }
.hero-excerpt {
font-size: 1.05rem;
color: #666;
line-height: 1.5;
margin-bottom: 1.5rem;
}
.desktop-divider {
width: 100%;
height: 1px;
background: var(--clr-border);
margin-bottom: 1.5rem;
} .hero-mini-card {
border-bottom: 1px solid #f0f0f0;
padding-bottom: 1rem;
margin-bottom: 1rem;
}
.hero-mini-card:last-child { border: none; margin: 0; padding: 0; }
.mini-card-content { display: flex; align-items: flex-start; gap: 10px; }
.mini-icon {
color: var(--clr-accent);
width: 20px;
height: 20px;
margin-top: 5px;
flex-shrink: 0;
}
.hero-title-mini {
font-size: 1.2rem;
font-weight: 600;
line-height: 1.35;
margin: 0;
}
.hero-title-mini a { color: var(--clr-text); }
.hero-title-mini a:hover { color: var(--clr-accent); } .hero-bottom-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--clr-border);
}
.hero-grid-card {
display: flex;
flex-direction: column-reverse;  justify-content: flex-end; }
.hero-grid-card .grid-content { margin-top: 1rem; margin-bottom: 0; }
.hero-grid-card .grid-img-wrap { margin-bottom: 0; }
.accent-mark-small {
display: block;
width: 20px;
height: 4px;
background-color: var(--clr-accent);
margin-bottom: 0.5rem;
border-radius: 2px;
}
.hero-title-grid {
font-size: 1.1rem;
font-weight: 600;
line-height: 1.3;
}
.hero-title-grid a { color: var(--clr-text); } .latest-news-section {
padding-bottom: 4rem;
} .latest-news-section {
padding-bottom: 0rem;
margin-top: 2rem; } .latest-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem 3rem;
}
.latest-card {
display: flex;
align-items: center;
gap: 1.2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid #f0f0f0;
}
.latest-img-wrap {
flex-shrink: 0;
width: 140px;
height: 95px;
border-radius: var(--radius);
overflow: hidden;
background: #eee;
}
.latest-thumb {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
display: block;
}
.latest-card:hover .latest-thumb {
transform: scale(1.05);
} .latest-content {
flex-grow: 1;
display: flex;
flex-direction: column; }
.latest-title {
font-size: 1.05rem;
font-weight: 600;
line-height: 1.4;
margin: 0;
}
.latest-title a { color: var(--clr-text); }
.latest-title a:hover { color: var(--clr-accent); } .accent-mark-small {
display: block;
width: 25px;
height: 4px;
background-color: var(--clr-accent);
border-radius: 2px;
} .load-more-container {
text-align: center;
margin-top: 3rem; margin-bottom: 3rem;
}
.btn-load-more {
background-color: var(--clr-accent); color: #fff; cursor: pointer;
display: inline-block;
padding: 1rem 3.5rem; border: 2px solid var(--clr-accent); border-radius: 50px; font-weight: 600;
font-family: var(--font-main);
font-size: 0.95rem;
text-transform: uppercase; letter-spacing: 0.5px;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .btn-load-more:hover {
background-color: transparent;
color: var(--clr-accent);
transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15);
} @media (max-width: 900px) { .hero-top-grid {
display: flex;
flex-direction: column;
gap: 1.5rem;
} .hero-area-title { order: 1; }
.hero-area-image { order: 2; }
.hero-area-list  { order: 3; } .hero-area-title {
display: flex;
flex-direction: column;
}
.hero-title-main {
order: 1;
font-size: 1.6rem;
line-height: 1.2;
margin-bottom: 0.5rem;
} .hero-area-title .accent-mark {
order: 2;
margin-bottom: 0.5rem;
width: 30px;
height: 4px;
}
.hero-excerpt, .desktop-divider { display: none; } .hero-area-image {
margin-left: -1rem; 
margin-right: -1rem;
width: calc(100% + 2rem);
margin-bottom: 0;
}
.hero-area-image .ratio-16-9 { border-radius: 0; } .hero-area-list {
order: 3;
width: 100%;
align-self: stretch;
}
.secondary-posts-list {
display: flex;
flex-direction: column;
gap: 0;
width: 100%;
}
.hero-mini-card {
padding: 1rem 0rem 1rem 0rem; 
margin: 0;
border-bottom: 1px solid #e5e5e5;
width: 100%;
}
.hero-mini-card:last-child {
border-bottom: none;
padding-top: 1rem;
}
.mini-card-content {
margin-left: 0;
padding-left: 0;
gap: 12px;
display: flex;
align-items: flex-start;
}
.hero-title-mini {
font-size: 1.1rem;
line-height: 1.4; } .hero-bottom-row {
grid-template-columns: 1fr;
gap: 2rem;
padding-top: 2rem;
}
.hero-grid-card {
flex-direction: column; }
.hero-grid-card .grid-content {
display: flex; flex-direction: column-reverse; 
margin-bottom: 0.8rem;
margin-top: 0;
} .hero-title-grid {
font-size: 1.25rem;
margin-bottom: 0; }
.accent-mark-small {
margin-bottom: 0; 
margin-top: 0.5rem; width: 30px;
}
.hero-grid-card .grid-img-wrap {
border-radius: var(--radius);
width: 100%; 
margin-left: 0;
} .latest-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.latest-img-wrap {
width: 120px; 
height: 80px;
}
.latest-img-wrap {
width: 120px; height: 80px;
}
.section-heading {
margin-top: 2rem; }
}  .header-end {
display: flex;
justify-content: flex-end;
}
.btn-search-trigger {
background: transparent;
border: none;
color: #fff;
cursor: pointer;
padding: 8px;
border-radius: var(--radius);
transition: background 0.2s;
}
.btn-search-trigger:hover {
background: rgba(255,255,255,0.1);
} .search-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(5px); z-index: 9999;
opacity: 0;
visibility: hidden;
transition: all 0.2s ease;
display: flex;
justify-content: center;
align-items: flex-start; padding-top: 15vh; }
.search-overlay.is-active {
opacity: 1;
visibility: visible;
} .search-modal {
width: 100%;
max-width: 660px;
background: #fff;
border-radius: 12px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
overflow: hidden;
transform: scale(0.95);
transition: transform 0.2s ease;
margin: 0 1rem; }
.search-overlay.is-active .search-modal {
transform: scale(1);
} .search-header {
display: flex;
align-items: center;
padding: 1rem 1.5rem;
border-bottom: 1px solid var(--clr-border);
gap: 1rem;
}
.search-input-icon {
color: #999;
width: 20px;
}
#search-input {
flex-grow: 1;
border: none;
font-size: 1.2rem;
font-family: var(--font-main);
color: var(--clr-text);
outline: none;
background: transparent;
}
.btn-close-search {
background: #f0f0f0;
border: none;
padding: 0.3rem 0.6rem;
border-radius: 4px;
font-size: 0.75rem;
color: #666;
font-weight: 600;
cursor: pointer;
} .search-results-container {
max-height: 60vh; overflow-y: auto;
padding: 0.5rem 0;
} .search-placeholder {
padding: 4rem 4rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.5rem;
text-align: center;
color: #A0A0A0;
} .app-icon-frame {
width: 80px;
height: 80px; background: var(--clr-accent);
color: #FFFFFF;
border-radius: 20px; display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}
.search-placeholder:hover .app-icon-frame {
transform: scale(1.05) rotate(-3deg); } .app-icon-frame i {
color: #fff;
width: 36px;
height: 36px;
stroke-width: 2.5px; }
.search-no-results {
padding: 1.5rem;
text-align: center;
color: var(--clr-text);
} .search-result-item {
display: flex;
align-items: center;
padding: 0.8rem 1.5rem;
text-decoration: none;
gap: 1rem;
transition: background 0.1s;
border-left: 3px solid transparent; }
.search-result-item:hover {
background: #f9f9f9;
border-left-color: var(--clr-accent);
}
.search-icon-wrap {
color: #999;
}
.search-meta {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.search-title {
color: var(--clr-text);
font-weight: 500;
font-size: 1rem;
}
.search-type {
font-size: 0.75rem;
color: #999;
text-transform: uppercase;
margin-top: 2px;
}
.search-arrow {
width: 16px;
height: 16px;
color: #ccc;
opacity: 0;
transform: translateX(-5px);
transition: all 0.2s;
}
.search-result-item:hover .search-arrow {
opacity: 1;
transform: translateX(0);
color: var(--clr-accent);
} .search-footer {
padding: 0.8rem;
border-top: 1px solid var(--clr-border);
text-align: center;
background: #fafafa;
}
.btn-search-load-more {
background: transparent;
border: 1px solid var(--clr-border);
padding: 0.5rem 1.5rem;
border-radius: 20px;
color: #666;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.2s;
}
.btn-search-load-more:hover {
border-color: var(--clr-accent);
color: var(--clr-accent);
background: #fff;
} @media (min-width: 901px) {
.menu-label {
display: inline-block;
}
}  .content-limiter {
max-width: 650px;
margin: 0 auto;
} .entry-header {
margin-bottom: 2rem;
}
.entry-title {
font-size: 40px; font-weight: 700;
line-height: 1.1;
color: #111;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
.entry-subtitle {
font-size: 1rem;
line-height: 1.5;
color: #555;
margin-bottom: 1.5rem;
font-weight: 400;
} .entry-meta {
border-top: none; padding-top: 0.5rem; margin-bottom: 2rem;
}
.meta-author {
font-size: 1rem;
font-weight: 600;
color: #000;
margin-bottom: 0.2rem;
} .author-link {
color: var(--clr-accent); 
text-decoration: none;
transition: opacity 0.2s;
}
.author-link:hover {
opacity: 0.8; text-decoration: underline;
}
.meta-date {
font-size: 12px;
font-weight: 400;
color: #666;
} .share-bar {
display: flex;
gap: 0.8rem;
margin-bottom: 2.5rem;
}
.share-btn {
flex: 1;
display: flex;
align-items: center;
justify-content: center; padding: 0.6rem; border-radius: 12px; 
background-color: #f5f5f5;
transition: all 0.2s ease;
border: 1px solid transparent;
}
.share-btn svg, .share-btn i {
width: 20px;
height: 20px;
transition: fill 0.2s, color 0.2s;
} .btn-facebook { color: #1877F2; }
.btn-facebook:hover { background-color: #1877F2; color: #fff; }
.btn-whatsapp { color: #25D366; }
.btn-whatsapp:hover { background-color: #25D366; color: #fff; }
.btn-share { color: #666; }
.btn-share:hover { background-color: #404040; color: #fff; } .entry-content {
font-size: 1.125rem;
line-height: 1.8;
color: #333;
margin-bottom: 2rem;
}
.entry-content p {
margin-bottom: 1.5rem;
}
.entry-content h2, .entry-content h3 {
margin-top: 2.5rem;
margin-bottom: 1rem;
font-weight: 700;
line-height: 1.2;
}
.entry-content p a {
text-decoration: none;
font-weight: 600;
}
.entry-content p a:hover {
text-decoration: underline;
}
.wp-block-image :where(figcaption) {
font-size: 12px;
margin-top: 1rem;
}
:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img) {
border-radius: 0.8rem;
} @media (max-width: 768px) {
.content-limiter {
max-width: 100%;
} .entry-title {
font-size: 28px; 
}
} .entry-content blockquote {
margin: 3rem 0;
border: none;
position: relative;
text-align: inherit; } .entry-content blockquote p {
font-size: 20px; font-weight: 600;
line-height: 1.5;
color: #111;
margin: 0;
padding: 0.8rem 1rem;
font-style: normal;
} .entry-content blockquote::before,
.entry-content blockquote::after {
content: "";
display: block;
width: 100%;
height: 6px;  background-image: 
linear-gradient(var(--clr-accent), var(--clr-accent)), linear-gradient(#e5e5e5, #e5e5e5);  background-size: 
120px 4px, 100% 1px;  background-position: center center; background-repeat: no-repeat;
} .entry-content blockquote::before {
margin-bottom: 2rem; }
.entry-content blockquote::after {
margin-top: 2rem; } .entry-content blockquote cite {
display: block;
margin-top: 1rem;
font-size: 0.9rem;
color: #666;
font-weight: 400;
}  .entry-content ul, 
.entry-content ol {
margin: 2.5rem 0; padding: 0;
list-style: none; } .entry-content li {
margin-bottom: 1rem; position: relative; line-height: 1.6;
} .entry-content ul li {
padding-left: 1.5rem; }
.entry-content ul li::before {
content: "";
position: absolute;
left: 0;
top: 10px; width: 6px; height: 6px;
background-color: var(--clr-accent); border-radius: 1px; } .entry-content ol {
counter-reset: post-counter; }
.entry-content ol li {
padding-left: 2rem; }
.entry-content ol li::before {
content: counter(post-counter) "."; counter-increment: post-counter; position: absolute;
left: 0;
top: 0; color: var(--clr-accent); font-weight: 600; font-family: var(--font-main);
} .entry-tags {
margin-bottom: 1rem; padding-bottom: 2rem; display: flex;
flex-wrap: wrap; gap: 0.8rem; }
.tag-btn {
background-color: #E1E1E1; color: #555; font-size: 12px; font-weight: 400;
text-transform: uppercase; padding: 5px 10px; border-radius: 4px; text-decoration: none;
transition: all 0.2s ease;
letter-spacing: 0.5px;
}
.tag-btn:hover {
background-color: #d4d4d4; color: #111; } .most-read-section {
padding-top: 2rem;
border-top: 1px solid #eee;
} .most-read-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.5rem;
color: #333;
margin-bottom: 1rem;
font-weight: 400; }
.most-read-title strong {
font-weight: 700; margin-left: -6px;
}
.most-read-title svg {
color: var(--clr-accent)!important; width: 24px;
height: 24px;
} .most-read-list {
display: flex;
flex-direction: column;
} .most-read-item {
display: grid; grid-template-columns: 40px 1fr 120px; 
gap: 1.5rem;
align-items: center; text-decoration: none;
padding: 1.5rem 0;
border-bottom: 1px solid #eee; transition: background 0.2s;
}
.most-read-item:last-child {
border-bottom: none;
} .read-number {
font-size: 3rem; font-weight: 300; color: #ccc; line-height: 1;
text-align: center;
font-family: var(--font-main); } .read-post-title {
font-size: 1.1rem;
font-weight: 700;
line-height: 1.3;
margin: 0;
color: var(--clr-accent); transition: color 0.2s;
}
.most-read-item:hover .read-post-title {
text-decoration: underline;
} .read-img-wrap {
width: 120px;
height: 80px;
border-radius: 8px; overflow: hidden;
background: #f0f0f0;
}
.read-thumb {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}
.most-read-item:hover .read-thumb {
transform: scale(1.05);
}
.read-fallback {
width: 100%; height: 100%; background: #eee;
} @media (max-width: 600px) {
.most-read-item { grid-template-columns: 30px 1fr 100px; 
gap: 1rem;
}
.read-number {
font-size: 2.2rem;
}
.read-post-title {
font-size: 1rem;
}
.read-img-wrap {
width: 100px;
height: 70px;
}
} @media (max-width: 768px) {
.entry-content blockquote p {
font-size: 18px; }
} .page-header {
margin-bottom: 3rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--clr-border);
}
.page-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--clr-text);
text-transform: uppercase;
letter-spacing: -1px;
}
.page-title span {
color: var(--clr-accent); }
.archive-description {
font-size: 1.1rem;
color: #666;
margin-top: 1rem;
max-width: 800px;
} .pagination {
margin-top: 3rem;
display: flex;
justify-content: center;
gap: 0.5rem;
}
.pagination .page-numbers {
display: inline-flex; align-items: center; justify-content: center; height: 40px; min-width: 40px; padding: 0 0.8rem; border: 1px solid #ddd;
color: var(--clr-text);
border-radius: 4px;
text-decoration: none;
font-weight: 500;
line-height: 1; transition: all 0.2s;
}  .pagination {
margin-top: 3rem;
width: 100%;
display: flex;
justify-content: center;
} .pagination .nav-links {
display: flex; align-items: center; gap: 0.5rem; } .pagination .page-numbers {
display: flex; align-items: center; justify-content: center; height: 44px; min-width: 44px; padding: 0 6px; border: 1px solid #ddd;
color: var(--clr-text);
border-radius: 8px; text-decoration: none;
font-weight: 600;
line-height: 1; transition: all 0.2s;
} .pagination .page-numbers i, 
.pagination .page-numbers svg {
width: 20px;
height: 20px;
display: block;  } .pagination .current {
background-color: var(--clr-accent);
color: #fff;
border-color: var(--clr-accent);
} .pagination a.page-numbers:hover {
border-color: var(--clr-accent);
color: var(--clr-accent);
background-color: transparent;
transform: translateY(-2px); } .ai-faq-section {
margin-top: 2rem;
padding-top: 0rem;
border-top: 1px solid #eee; } .faq-main-title {
font-family: var(--font-main); font-size: 1.4rem;
margin-bottom: 2rem;
color: #111;
font-weight: 400; letter-spacing: -0.5px;
} .ai-faq-item {
background-color: #f8f9fa; border-radius: 8px; margin-bottom: 1rem; border: 1px solid transparent;
transition: all 0.2s ease;
overflow: hidden; } .ai-faq-item:hover {
background-color: #fff; border-color: #e0e0e0; box-shadow: 0 4px 12px rgba(0,0,0,0.05); } .ai-faq-item summary {
cursor: pointer;
padding: 1.2rem 1.5rem; list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
} .ai-faq-item summary::-webkit-details-marker { display: none; } .faq-question-text {
font-weight: 600;
font-size: 1rem;
color: #333;
text-align: left;
} .faq-icon svg {
width: 20px;
height: 20px;
color: #999; transition: transform 0.3s ease, color 0.3s ease;
} .ai-faq-item[open] {
background-color: #fff; border-color: #eee;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
} .ai-faq-item[open] .faq-icon svg {
transform: rotate(180deg);
color: var(--clr-accent); } .ai-faq-answer {
padding: 0 1.5rem 1.5rem 1.5rem; color: #555;
line-height: 1.6;
font-size: 1rem;
border-top: 1px solid transparent; animation: slideDown 0.3s ease-out;
} @keyframes slideDown {
from { opacity: 0; transform: translateY(-5px); }
to { opacity: 1; transform: translateY(0); }
} .faq-ai-disclaimer {
margin-top: 1.5rem;
display: flex;
align-items: flex-start; gap: 8px;
font-size: 12px;
color: #999;
font-style: italic;
line-height: 1.4; } .faq-ai-disclaimer svg {
color: var(--clr-accent);
opacity: 1;
margin-top: 2px; flex-shrink: 0; } .related-section {
margin-top: 3rem;
padding-bottom: 2rem;
padding-top: 2rem;
border-top: 1px solid #eee;
}
.related-title {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #111;
display: flex;
align-items: center;
gap: 10px;
} .related-title .accent-line {
display: block;
width: 4px;
height: 24px;
background-color: var(--clr-accent);
border-radius: 2px;
} .related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
} .related-card {
display: flex;
flex-direction: column;
} .related-img-wrap {
width: 100%;
aspect-ratio: 16/9; border-radius: 8px;
overflow: hidden;
margin-bottom: 0.8rem;
background-color: #f0f0f0;
}
.related-thumb {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.related-card:hover .related-thumb {
transform: scale(1.05); } .related-content {
display: flex;
flex-direction: column;
}
.related-cat {
font-size: 0.75rem;
text-transform: uppercase;
color: var(--clr-accent); font-weight: 700;
margin-bottom: 0.4rem;
}
.related-card-title {
font-size: 1rem;
line-height: 1.4;
font-weight: 700;
margin: 0;
}
.related-card-title a {
color: #111;
text-decoration: none;
transition: color 0.2s;
}
.related-card:hover .related-card-title a {
color: var(--clr-accent);
} .related-fallback {
width: 100%; height: 100%; background: #eee;
} @media (max-width: 600px) {
.related-grid {
grid-template-columns: 1fr; gap: 2rem;
}  } .ai-key-points {
background-color: #fff8e1; border-left: 4px solid #ffc107; padding: 1.5rem;
margin-bottom: 2rem;
border-radius: 0 8px 8px 0;
}
.ai-points-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 1rem;
color: #856404; }
.ai-key-points ul {
margin: 0;
padding-left: 1.2rem;
}
.ai-key-points li {
margin-bottom: 0.5rem;
color: #333;
font-size: 1.05rem;
line-height: 1.5;
} .ai-key-points-wrapper {
margin-bottom: 2rem;
}
.ai-key-points-accordion {
background-color: #f8f9fa; border-radius: 8px;
border: 1px solid transparent;
overflow: hidden;
transition: all 0.2s ease;
}
.ai-key-points-accordion:hover {
background-color: #fff;
border-color: #e0e0e0;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ai-key-points-accordion summary {
cursor: pointer;
padding: 1.2rem 1.5rem;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.ai-key-points-accordion summary::-webkit-details-marker { display: none; } .kp-title {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.05rem;
color: #333;
}
.kp-title svg {
color: #999; } .kp-icon svg {
color: #999;
transition: transform 0.3s ease;
} .ai-key-points-accordion[open] {
background-color: #fff;
border-color: #eee;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ai-key-points-accordion[open] .kp-icon svg {
transform: rotate(180deg);
color: var(--clr-accent);
} .kp-content {
padding: 0 1.5rem 1.5rem 1.5rem;
color: #555;
line-height: 1.6;
animation: slideDown 0.3s ease-out;
}
.kp-content ul {
margin: 0;
padding-left: 1.2rem;
}
.kp-content li {
margin-bottom: 0.5rem;
}  @media (min-width: 901px) { .hero-area-image {
height: 100%;
display: flex;
flex-direction: column;
} .hero-area-image .hero-main-img-wrap {
aspect-ratio: auto !important; height: 100%; flex-grow: 1;
display: flex; } .hero-area-image .hero-main-img-wrap img {
height: 100%;
width: 100%;
object-fit: cover; }
}