/* ============================================
   美食摄影主题 - 样式表
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #c0392b;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #e74c3c;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.site-branding h1 {
    font-size: 24px;
    font-weight: 700;
}

.site-branding h1 a {
    color: #333;
}

.site-description {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-menu li a:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

/* Hero Section */
.hero-section {
    background: url('../../../upload/2025/01/food-01.jpg') center center / cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 160px 20px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 8px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-btn-primary {
    background: transparent;
    color: #fff;
    border: 2px solid #c0392b;
}

.hero-btn-primary:hover {
    background: #c0392b;
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #333;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c0392b;
    margin: 15px auto 0;
}

/* Featured Works */
.featured-works {
    padding: 80px 0;
    background: #fff;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.work-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.work-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-info {
    padding: 20px;
}

.work-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.work-title a {
    color: #333;
}

.work-title a:hover {
    color: #c0392b;
}

.work-date {
    font-size: 13px;
    color: #999;
}

/* Services */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #c0392b;
    color: #c0392b;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #c0392b;
    color: #fff;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* 三栏介绍：关于我们、联系我们、摄影培训 */
.info-three-col {
    padding: 80px 0;
    background: #fff;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 3px solid #c0392b;
}

.info-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.info-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.info-card:hover .info-card-img img {
    transform: scale(1.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-card-body {
    padding: 40px 30px;
    text-align: center;
}

.info-card-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.info-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-link {
    display: inline-block;
    color: #c0392b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.info-link:hover {
    color: #e74c3c;
}

/* Post List */
.post-list-section {
    padding: 60px 0;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-info {
    padding: 25px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.post-title a {
    color: #333;
}

.post-title a:hover {
    color: #c0392b;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Single Page */
.single-page {
    padding: 60px 0;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.page-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.page-content h1,
.page-content h2,
.page-content h3 {
    margin: 30px 0 15px;
    color: #333;
}

.page-content h1 { font-size: 28px; }
.page-content h2 { font-size: 24px; }
.page-content h3 { font-size: 20px; }

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Article Meta */
.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* Share Section */
.share-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
}

.share-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #eee;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-btn span {
    font-size: 13px;
}

/* WeChat QR Code */
.wechat-qrcode {
    position: absolute;
    top: 60px;
    left: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 100;
    overflow: hidden;
}

.qrcode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #07C160;
    color: #fff;
    font-size: 14px;
}

.qrcode-close {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.qrcode-body {
    padding: 20px;
    text-align: center;
}

.qrcode-body img {
    display: block;
    margin: 0 auto 10px;
}

.qrcode-body p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

/* Blog Section (WordPress-like card layout) */
.blog-section {
    padding: 60px 0;
    background: #f5f5f5;
    min-height: 60vh;
}

.page-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #c0392b;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #c0392b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #e74c3c;
}

/* Blog Split Layout (左右分栏) */
.blog-split-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.blog-list-main {
    flex: 1;
    min-width: 0;
}

.blog-list-item {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.blog-list-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.blog-list-thumb {
    flex: 0 0 220px;
    min-height: 165px;
    overflow: hidden;
}

.blog-list-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-list-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.blog-list-item:hover .blog-list-thumb img {
    transform: scale(1.05);
}

.blog-list-info {
    flex: 1;
    padding: 20px 24px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-list-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.5;
}

.blog-list-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-list-title a:hover {
    color: #c0392b;
}

.blog-list-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.blog-list-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-excerpt p {
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    flex: 0 0 320px;
}

.sidebar-sticky {
    position: sticky;
    top: 20px;
}

/* Contact Preview */
.contact-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    font-size: 14px;
    color: #666;
}

/* Single Article */
.single-article {
    padding: 60px 0;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.article-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    margin: 30px 0 15px;
    color: #333;
}

.article-content h1 { font-size: 28px; }
.article-content h2 { font-size: 24px; }
.article-content h3 { font-size: 20px; }

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.article-tags {
    margin-bottom: 40px;
}

.tag-link {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

.tag-link:hover {
    background: #c0392b;
    color: #fff;
}

/* Comments Section */
.comments-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.comment-content {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.comment-form {
    margin-top: 40px;
}

.comment-form h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #c0392b;
}

.comment-form textarea {
    margin-bottom: 15px;
    resize: vertical;
}

.btn-submit {
    padding: 12px 30px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #e74c3c;
}

/* Pagination */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination span.current {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-info p {
    margin: 8px 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-info a {
    color: #fff;
    opacity: 0.8;
}

.footer-info a:hover {
    opacity: 1;
}

/* ============================================
   分屏模式 - Split Layout
   ============================================ */

.split-layout .split-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.split-layout .split-main {
    min-width: 0;
}

.split-layout .split-main .page-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.split-layout .split-main .share-section {
    margin-top: 30px;
}

/* 侧栏样式 */
.split-sidebar {
    /* 外层容器，跟随网格对齐 */
}

.sidebar-sticky {
    position: sticky;
    top: 0;
}

.sidebar-module {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 16px 20px 12px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    width: 40px;
    height: 2px;
    background: #c0392b;
}

.sidebar-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.sidebar-list li {
    padding: 0;
}

.sidebar-list li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-list li a:hover {
    background: #fafafa;
    color: #c0392b;
    border-left-color: #c0392b;
}

.sidebar-list .cat-count {
    color: #999;
    font-size: 12px;
    margin-left: 4px;
}

.sidebar-list .cmt-author {
    color: #c0392b;
    font-weight: 600;
    margin-right: 4px;
}

.sidebar-list .cmt-content {
    color: #666;
}

.sidebar-stat li {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px !important;
}

.sidebar-stat li span {
    font-weight: 700;
    color: #c0392b;
}

.sidebar-cp .cp-item {
    padding: 10px 20px;
    font-size: 14px;
}

.sidebar-cp .cp-hello {
    font-weight: 600;
    color: #333;
}

.sidebar-cp .cp-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 5px 20px 15px;
}

.sidebar-cp .cp-links a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.3s;
}

.sidebar-cp .cp-links a:hover {
    background: #c0392b;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-sidebar {
        flex: 0 0 240px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-layout .split-wrapper {
        grid-template-columns: 1fr;
    }
    .split-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-split-wrapper {
        flex-direction: column;
    }
    
    .blog-sidebar {
        flex: none;
        width: 100%;
    }
    
    .sidebar-sticky {
        position: static;
    }
    
    .blog-list-item {
        flex-direction: column;
    }
    
    .blog-list-thumb {
        flex: none;
        width: 100%;
    }
    
    .blog-list-thumb img {
        aspect-ratio: 4/3;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .split-layout .split-main .page-content {
        padding: 20px;
    }
}
