/* ============================================================
   茶饮趋势 buydaili.com — Perfect Daily Grind 风格样式
   配色: 深海军蓝 #071c39 / 链接蓝 #284059 / 高亮黄 #fdd835
   ============================================================ */

:root {
    --pdg-navy: #071c39;
    --pdg-navy2: #284059;
    --pdg-link: #283859;
    --pdg-accent: #fdd835;
    --pdg-navlink: #cdbfe3;
    --pdg-heading: #262626;
    --pdg-gray: #595959;
    --pdg-gray2: #5f5f5f;
    --pdg-border: #eaecef;
    --pdg-bg: #ffffff;
    --pdg-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--pdg-font);
    font-size: 16px;
    color: #000;
    background: var(--pdg-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; border: 0; }

ul, ol { list-style: none; }

a {
    color: var(--pdg-link);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover { color: #000; }

h1, h2, h3, h4, h5, h6 {
    color: var(--pdg-heading);
    font-weight: 700;
    line-height: 1.3;
}

.pdg-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============ 页头 ============ */
.pdg-masthead {
    background: var(--pdg-navy);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0 -1px rgba(0,0,0,.1);
}

.pdg-masthead-top {
    position: relative;
    text-align: center;
    padding: 26px 56px 18px;
}

.pdg-site-title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: .12em;
    color: #fff;
    margin: 0;
}
.pdg-site-title a { color: #fff; }
.pdg-site-title a:hover { color: var(--pdg-accent); }
.pdg-site-title small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .35em;
    color: var(--pdg-navlink);
    margin-top: 6px;
    text-transform: uppercase;
}

.pdg-nav-toggle {
    display: none !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: rgba(255,255,255,.12);
    cursor: pointer;
    padding: 10px 9px;
}
.pdg-nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    border-radius: 1px;
}

.pdg-primary-nav {
    border-top: 1px solid rgba(255,255,255,.14);
    position: relative;
}
.pdg-primary-nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 130px 0 0;
    list-style: none;
    margin: 0;
}
.pdg-primary-nav ul::-webkit-scrollbar { display: none; }
.pdg-primary-nav ul > li { display: inline-block !important; vertical-align: top; }
.pdg-primary-nav li a {
    display: block;
    padding: 13px 15px;
    color: var(--pdg-navlink);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}
.pdg-primary-nav li a:hover,
.pdg-primary-nav li a.cur {
    color: #fff;
    background: rgba(0,0,0,.18);
}
.pdg-primary-nav li a.cur { color: var(--pdg-accent); }

.pdg-header-search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.pdg-header-search input {
    width: 150px;
    padding: 7px 12px;
    font-size: 13px;
    font-family: var(--pdg-font);
    border: 0;
    border-radius: 6px 0 0 6px;
    outline: none;
    color: var(--pdg-heading);
    background: #fff;
}
.pdg-header-search button {
    padding: 8px 14px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: var(--pdg-navy2);
    color: #fff;
    font-size: 13px;
    font-family: var(--pdg-font);
    cursor: pointer;
}
.pdg-header-search button:hover { background: #33496a; }

/* ============ 通用版块标题 ============ */
.pdg-main-cat-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--pdg-heading);
    padding-bottom: 12px;
    margin: 38px 0 22px;
    border-bottom: 1px solid var(--pdg-border);
}
.pdg-main-cat-title .pdg-sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--pdg-gray2);
    letter-spacing: .18em;
    margin-left: 10px;
    text-transform: uppercase;
}

/* ============ 首页: 最新文章 ============ */
.pdg-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.pdg-latest-grid > * { min-width: 0; }

.pdg-post-card .pdg-post-thumb {
    display: block;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f2f2f2;
}
.pdg-post-card .pdg-post-thumb img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.pdg-post-card:hover .pdg-post-thumb img { transform: scale(1.04); }

.pdg-post-card .pdg-post-meta {
    font-size: 13px;
    color: var(--pdg-gray);
    margin-bottom: 6px;
}
.pdg-post-card .pdg-post-meta a { color: var(--pdg-gray); }
.pdg-post-card .pdg-post-meta a:hover { color: var(--pdg-navy2); }

.pdg-post-card h3 {
    font-size: 18px;
    line-height: 1.45;
    margin: 0;
}
.pdg-post-card h3 a { color: var(--pdg-heading); }
.pdg-post-card h3 a:hover { color: var(--pdg-navy2); }

