.page-hero {
    background: linear-gradient(135deg, #1e5ab5 0%, #2575fc 50%, #4a90d9 100%);
    padding: 70px 0;
    color: #fff;
}
.hero-wrapper { display: flex; align-items: center; gap: 50px; }
.hero-text { flex: 1; }
.hero-text .badge-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}
.hero-text h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.hero-text p { font-size: 15px; opacity: 0.9; line-height: 1.7; margin-bottom: 25px; max-width: 550px; }
.hero-stats { display: flex; gap: 30px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 28px; font-weight: 700; }
.hero-stat .label { font-size: 12px; opacity: 0.8; }
.hero-visual { flex: 0 0 280px; text-align: center; }
.hero-visual .visual-card {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 40px 20px;
}
.hero-visual .visual-icon { font-size: 48px; margin-bottom: 12px; }
.hero-visual .visual-title { font-size: 18px; font-weight: 600; }
.hero-visual .visual-sub { font-size: 13px; opacity: 0.7; }

.content-section { padding: 60px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.section-header h2 { font-size: 22px; font-weight: 600; color: #333; }
.section-header .result-info { font-size: 13px; color: #999; }
.article-grid { display: flex; flex-direction: column; gap: 20px; }
.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.card-img-wrap {
    flex: 0 0 260px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.card-img-wrap .placeholder { font-size: 40px; color: #ccc; }
.card-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2575fc;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.card-body {
    flex: 1;
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.card-body h3 a { color: #333; text-decoration: none; transition: color 0.3s; }
.card-body h3 a:hover { color: #2575fc; }
.card-body .excerpt { font-size: 14px; color: #888; line-height: 1.6; margin-bottom: 15px; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.card-meta .date { color: #aaa; }
.card-meta .read-more { color: #2575fc; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.card-meta .read-more:hover { color: #1e5ab5; }

.empty-state { text-align: center; padding: 80px 20px; color: #ccc; }
.empty-state .empty-icon { font-size: 60px; margin-bottom: 15px; }
.empty-state p { font-size: 16px; }

.pagination-wrap { margin-top: 40px; text-align: center; }
.pages { display: inline-flex; gap: 5px; list-style: none; padding: 0; }
.pages li a, .pages li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.pages li a { background: #f5f5f5; color: #666; }
.pages li a:hover { background: #2575fc; color: #fff; }
.pages li.active span { background: #2575fc; color: #fff; }
.pages li.disabled span { background: #f9f9f9; color: #ccc; cursor: not-allowed; }

.sidebar { display: flex; flex-direction: column; gap: 25px; }
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}
.widget-categories { list-style: none; padding: 0; margin: 0; }
.widget-categories li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.widget-categories li:last-child { border-bottom: none; }
.widget-categories li a { color: #555; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.widget-categories li a:hover { color: #2575fc; }
.widget-categories .count {
    background: #f5f5f5;
    color: #999;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 10px;
}
.widget-posts { list-style: none; padding: 0; margin: 0; }
.widget-posts li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.widget-posts li:last-child { border-bottom: none; }
.widget-posts .wp-thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f5f5f5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ccc;
}
.widget-posts .wp-info { flex: 1; }
.widget-posts .wp-info a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.3s;
}
.widget-posts .wp-info a:hover { color: #2575fc; }
.widget-posts .wp-date { font-size: 12px; color: #bbb; }
.widget-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-tags a {
    background: #f5f5f5;
    color: #888;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.widget-tags a:hover { background: #2575fc; color: #fff; }

@media (max-width: 768px) {
    .page-hero { padding: 45px 0; }
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 24px; }
    .hero-text p { max-width: none; }
    .hero-stats { justify-content: center; }
    .hero-visual { flex: none; width: 100%; }
    .content-layout { grid-template-columns: 1fr; }
    .article-card { flex-direction: column; }
    .card-img-wrap { flex: none; height: 200px; }
    .section-header { flex-direction: column; gap: 6px; align-items: flex-start; }
}
