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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1e2a3a;
    background: #f9fbfd;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.site-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #eaeef2;
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-bottom-color: #d0ddee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #1e2a3a;
    letter-spacing: -0.5px;
}

.logo span {
    color: #0066cc;
    font-weight: 300;
}

.main-nav .nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1e2a3a;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid #f0f3f7;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -10px rgba(0, 102, 204, 0.1);
    border-color: #d9e6f2;
}

.card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.card-content {
    padding: 20px;
}

.category-tag {
    display: inline-block;
    background: #e6f0fa;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card h3 a {
    text-decoration: none;
    color: #1e2a3a;
}

.card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card h4 a {
    text-decoration: none;
    color: #1e2a3a;
}

.card .excerpt {
    color: #4a5a6e;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta {
    font-size: 0.9rem;
    color: #6b7b8e;
    display: flex;
    gap: 16px;
}


.featured-story {
    margin: 40px 0;
}

.featured-card {
    display: flex;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #eaeef2;
    transition: box-shadow 0.3s;
}

.featured-card:hover {
    box-shadow: 0 25px 40px -15px rgba(0, 102, 204, 0.15);
}

.featured-img {
    flex: 0 0 45%;
    aspect-ratio: 4/3;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 40px;
}

.featured-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 16px 0;
}

.featured-content h2 a {
    text-decoration: none;
    color: #1e2a3a;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 500;
}

.view-all {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

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

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

.in-depth .card-horizontal {
    display: flex;
    background: white;
    border-radius: 20px;
    border: 1px solid #eaeef2;
}

.in-depth .card-horizontal .card-img {
    flex: 0 0 40%;
    aspect-ratio: 4/3;
}

.in-depth .card-horizontal .card-content {
    flex: 1;
}

.popular-categories .category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.cat-item {
    background: white;
    border-radius: 24px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #eaeef2;
    transition: 0.2s;
}

.cat-item:hover {
    background: #f0f7ff;
    border-color: #0066cc;
}

.cat-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}

.cat-item h4 {
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.cat-item p {
    color: #6b7b8e;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.count {
    font-size: 0.8rem;
    background: #eef2f6;
    padding: 4px 12px;
    border-radius: 50px;
}

.newsletter-cta {
    background: #ffffff;
    border-radius: 40px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid #d9e6f2;
    text-align: center;
}

.inline-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto;
    gap: 10px;
}

.inline-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ccdae6;
    border-radius: 50px;
    font-size: 1rem;
}

.inline-form button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.form-note {
    font-size: 0.8rem;
    color: #6b7b8e;
}


.site-footer {
    background: #1e2a3a;
    color: #ccdae6;
    padding: 20px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #b0c4de;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    text-align: center;
    margin: 0;
}

.footer-bottom a {
    color: #ccdae6;
}


.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.static-select {
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid #ccdae6;
    background: white;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.pagination {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #d9e6f2;
    border-radius: 30px;
    text-decoration: none;
    color: #1e2a3a;
}

.page-link.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.sidebar .widget {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid #eaeef2;
}

.search-widget form {
    display: flex;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #d9e6f2;
    border-radius: 40px 0 0 40px;
}

.search-widget button {
    padding: 0 16px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 0 40px 40px 0;
}

.trending-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f7;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    background: #eef2f6;
    padding: 6px 14px;
    border-radius: 40px;
    text-decoration: none;
    color: #1e2a3a;
    font-size: 0.9rem;
}

.breadcrumb-nav {
    margin: 24px 0 16px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 0;
    background: transparent;
    border-radius: 50px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 12px;
    color: #a0b3c9;
    font-size: 1.2rem;
    line-height: 1;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: #2c3e50;
    font-weight: 500;
}


.two-col-split {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 40px;
    margin: 20px 0 40px;
}

.main-content-area {
    min-width: 0;
}

.sidebar-area {
    min-width: 0;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.list-header h1 {
    font-size: 2.2rem;
    font-weight: 500;
}

.sidebar-card {
    background: white;
    border-radius: 24px;
    padding: 28px 22px;
    margin-bottom: 30px;
    border: 1px solid #eaeef2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 10px;
}

.author-card {
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e6f0fa;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    border-bottom: none;
    padding-bottom: 0;
}

.author-title {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 14px;
}

.author-bio {
    color: #4a5a6e;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.author-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #d9e6f2;
    padding: 8px 20px;
    border-radius: 40px;
    transition: 0.2s;
}

.author-link:hover {
    background: #e6f0fa;
}

.post-list {
    list-style: none;
}

.post-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f7;
}

.post-list li:last-child {
    border-bottom: none;
}

.post-list a {
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 500;
    flex: 1;
    padding-right: 10px;
}

.post-list a:hover {
    color: #0066cc;
}

.list-meta {
    font-size: 0.8rem;
    color: #6b7b8e;
    white-space: nowrap;
}


.category-list {
    list-style: none;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eaeef2;
}

.category-list a {
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 500;
}

.category-list a:hover {
    color: #0066cc;
}

.cat-count {
    background: #eef2f6;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
}


.post-article {
    background: white;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #eaeef2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.post-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b1a2a;
}

.post-subtitle {
    font-size: 1.3rem;
    color: #4a5a6e;
    margin-bottom: 24px;
    font-weight: 400;
    border-left: 4px solid #0066cc;
    padding-left: 20px;
}