.pdg-post-card .pdg-post-excerpt {
    font-size: 14px;
    color: var(--pdg-gray2);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============ 首页: 栏目分组 ============ */
.pdg-cat-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}
.pdg-cat-cols > * { min-width: 0; }

.pdg-cat-col .pdg-cat-name {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--pdg-heading);
    margin-bottom: 12px;
}
.pdg-cat-col .pdg-cat-name:hover { color: var(--pdg-navy2); }

.pdg-cat-col .pdg-cat-lead {
    display: block;
    overflow: hidden;
    background: #f2f2f2;
    margin-bottom: 14px;
}
.pdg-cat-col .pdg-cat-lead img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.pdg-cat-col .pdg-cat-lead:hover img { transform: scale(1.04); }

.pdg-cat-post { padding: 10px 0; border-top: 1px solid var(--pdg-border); }
.pdg-cat-post .pdg-post-meta { font-size: 12.5px; color: var(--pdg-gray); margin-bottom: 3px; }
.pdg-cat-post h4 { font-size: 16px; line-height: 1.45; margin: 0 0 4px; }
.pdg-cat-post h4 a { color: var(--pdg-heading); }
.pdg-cat-post h4 a:hover { color: var(--pdg-navy2); }
.pdg-cat-post p {
    font-size: 13.5px;
    color: var(--pdg-gray2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.pdg-cat-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pdg-navy2);
}
.pdg-cat-more:hover { color: #000; }

/* ============ 首页: 标签 / 友情链接 ============ */
.pdg-panel {
    border: 1px solid var(--pdg-border);
    padding: 20px 22px;
    margin-bottom: 26px;
}
.pdg-panel h2 {
    font-size: 18px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pdg-navy);
}
.pdg-tagcloud { display: flex; flex-wrap: wrap; }
.pdg-hotkeywords { display: flex; flex-wrap: wrap; padding-bottom: 30px; }
.pdg-hotkeywords a {
    display: inline-block;
    font-size: 14px;
    color: var(--pdg-gray2);
    background: #f4f4f4;
    padding: 5px 14px;
    margin: 0 10px 10px 0;
    border-radius: 3px;
}
.pdg-hotkeywords a:hover { background: var(--pdg-navy); color: #fff; }
.pdg-tagcloud a {
    display: inline-block;
    font-size: 14px;
    color: var(--pdg-gray2);
    padding: 3px 12px;
    margin: 0 10px 8px 0;
    background: #f4f4f4;
    border-radius: 3px;
}
.pdg-tagcloud a:hover { background: var(--pdg-navy); color: #fff; }
.pdg-panel ul { display: flex; flex-wrap: wrap; }
.pdg-panel li { margin: 0 10px 8px 0; }
.pdg-panel li a {
    display: inline-block;
    font-size: 14px;
    color: var(--pdg-gray2);
    padding: 3px 12px;
    background: #f4f4f4;
    border-radius: 3px;
}
.pdg-panel li a:hover {
    background: var(--pdg-navy);
    color: #fff;
}
.pdg-links-panel li { margin: 0 14px 6px 0; }
.pdg-links-panel li a {
    background: none;
    padding: 0;
    font-size: 14px;
    color: var(--pdg-link);
    font-weight: 500;
}
.pdg-links-panel li a:hover { color: #000; text-decoration: underline; }

/* ============ 两栏布局(列表/文章页) ============ */
.pdg-with-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
    padding-bottom: 40px;
}
.pdg-with-side > * { min-width: 0; }

.pdg-breadcrumb {
    padding: 12px 0;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--pdg-border);
    font-size: 12.5px;
    color: var(--pdg-gray2);
}
.pdg-breadcrumb a { color: var(--pdg-gray2); }
.pdg-breadcrumb a:hover { color: var(--pdg-navy2); }

.pdg-page-title {
    font-size: 30px;
    margin: 14px 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--pdg-border);
}

