/* ==========================================================
   现代主题 (Modern Theme)
   风格: 卡片 / 渐变 / 大阴影 / 紫蓝主色
   ========================================================== */

.mod-theme {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #e0e7ff 0%, #f5f3ff 50%, #fff 100%);
    min-height: 100vh;
    color: #1f2937;
    line-height: 1.7;
}

/* ===== 顶部导航 ===== */
.mod-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #667eea, #764ba2, #f093fb) 1;
}
.mod-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.mod-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 30px;
}
.mod-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    flex-shrink: 0;
}
.mod-brand-dot {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    position: relative;
}
.mod-brand-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}
.mod-brand-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mod-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}
.mod-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s;
}
.mod-nav-icon {
    font-size: 14px;
}
.mod-nav a:hover {
    background: #f3f4f6;
    color: #1f2937;
}
.mod-nav a.is-active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}
.mod-nav-admin,
.mod-nav-login {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(240, 147, 251, 0.3);
}
.mod-nav-admin:hover,
.mod-nav-login:hover {
    background: linear-gradient(135deg, #f5576c, #f093fb) !important;
}

/* ===== 主体 ===== */
.mod-main {
    padding: 40px 0 60px;
    min-height: calc(100vh - 280px);
}
.mod-search-bar {
    background: #fff;
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #667eea;
}
.mod-search-icon {
    font-size: 20px;
}
.mod-search-text {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
}

/* ===== 布局 ===== */
.mod-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* ===== 卡片网格 ===== */
.mod-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mod-card-grid.small {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.mod-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.08);
    overflow: hidden;
}
.mod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s;
}
.mod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.18);
    border-color: rgba(102, 126, 234, 0.2);
}
.mod-card:hover::before {
    opacity: 1;
}
.mod-card.is-pinned {
    background: linear-gradient(135deg, #fff 0%, #fdf4ff 100%);
    border-color: rgba(240, 147, 251, 0.25);
}
.mod-card.mini {
    padding: 18px 20px;
    border-radius: 14px;
}
.mod-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(240, 147, 251, 0.35);
}

.mod-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 14px;
}
.mod-card-meta.small {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 0;
}
.mod-icon {
    margin-right: 4px;
}
.mod-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}
.mod-card-title.small {
    font-size: 16px;
    margin-bottom: 8px;
}
.mod-card-title a {
    color: #1f2937;
    transition: color 0.2s;
}
.mod-card-title a:hover {
    color: #667eea;
}
.mod-card-summary {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.mod-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.mod-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}
.mod-tag:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    transform: translateY(-1px);
}
.mod-card-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e5e7eb;
    color: #9ca3af;
    font-size: 13px;
}
.mod-read-more {
    margin-left: auto;
    color: #667eea;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s;
}
.mod-read-more:hover {
    transform: translateX(4px);
    color: #764ba2;
}
.mod-card-cover {
    margin: -24px -28px 16px -28px;
    max-height: 260px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 18px 18px 0 0;
}
.mod-card-cover a { display: block; }
.mod-card-cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
}

/* ===== 侧栏 ===== */
.mod-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mod-side-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.08);
}
.mod-side-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}
.mod-side-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}
.mod-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mod-side-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.5;
}
.mod-side-list li:last-child {
    border-bottom: none;
}
.mod-side-list a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}
.mod-side-list a:hover {
    color: #667eea;
}
.mod-side-meta {
    color: #9ca3af;
    font-size: 12px;
    flex-shrink: 0;
}

.mod-search-form {
    display: flex;
    gap: 8px;
}
.mod-search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background: #f9fafb;
    box-sizing: border-box;
}
.mod-search-form input:focus {
    border-color: #667eea;
    background: #fff;
}
.mod-search-form button {
    padding: 10px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mod-search-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ===== 空状态 ===== */
.mod-empty {
    background: #fff;
    border-radius: 18px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
}
.mod-empty-icon {
    font-size: 60px;
    margin-bottom: 16px;
    opacity: 0.6;
}
.mod-empty-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}
.mod-empty-desc {
    color: #9ca3af;
    font-size: 14px;
}
.mod-empty.small {
    padding: 32px 24px;
    border-radius: 14px;
}
.mod-empty.small .mod-empty-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ===== 文章详情 ===== */
.mod-post {
    background: #fff;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(102, 126, 234, 0.08);
}
.mod-post-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 36px;
    border-bottom: 2px dashed #e5e7eb;
}
.mod-post-meta-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 20px;
}
.mod-post-meta-top a {
    color: #667eea;
    font-weight: 500;
}
.mod-post-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1f2937 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.mod-post-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.mod-post-cover {
    margin: 20px 0 24px;
    max-height: 360px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 12px;
}
.mod-post-cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
}
.mod-post-content {
    font-size: 16px;
    line-height: 2;
    color: #374151;
}
.mod-post-content h1,
.mod-post-content h2,
.mod-post-content h3,
.mod-post-content h4 {
    font-weight: 700;
    color: #1f2937;
    margin: 36px 0 18px;
    line-height: 1.5;
}
.mod-post-content h2 {
    font-size: 26px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}
