/**
 * 觉照交易博客 - 响应式样式
 * 支持手机、平板、桌面多端自适应
 */

/* ============================================
   手机端排版深度优化 (≤ 768px)
   ============================================ */
@media screen and (max-width: 768px) {
    /* 头部 */
    .site-header {
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
    }
    
    .site-header .header-inner {
        flex-direction: column;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .site-logo {
        width: 100%;
        justify-content: center;
    }
    
    .site-logo .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .site-logo .logo-text {
        font-size: 1.25rem;
    }
    
    /* 导航 - 优化为水平滚动 */
    .main-navigation {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .main-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .main-navigation ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.25rem;
        padding: 0.25rem 0.5rem;
        min-width: max-content;
    }
    
    .main-navigation li {
        flex-shrink: 0;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
        white-space: nowrap;
        background: rgba(255,255,255,0.1);
        border-radius: 20px;
        transition: all 0.2s ease;
    }
    
    .main-navigation a:hover,
    .main-navigation a:focus {
        background: rgba(255,255,255,0.25);
        color: white;
    }
    
    /* Hero区域 */
    .hero-section {
        padding: 2.5rem 1.25rem;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-subtitle span {
        display: block;
    }
    
    .hero-tagline {
        font-size: 0.9rem !important;
        padding: 0 0.5rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* 理论卡片 */
    .theory-section,
    .spirit-section {
        padding: 2.5rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .theory-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .theory-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .theory-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .theory-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .theory-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* 核心理念 */
    .spirit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spirit-item {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .spirit-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .spirit-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* 引用块 */
    .entry-content blockquote,
    .post-content blockquote {
        margin: 1.5rem 0;
        padding: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* 文章列表 */
    .posts-section {
        padding: 2.5rem 1.25rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .post-card {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .post-content h3 {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .post-excerpt {
        font-size: 0.85rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .post-meta {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .post-category {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
    
    /* CTA区域 */
    .cta-section {
        padding: 2.5rem 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* 分页 */
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    /* 页脚 */
    .site-footer {
        padding: 2rem 1.25rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
    }
    
    .footer-section li {
        margin: 0;
    }
    
    .footer-section a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1rem;
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .footer-bottom p {
        word-break: break-word;
    }
    
    /* 按钮 */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* 返回顶部按钮 */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* 图片 */
    .post-featured-image,
    .wp-block-image {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        border-radius: 0;
    }
    
    .post-featured-image img,
    .wp-block-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* 社交分享 */
    .social-share {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .social-share a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* 标签 */
    .post-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .post-tags a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* 文章导航 */
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .nav-post {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .nav-label {
        font-size: 0.75rem;
    }
    
    .nav-title {
        font-size: 0.9rem;
    }
    
    /* 评论区 */
    .comments-area {
        padding: 1.5rem 0;
    }
    
    .comment-list {
        padding: 0;
    }
    
    .comment {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .comment-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .children {
        padding-left: 1rem;
        margin-top: 0.75rem;
    }
    
    /* 侧边栏 */
    .widget-area {
        margin-top: 1.5rem;
    }
    
    .widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .widget-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

/* ============================================
   超小屏手机优化 (≤ 480px)
   ============================================ */
@media screen and (max-width: 480px) {
    /* 头部 */
    .site-header .header-inner {
        padding: 0.5rem 0.75rem;
    }
    
    .site-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .site-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .site-logo .logo-tagline {
        display: none;
    }
    
    /* 导航 */
    .main-navigation a {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }
    
    /* Hero */
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem !important;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .hero-tagline {
        font-size: 0.85rem !important;
    }
    
    /* 理论/精神区域 */
    .theory-section,
    .spirit-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .theory-card,
    .spirit-item {
        padding: 1rem;
    }
    
    .theory-icon {
        font-size: 1.75rem;
    }
    
    .theory-card h3,
    .spirit-item h4 {
        font-size: 1rem;
    }
    
    .theory-card p,
    .spirit-item p {
        font-size: 0.85rem;
    }
    
    /* 文章列表 */
    .posts-section {
        padding: 2rem 1rem;
    }
    
    .posts-grid {
        gap: 1rem;
    }
    
    .post-card {
        padding: 1rem;
    }
    
    .post-content h3 {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.35rem;
    }
    
    /* 页脚 */
    .site-footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-container {
        gap: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
    
    /* 按钮 */
    .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    /* 单文章页面 */
    .single-post {
        padding: 0;
    }
    
    .post-article {
        padding: 1rem;
    }
    
    .post-header-inner {
        padding: 1rem 0.75rem;
    }
    
    .post-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .post-meta {
        font-size: 0.75rem;
    }
    
    .post-content {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 1rem 0;
    }
    
    .post-content h2 {
        font-size: 1.25rem;
    }
    
    .post-content h3 {
        font-size: 1.1rem;
    }
    
    .post-content p {
        margin-bottom: 1rem;
    }
    
    /* 引用块 */
    .post-content blockquote {
        margin: 1rem 0;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* 图片 */
    .post-featured-image {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    /* 归档/搜索页面 */
    .archive-page,
    .search-page {
        padding: 1rem;
    }
    
    .archive-header,
    .search-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .archive-title,
    .search-title {
        font-size: 1.35rem;
    }
    
    .list-post-item {
        padding: 1rem;
    }
    
    /* 404页面 */
    .error-page {
        padding: 2rem 1rem;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.35rem;
    }
    
    .error-message {
        font-size: 0.9rem;
    }
}

/* ============================================
   手机端 (481px - 768px) 通用
   ============================================ */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .theory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   小屏手机 (≤ 480px)
   ============================================ */
@media screen and (max-width: 480px) {
    /* 头部 */
    .site-header {
        padding: 0.5rem 0.75rem;
        position: relative;
    }
    
    .site-branding {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .site-logo {
        font-size: 1.35rem;
    }
    
    .site-tagline {
        font-size: 0.7rem;
    }
    
    /* 导航 */
    .main-navigation {
        width: 100%;
        overflow-x: auto;
    }
    
    .main-navigation ul {
        justify-content: flex-start;
        gap: 0.25rem 0.75rem;
        padding-bottom: 0.25rem;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* Hero */
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem !important;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    /* 理论卡片 */
    .theory-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .theory-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .theory-card {
        padding: 1.25rem;
    }
    
    .theory-icon {
        font-size: 2rem;
    }
    
    .theory-card h3 {
        font-size: 1.1rem;
    }
    
    .theory-card p {
        font-size: 0.9rem;
    }
    
    /* 核心理念 */
    .spirit-section {
        padding: 2rem 1rem;
    }
    
    .spirit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spirit-item {
        padding: 1.25rem;
    }
    
    .spirit-item h4 {
        font-size: 1rem;
    }
    
    .spirit-item p {
        font-size: 0.85rem;
    }
    
    /* 文章列表 */
    .posts-section {
        padding: 2rem 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .post-card {
        padding: 1rem;
    }
    
    .post-content h3 {
        font-size: 1rem;
    }
    
    .post-excerpt {
        font-size: 0.85rem;
    }
    
    .post-meta {
        font-size: 0.75rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    /* 分页 */
    .pagination {
        gap: 0.35rem;
    }
    
    .pagination .page-numbers {
        min-width: 32px;
        height: 32px;
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    /* 页脚 */
    .site-footer {
        padding: 1.5rem 0.75rem 0.75rem;
    }
    
    .footer-container {
        gap: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.35rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }
    
    /* 按钮 */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   单篇文章页面 (single.php)
   ============================================ */
@media screen and (max-width: 768px) {
    .single-post {
        padding: 1rem;
    }
    
    .post-article {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .post-header-inner {
        padding: 1.25rem 1rem;
        margin: -1.25rem -1.25rem 1.25rem -1.25rem;
        border-radius: 12px 12px 0 0;
    }
    
    .post-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .post-featured-image {
        margin: 0 -1.25rem;
        border-radius: 0;
    }
    
    .post-featured-image img {
        width: 100%;
        height: auto;
    }
    
    .post-content {
        padding: 1.25rem 0;
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .post-content h2 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .post-content h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.5rem;
    }
    
    .post-content p {
        margin-bottom: 1rem;
    }
    
    .post-tags {
        padding: 1rem 0;
        font-size: 0.9rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-post {
        padding: 1rem;
        border-radius: 8px;
    }
}

@media screen and (max-width: 480px) {
    .single-post {
        padding: 0;
    }
    
    .post-article {
        padding: 1rem;
    }
    
    .post-header-inner {
        padding: 1rem 0.75rem;
        margin: -1rem -1rem 1rem -1rem;
    }
    
    .post-title {
        font-size: 1.35rem !important;
    }
    
    .post-meta {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-content {
        font-size: 0.95rem;
    }
    
    .nav-post {
        padding: 0.875rem;
    }
    
    .nav-label {
        font-size: 0.75rem;
    }
    
    .nav-title {
        font-size: 0.875rem;
    }
}

/* ============================================
   页面模板 (page.php)
   ============================================ */
@media screen and (max-width: 768px) {
    .page-content {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .page-header {
        padding: 2rem 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-wrapper {
        padding: 1.25rem;
    }
    
    .page-content {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .page-content h2 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .page-content h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .page-content {
        padding: 1rem;
    }
    
    .page-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .page-title {
        font-size: 1.35rem;
    }
    
    .page-wrapper {
        padding: 1rem;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
}

/* ============================================
   归档页面 (archive.php)
   ============================================ */
@media screen and (max-width: 768px) {
    .archive-page {
        padding: 1.5rem;
    }
    
    .archive-header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .archive-title {
        font-size: 1.75rem;
    }
    
    .archive-description {
        font-size: 0.95rem;
    }
    
    .posts-list {
        gap: 1.5rem;
    }
    
    .list-post-item {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .archive-page {
        padding: 1rem;
    }
    
    .archive-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .archive-title {
        font-size: 1.5rem;
    }
    
    .list-post-item {
        padding: 1rem;
    }
    
    .list-post-title {
        font-size: 1.1rem;
    }
    
    .list-post-excerpt {
        font-size: 0.9rem;
    }
}

/* ============================================
   搜索页面 (search.php)
   ============================================ */
@media screen and (max-width: 768px) {
    .search-page {
        padding: 1.5rem;
    }
    
    .search-header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .search-title {
        font-size: 1.75rem;
    }
    
    .search-count {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .search-page {
        padding: 1rem;
    }
    
    .search-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .search-title {
        font-size: 1.5rem;
    }
    
    .no-posts h2 {
        font-size: 1.25rem;
    }
}

/* ============================================
   404页面 (404.php)
   ============================================ */
@media screen and (max-width: 768px) {
    .error-page {
        padding: 3rem 1.5rem;
    }
    
    .error-container {
        padding: 2rem 1.5rem;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.75rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .error-page {
        padding: 2rem 1rem;
    }
    
    .error-container {
        padding: 1.5rem 1rem;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-message {
        font-size: 0.95rem;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   桌面大屏 (≥ 1025px)
   ============================================ */
@media screen and (min-width: 1025px) {
    /* 理论卡片悬停效果 */
    .theory-card:hover {
        transform: translateY(-6px);
    }
    
    /* 文章卡片悬停 */
    .post-card:hover {
        transform: translateY(-4px);
    }
    
    /* 导航悬停 */
    .main-navigation a:hover {
        color: var(--juezhao-gold);
    }
}

/* ============================================
   超大屏 (≥ 1440px)
   ============================================ */
@media screen and (min-width: 1440px) {
    .hero-section h1 {
        font-size: 3.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.35rem !important;
    }
    
    .theory-section,
    .spirit-section,
    .posts-section,
    .cta-section {
        padding: 5rem 3rem;
    }
    
    .theory-card {
        padding: 2.5rem;
    }
    
    .post-content {
        padding: 2rem;
    }
}

/* ============================================
   安全区适配 (iPhone X 及以上刘海屏)
   ============================================ */
@supports (padding: env(safe-area-inset-top)) {
    .site-header {
        padding-top: calc(0.75rem + env(safe-area-inset-top));
        padding-left: calc(1rem + env(safe-area-inset-left));
        padding-right: calc(1rem + env(safe-area-inset-right));
    }
    
    .site-footer {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }
}

/* ============================================
   减少动画 (无障碍)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   深色模式支持 (系统偏好)
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* 可选：添加深色模式样式 */
    /* 目前主题使用浅色主题，深色模式可后续添加 */
}

/* ============================================
   打印样式
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .post-navigation,
    .cta-section,
    .hero-cta {
        display: none !important;
    }
    
    .single-post,
    .page-content {
        padding: 0;
    }
    
    .post-content {
        font-size: 12pt;
        line-height: 1.6;
    }
}