/* ============ 列表页文章行 ============ */
.pdg-list-lead {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--pdg-border);
}
.pdg-list-lead .pdg-lead-thumb { display: block; overflow: hidden; background: #f2f2f2; margin-bottom: 14px; }
.pdg-list-lead .pdg-lead-thumb img { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; transition: transform .25s ease; }
.pdg-list-lead:hover .pdg-lead-thumb img { transform: scale(1.03); }
.pdg-list-lead h2 { font-size: 24px; margin: 0 0 8px; }
.pdg-list-lead h2 a { color: var(--pdg-heading); }
.pdg-list-lead h2 a:hover { color: var(--pdg-navy2); }
.pdg-list-lead p {
    font-size: 15px;
    color: var(--pdg-gray2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdg-list-row {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--pdg-border);
}
.pdg-list-row > * { min-width: 0; }
.pdg-list-row .pdg-row-thumb { display: block; overflow: hidden; background: #f2f2f2; }
.pdg-list-row .pdg-row-thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .25s ease; }
.pdg-list-row:hover .pdg-row-thumb img { transform: scale(1.04); }
.pdg-list-row h2 { font-size: 19px; line-height: 1.45; margin: 2px 0 8px; }
.pdg-list-row h2 a { color: var(--pdg-heading); }
.pdg-list-row h2 a:hover { color: var(--pdg-navy2); }
.pdg-list-row .pdg-post-meta { font-size: 13px; color: var(--pdg-gray); margin-bottom: 8px; }
.pdg-list-row p {
    font-size: 14px;
    color: var(--pdg-gray2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.pdg-list-row .pdg-kws { margin-top: 10px; }
.pdg-list-row .pdg-kws a {
    display: inline-block;
    font-size: 12px;
    color: var(--pdg-gray2);
    background: #f4f4f4;
    padding: 2px 9px;
    margin: 0 6px 6px 0;
    border-radius: 3px;
}
.pdg-list-row .pdg-kws a:hover { background: var(--pdg-navy); color: #fff; }

/* ============ 分页 ============ */
.pdg-pagination { padding: 26px 0 6px; text-align: center; font-size: 14px; }
.pdg-pagination a,
.pdg-pagination strong {
    display: inline-block;
    min-width: 34px;
    padding: 6px 12px;
    margin: 0 3px;
    background: var(--pdg-navy2);
    color: #fff;
    border-radius: 3px;
    font-weight: 400;
}
.pdg-pagination strong { background: #fff; color: var(--pdg-navy2); border: 1px solid var(--pdg-navy2); }
.pdg-pagination a:hover { background: var(--pdg-navy); }
.pdg-pagination .page_now,
.pdg-pagination .cur { background: #fff; color: var(--pdg-navy2); border: 1px solid var(--pdg-navy2); }

/* ============ 文章页 ============ */
.pdg-article-title {
    font-size: 30px;
    line-height: 1.4;
    margin: 16px 0 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pdg-border);
}

.pdg-article-byline {
    font-size: 14px;
    color: var(--pdg-gray);
    margin-bottom: 8px;
}
.pdg-article-byline span { margin-right: 16px; }

.pdg-article-notice {
    font-size: 14px;
    color: var(--pdg-gray2);
    background: #f7f7f9;
    border-left: 3px solid var(--pdg-navy2);
    padding: 10px 14px;
    margin: 14px 0 24px;
    line-height: 1.7;
}

.pdg-article-content {
    font-size: 17px;
    line-height: 1.9;
    color: #1f1f1f;
    word-break: break-word;
}
.pdg-article-content p { margin: 0 0 20px; }
.pdg-article-content img { height: auto; margin: 6px 0; }
.pdg-article-content h2 {
    font-size: 24px;
    margin: 34px 0 16px;
    padding-top: 10px;
}
.pdg-article-content h3 { font-size: 20px; margin: 28px 0 14px; }
.pdg-article-content h4 { font-size: 18px; margin: 24px 0 12px; }
.pdg-article-content a { font-weight: 700; color: var(--pdg-link); text-decoration: underline; }
.pdg-article-content a:hover { color: #000; }
.pdg-article-content ul, .pdg-article-content ol {
    margin: 0 0 20px 24px;
    list-style: disc;
}
.pdg-article-content ol { list-style: decimal; }
.pdg-article-content li { margin-bottom: 6px; }
.pdg-article-content blockquote {
    margin: 20px 0;
    padding: 12px 18px;
    background: #f7f7f9;
    border-left: 4px solid var(--pdg-navy2);
    color: var(--pdg-gray2);
}
.pdg-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}
.pdg-article-content th,
.pdg-article-content td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
}
.pdg-article-content th { background: #f4f6f8; }
.pdg-article-content pre { background: #f4f6f8; padding: 14px; overflow: auto; font-size: 14px; }

.pdg-article-kws {
    margin: 30px 0 6px;
    padding-top: 18px;
    border-top: 1px solid var(--pdg-border);
}
.pdg-article-kws a {
    display: inline-block;
    font-size: 13px;
    color: var(--pdg-gray2);
    background: #f4f4f4;
    padding: 4px 12px;
    margin: 0 8px 8px 0;
    border-radius: 3px;
}
.pdg-article-kws a:hover { background: var(--pdg-navy); color: #fff; }

.pdg-prevnext {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 8px;
}
.pdg-prevnext > * { min-width: 0; }
.pdg-prevnext a {
    display: block;
    border: 1px solid var(--pdg-border);
    padding: 14px 16px;
    min-width: 0;
}
.pdg-prevnext em {
    display: block;
    font-style: normal;
    font-size: 12.5px;
    color: var(--pdg-gray);
    margin-bottom: 5px;
}
.pdg-prevnext h3 {
    font-size: 15px;
    line-height: 1.5;
    color: var(--pdg-heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pdg-prevnext a:hover { border-color: var(--pdg-navy2); background: #fafbfd; }
.pdg-prevnext .pdg-next { text-align: right; }

.pdg-related {
    margin: 26px 0 10px;
}
.pdg-related h2 {
    font-size: 20px;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pdg-navy);
}
.pdg-related ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4px 26px; }
.pdg-related ul > * { min-width: 0; }
.pdg-related li { padding: 7px 0; border-bottom: 1px dashed #e5e7ea; }
.pdg-related li a {
    font-size: 15px;
    color: var(--pdg-link);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pdg-related li a:hover { color: #000; }

/* ============ 侧栏 ============ */
.pdg-widget {
    border: 1px solid var(--pdg-border);
    padding: 18px 18px 10px;
    margin-bottom: 24px;
}
.pdg-widget h3 {
    font-size: 16px;
    color: var(--pdg-navy2);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pdg-navy);
}
.pdg-widget-thumb {
    display: block;
    overflow: hidden;
    background: #f2f2f2;
    margin-bottom: 12px;
}
.pdg-widget-thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.pdg-widget-thumb span {
    position: static;
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--pdg-heading);
    line-height: 1.5;
    padding: 10px 2px 4px;
    background: none;
}
.pdg-widget-thumb:hover span { color: var(--pdg-navy2); }

.pdg-widget-list li {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #e5e7ea;
}
.pdg-widget-list li:last-child { border-bottom: 0; }
.pdg-widget-list li i {
    flex: none;
    width: 66px;
    height: 66px;
    overflow: hidden;
    background: #f2f2f2;
}
.pdg-widget-list li i img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdg-widget-list li p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--pdg-heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pdg-widget-list li:hover p { color: var(--pdg-navy2); }

.pdg-widget-num { counter-reset: pdgnum; }
.pdg-widget-num li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7ea;
    counter-increment: pdgnum;
}
.pdg-widget-num li:last-child { border-bottom: 0; }
.pdg-widget-num li i {
    flex: none;
    width: 20px;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #9aa7b8;
    text-align: center;
    border-radius: 3px;
    line-height: 20px;
}
.pdg-widget-num li i::before { content: counter(pdgnum); }
.pdg-widget-num li:nth-child(1) i { background: var(--pdg-navy); }
.pdg-widget-num li:nth-child(2) i { background: #33496a; }
.pdg-widget-num li:nth-child(3) i { background: #55688a; }
.pdg-widget-num li a {
    font-size: 14px;
    color: var(--pdg-link);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pdg-widget-num li a:hover { color: #000; }

.pdg-widget-text li { padding: 8px 0; border-bottom: 1px dashed #e5e7ea; }
.pdg-widget-text li:last-child { border-bottom: 0; }
.pdg-widget-text li a {
    font-size: 14px;
    color: var(--pdg-link);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pdg-widget-text li a:hover { color: #000; }

/* ============ 页脚 ============ */
.pdg-footer {
    background: var(--pdg-navy);
    color: #fff;
    margin-top: 30px;
    padding: 34px 0 26px;
    font-size: 14px;
}
.pdg-footer a { color: #fff; }
.pdg-footer a:hover { color: var(--pdg-accent); }

.pdg-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: start;
}
.pdg-footer-inner > * { min-width: 0; }

.pdg-footer-declare { line-height: 1.9; }
.pdg-footer-declare b { font-weight: 700; }
.pdg-footer-copy {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.18);
    line-height: 2;
}
.pdg-footer-copy a { margin: 0 4px; }

.pdg-footer-qr { display: flex; gap: 18px; }
.pdg-footer-qr li { text-align: center; }
.pdg-footer-qr img {
    width: 96px;
    height: 96px;
    background: #fff;
    padding: 4px;
    display: block;
}
.pdg-footer-qr span { display: block; font-size: 12px; margin-top: 8px; color: var(--pdg-navlink); }

.pdg-footer-nav {
    border-top: 1px solid rgba(255,255,255,.18);
    margin-top: 22px;
    padding-top: 14px;
    text-align: center;
    font-size: 13px;
    color: var(--pdg-navlink);
}
.pdg-footer-nav a { color: var(--pdg-navlink); margin: 0 10px; }
.pdg-footer-nav a:hover { color: #fff; }

/* ============ 返回顶部 ============ */
.pdg-gotop {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: var(--pdg-navy2);
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    z-index: 90;
}
.pdg-gotop:hover { background: var(--pdg-navy); color: var(--pdg-accent); }
.pdg-gotop.on { display: block; }

/* ============ 通用提示页 / 404 ============ */
.pdg-msgpage { text-align: center; padding: 70px 16px 90px; }
.pdg-msgpage h1 {
    font-size: 68px;
    color: var(--pdg-navy);
    letter-spacing: .05em;
    margin-bottom: 10px;
}
.pdg-msgpage h2 { font-size: 22px; margin-bottom: 14px; }
.pdg-msgpage p { color: var(--pdg-gray2); margin-bottom: 26px; }
.pdg-msgpage a {
    display: inline-block;
    background: var(--pdg-navy2);
    color: #fff;
    padding: 10px 30px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 14px;
}
.pdg-msgpage a:hover { background: var(--pdg-navy); color: var(--pdg-accent); }

/* ============ 单页 ============ */
.pdg-page-content {
    font-size: 16.5px;
    line-height: 1.9;
    color: #1f1f1f;
    padding-bottom: 30px;
}
.pdg-page-content p { margin: 0 0 18px; }
.pdg-page-content img { max-width: 100%; height: auto; }

/* ============ 搜索页 ============ */
.pdg-searchbar { display: flex; margin: 20px 0 26px; max-width: 620px; }
.pdg-searchbar input {
    flex: 1;
    padding: 11px 14px;
    font-size: 15px;
    font-family: var(--pdg-font);
    border: 1px solid #ccc;
    border-right: 0;
    outline: none;
}
.pdg-searchbar button {
    padding: 11px 26px;
    border: 0;
    background: var(--pdg-navy2);
    color: #fff;
    font-size: 15px;
    font-family: var(--pdg-font);
    cursor: pointer;
}
.pdg-searchbar button:hover { background: var(--pdg-navy); }

/* ============ 响应式 ============ */
@media (max-width: 991px) {
    .pdg-nav-toggle { display: none !important; }
    .pdg-primary-nav ul {
        display: flex;
        padding: 0;
        flex-direction: row;
        justify-content: flex-start;
    }
    .pdg-primary-nav ul > li a { padding: 12px 14px; border-top: 0; }
    .pdg-header-search {
        position: static;
        transform: none;
        padding: 12px 16px;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .pdg-header-search input { flex: 1; width: auto; }
    .pdg-header-search { display: flex; }
    .pdg-header-search button { flex: none; }

    .pdg-with-side { grid-template-columns: minmax(0, 1fr); }

    .pdg-latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .pdg-cat-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}

@media (max-width: 575px) {
    .pdg-masthead-top { padding: 20px 52px 14px; }
    .pdg-main-cat-title { font-size: 21px; margin: 28px 0 16px; }
    .pdg-latest-grid { grid-template-columns: minmax(0, 1fr); }
    .pdg-cat-cols { grid-template-columns: minmax(0, 1fr); }
    .pdg-list-row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .pdg-list-row .pdg-row-thumb { max-width: 320px; }
    .pdg-prevnext { grid-template-columns: minmax(0, 1fr); }
    .pdg-related ul { grid-template-columns: minmax(0, 1fr); }
    .pdg-footer-inner { grid-template-columns: minmax(0, 1fr); }
    .pdg-footer-qr { justify-content: flex-start; }
    .pdg-article-title, .pdg-page-title { font-size: 24px; }
    .pdg-article-content { font-size: 16px; }
    .pdg-msgpage h1 { font-size: 52px; }
}