.mod-post-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}
.mod-post-content h3 {
    font-size: 22px;
    color: #4b5563;
}
.mod-post-content p {
    margin-bottom: 20px;
}
.mod-post-content img {
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}
.mod-post-content pre {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 14px;
    line-height: 1.7;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}
.mod-post-content code {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 14px;
    color: #db2777;
}
.mod-post-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}
.mod-post-content blockquote {
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #667eea, #764ba2) 1;
    padding: 14px 24px;
    margin: 24px 0;
    color: #6b7280;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 0 10px 10px 0;
    font-style: italic;
}
.mod-post-content ul,
.mod-post-content ol {
    margin: 20px 0 20px 28px;
}
.mod-post-content li {
    margin-bottom: 10px;
}
.mod-post-content a {
    color: #667eea;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.2s;
}
.mod-post-content a:hover {
    color: #764ba2;
    border-color: #764ba2;
}
.mod-post-content strong,
.mod-post-content b {
    color: #1f2937;
    font-weight: 600;
}

.mod-post-admin {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
.mod-admin-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
    transition: all 0.2s;
}
.mod-admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.45);
}

/* ===== 特色功能卡片 ===== */
.mod-feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.mod-feature-item {
    padding: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s;
}
.mod-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.12);
}
.mod-feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}
.mod-feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}
.mod-feature-item p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* ===== 评论区 ===== */
.mod-comments {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(102, 126, 234, 0.08);
}
.mod-comments-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mod-comments-title small {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}
.mod-comments-icon,
.mod-related-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.mod-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}
.mod-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.mod-comment-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}
.mod-comment-form input,
.mod-comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
    box-sizing: border-box;
}
.mod-comment-form input:focus,
.mod-comment-form textarea:focus {
    border-color: #667eea;
    background: #fff;
}
.mod-comment-form textarea {
    resize: vertical;
    min-height: 100px;
}
.mod-comment-form button {
    align-self: flex-start;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
    transition: all 0.2s;
}
.mod-comment-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
}

.mod-comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mod-comment-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #f9fafb;
    border-radius: 12px;
    transition: background 0.2s;
}
.mod-comment-item:hover {
    background: #f3f4f6;
}
.mod-comment-item.small {
    padding: 12px 14px;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-left: 20px;
}
.mod-comment-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}
.mod-comment-item.small .mod-comment-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
}
.mod-comment-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
}
.mod-comment-user {
    font-weight: 700;
    color: #1f2937;
}
.mod-comment-time {
    color: #9ca3af;
}
.mod-comment-body {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
}

/* ===== 相关文章 ===== */
.mod-related {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.08);
}
.mod-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== 分页 ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a {
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.pagination a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.pagination a.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* ===== 页脚 ===== */
.mod-footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #cbd5e1;
    padding: 50px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.mod-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: mod-flow 6s linear infinite;
}
@keyframes mod-flow {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}
.mod-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.mod-footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.mod-footer-text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}
.mod-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mod-footer-links li {
    margin-bottom: 8px;
}
.mod-footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.2s;
}
.mod-footer-links a:hover {
    color: #a5b4fc;
}
.mod-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #475569;
    color: #64748b;
    font-size: 13px;
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
    .mod-layout {
        grid-template-columns: 1fr;
    }
    .mod-sidebar {
        position: static;
        order: 2;
    }
    .mod-card-grid,
    .mod-card-grid.small {
        grid-template-columns: 1fr;
    }
    .mod-post {
        padding: 30px 24px;
    }
    .mod-post-title {
        font-size: 28px;
    }
    .mod-feature-box {
        grid-template-columns: 1fr;
    }
    .mod-header {
        padding: 0;
    }
    .mod-topbar {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
    .mod-nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .mod-container {
        padding: 0 16px;
    }
    .mod-main {
        padding: 24px 0 40px;
    }
    .mod-comments,
    .mod-related {
        padding: 24px 20px;
    }
    .mod-post-title {
        font-size: 24px;
    }
    .mod-post-content {
        font-size: 15px;
    }
    .mod-card {
        padding: 20px;
    }
    .mod-card-title {
        font-size: 17px;
    }
}