.post-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0 24px;
    border-bottom: 1px solid #eaeef2;
    margin-bottom: 30px;
    gap: 15px;
}

.meta-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #6b7b8e;
    font-size: 0.95rem;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e6f0fa;
}

.author-mini-name {
    font-weight: 500;
}

.author-mini-name a {
    color: #0066cc;
    text-decoration: none;
}

.post-body {
    margin-bottom: 30px;
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.7;
}

.post-body img{
    margin: 0 auto;
}

.post-body p {

    margin-bottom: 1.8em;
}

.post-body h2 {
    font-size: 1.8rem;
    margin: 1.5em 0 0.8em;
    font-weight: 600;
    color: #1e2a3a;
}

.post-image {
    margin: 2em 0;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7b8e;
    padding: 10px 0;
    background: #f9fbfd;
}

.post-categories {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.cat-label {
    font-weight: 600;
    margin-right: 12px;
    color: #1e2a3a;
}

.author-detailed-card {
    display: flex;
    gap: 25px;
    background: #f6faff;
    border-radius: 24px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #d9e6f2;
}

.author-detailed-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.author-detailed-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-detailed-info h4 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.author-detailed-title {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 12px;
}

.author-detailed-bio {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 16px;
}

.author-detailed-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.author-detailed-link:hover {
    border-bottom-color: #0066cc;
}

.share-section {
    padding: 30px 0;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
    margin: 30px 0;
}

.share-label {
    font-weight: 600;
    margin-right: 20px;
}

.share-btn {
    background: #f0f7ff;
    border: none;
    padding: 10px 22px;
    border-radius: 40px;
    margin-right: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.share-btn:hover {
    background: #d9e6f2;
}

.comments-area {
    margin: 40px 0;
}

.comments-area h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.comment {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #eaeef2;
}

.comment .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body strong {
    display: block;
    margin-bottom: 4px;
    color: #1e2a3a;
}

.comment-date {
    font-size: 0.8rem;
    color: #8a9bb0;
    margin-left: 8px;
    font-weight: normal;
}

.comment-body p {
    margin-top: 8px;
    color: #2c3e50;
    line-height: 1.5;
}

.comment-form {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #eaeef2;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border: 1px solid #d9e6f2;
    border-radius: 16px;
    font-size: 1rem;
}

.comment-form button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-form button:hover {
    background: #004999;
}

.related-posts {
    margin: 50px 0 20px;
}

.related-posts h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.author-full {
    max-width: 100%;
    margin: 20px 0 60px;
}

.author-profile-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    margin-bottom: 60px;
    border: 1px solid #eaeef2;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.author-profile-avatar {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #e6f0fa;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.1);
}

.author-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-info {
    flex: 1;
}

.author-profile-name {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #0b1a2a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.author-profile-title {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 24px;
    font-weight: 500;
    border-left: 4px solid #0066cc;
    padding-left: 20px;
}

.author-profile-bio {
    color: #2c3e50;
    margin-bottom: 30px;
}

.author-profile-bio p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5em;
    color: #1e2a3a;
}

.author-profile-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-label {
    font-weight: 600;
    color: #1e2a3a;
}

.social-link {
    background: #f0f7ff;
    padding: 8px 22px;
    border-radius: 40px;
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
    border: 1px solid transparent;
    transition: 0.2s;
}

.social-link:hover {
    background: white;
    border-color: #0066cc;
}

.author-latest-posts {
    margin: 50px 0 30px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 500;
    border-bottom: 2px solid #eaeef2;
    padding-bottom: 15px;
}

.author-contact-note {
    background: #f9fbfd;
    border-radius: 60px;
    padding: 20px 30px;
    margin: 30px 0;
    border: 1px solid #d9e6f2;
    text-align: center;
    color: #2c3e50;
}

.static-email {
    font-family: monospace;
    background: white;
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid #ccdae6;
    color: #0066cc;
    font-weight: 500;
    margin-left: 10px;
    white-space: nowrap;
}


#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

#back-to-top.show {
    display: block;
}


@media (max-width: 1024px) {

    .grid-3,
    .grid-2 {
        gap: 20px;
    }

    .featured-card {
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col-split {
        grid-template-columns: 1fr;
    }

    .author-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px;
    }

    .author-profile-title {
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #0066cc;
        padding-bottom: 8px;
        display: inline-block;
    }

    .author-profile-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .menu-toggle {
        display: block;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-subtitle {
        font-size: 1.1rem;
    }

    .meta-left,
    .meta-author {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .author-detailed-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-detailed-avatar {
        width: 80px;
        height: 80px;
    }

    .post-article {
        padding: 25px;
    }

    .author-profile-name {
        font-size: 2.2rem;
    }

    .author-profile-avatar {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }

    .post-body p {
        font-size: 0.95rem;
    }

    .share-btn {
        padding: 8px 14px;
        margin-right: 6px;
        margin-bottom: 8px;
    }

    .author-profile-card {
        padding: 25px;
    }

    .author-profile-name {
        font-size: 1.8rem;
    }

    .author-profile-title {
        font-size: 1.2rem;
    }

    .social-link {
        padding: 6px 16px;
    }
}