﻿* {
    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: #1e293b;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

ul,
li {
    list-style: none;
}

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}


.breadcrumb-wrapper {
    margin: 20px 0 10px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 14px;
}

.breadcrumb-nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #5b6f80;
}

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

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

.breadcrumb-nav a {
    color: #eb7925;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.breadcrumb-nav a:hover {
    color: #1e4b8a;
    text-decoration: underline;
}

.breadcrumb-nav li[aria-current="page"] {
    color: #2d3c4a;
    font-weight: 600;
}

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


.site-header {
    background: white;
    border-bottom: 1px solid #e9edf2;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    border-bottom-color: rgba(226, 232, 240, 0.5);
}

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

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo span {
    color: #eb7925;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #eb7925;
}

.hamburger {
    display: none;
    font-size: 1.75rem;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}


#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #eb7925;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: #1e4fbe;
}


.site-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    margin-top: 60px;
    padding: 30px 0;
}

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

.footer-brand p {
    color: #475569;
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul,
.footer-social ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #eb7925;
}

.footer-social ul {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #475569;
    text-decoration: none;
    font-size: 1.1rem;
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;

}

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

.copyright a {
    color: #64748b;
    font-size: 0.9rem;
}


.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

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

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.card-content {
    padding: 20px;
    flex: 1;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #eb7925;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    text-decoration: underline;
    color: #eb7925;
}

.card-excerpt {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: auto;
}

.author-page-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.author-profile-card {
    background: white;
    border-radius: 32px;
    padding: 48px 40px;
    margin: 32px 0 48px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f4f9;
    transition: 0.3s;
}

.author-profile-card:hover {
    box-shadow: 0 20px 36px -10px rgba(28, 80, 130, 0.08);
    border-color: #dde9f2;
}

.author-profile-inner {
    display: flex;
    gap: 48px;
    align-items: center;
}

.author-avatar-frame {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
    transition: 0.25s;
}

.author-profile-card:hover .author-avatar-frame {
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.2);
    transform: scale(1.01);
}

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

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

.author-full-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1f2e;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.author-title {
    font-size: 1.1rem;
    color: #eb7925;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.author-short-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #395260;
    margin-bottom: 24px;
    max-width: 90%;
}

.author-social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f6fc;
    color: #2d4b65;
    text-decoration: none;
    font-size: 1.3rem;
    transition: 0.2s;
    border: 1px solid #e1ecf5;
}

.social-link:hover {
    background: #eb7925;
    color: white;
    border-color: #eb7925;
    transform: translateY(-3px);
}

.author-detail-body {
    background: white;
    border-radius: 32px;
    padding: 48px 52px;
    border: 1px solid #f0f4fa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
}

.detail-section-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #0d2f45;
    margin-bottom: 28px;
    border-bottom: 2px solid #e7f0f5;
    padding-bottom: 18px;
}

.author-longform {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #2a3e4e;
}

.author-longform p {
    margin-bottom: 1.6rem;
}

.author-longform h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 36px 0 16px;
    color: #1b4057;
}

.author-longform ul {
    margin: 0 0 28px 30px;
    list-style-type: disc;
}

.author-longform li {
    margin-bottom: 8px;
    color: #395f70;
}

.author-longform blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: #f6faff;
    border-left: 8px solid #eb7925;
    border-radius: 20px;
    font-size: 1.2rem;
    font-style: italic;
    color: #1e405b;
    font-weight: 450;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.author-longform blockquote p {
    margin-bottom: 0;
}

.detail-card-title {
    margin: 30px 0;
}

.detail-card-title h3 {
    font-size: 1.4rem;
}

.detail-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.breaking-bar {
    background: #fef9c3;
    color: #854d0e;
    padding: 12px 0;
    border-radius: 40px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.breaking-label {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.breaking-text a {
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px dashed;
}

.category-showcase {

    margin: 48px 0;
}

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

.category-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    border-color: #eb7925;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.category-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.category-link {
    color: #eb7925;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-link:hover {
    text-decoration: underline;
}

.latest-from-cat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cat-post-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.cat-post-card:hover {
    background: #f8fafc;
}

.cat-post-img {

    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cat-post-content {
    flex: 1;
}

.cat-post-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-post-meta {
    font-size: 1rem;
    color: #64748b;
}


.featured-reports {
    margin: 60px 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    border-left: 6px solid #eb7925;
    padding-left: 18px;
}

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

.report-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: all 0.25s;
}

.report-card:hover {
    border-color: #b1c5e0;
}

.report-img {
    width: 40%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.report-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.report-content {
    width: 60%;
    padding: 20px;
}

.report-content .card-title {
    font-size: 1.15rem;
}


.trending-topics {
    margin: 40px 0 20px;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.topic-tag {
    background: #f1f5f9;
    color: #1e293b;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.topic-tag:hover {
    background: #eb7925;
    color: white;
    border-color: #eb7925;
}


.two-column {
    display: grid;
    grid-template-columns: 67% 30%;
    gap: 40px;
    margin: 40px 0;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.list-card {
    display: flex;
    gap: 24px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f1f5f9;
}

.list-card .card-img {
    flex: 0 0 40%;
}

.list-card .card-content {
    padding: 0;
    flex: 1;
}

.author-byline {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

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

.author-byline .author-name {
    font-weight: 600;
    color: #0b1c2f;
    font-size: 1rem;
    margin: 0;
}

.author-widget .author-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
    margin-top: 0;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

.author-widget .author-header::before {
    content: none;
}

.author-widget .author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.author-widget .author-name-title h3 {
    font-size: 1.2rem;
    margin: 0 0 0.2rem;
    border: none;
    padding: 0;
    color: #333;
}

.author-name-title p {
    font-size: 0.9rem;
    color: #6b7f94;
}

.author-widget .author-bio {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.5;
    margin: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}


.search-form {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 0.95rem;
    outline: none;
}

.search-form button {
    background: #eb7925;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
}


.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    color: #1e293b;
}


.popular-posts {
    list-style: none;
    padding: 0;
}

.popular-posts li {
    margin-bottom: 18px;
}

.popular-posts a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.popular-posts span {
    font-size: 0.8rem;
    color: #64748b;
}

.updates-list li {
    margin-bottom: 18px;
}

.updates-list a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.updates-list span {
    font-size: 0.8rem;
    color: #64748b;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.categories-list li {
    padding: 10px;
    border-radius: 10px;
}

.categories-list li:hover {
    background: #eb7925;
    transition: 0.3s;
}

.categories-list li:hover a {
    color: #fff;
}


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

.tag-cloud a {
    background: white;
    padding: 6px 16px;
    border-radius: 30px;
    color: #334155;
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.tag-cloud a:hover {
    background: #eb7925;
    color: white;
    border-color: #eb7925;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    padding: 10px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pagination a.active,
.pagination a:hover {
    background: #eb7925;
    color: white;
    border-color: #eb7925;
}


.article-header {
    margin: 40px 0 24px;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 16px 0 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #64748b;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
    flex-wrap: wrap;
}

.article-featured-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
}

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

.article-body {
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto;
}

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


.share-buttons {
    display: flex;
    gap: 15px;
    margin: 40px 0 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.share-btn {
    background: #f1f5f9;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: 0.2s;
}



.share-btn.facebook {
    background: #3897ff;
}

.share-btn.twitter {
    background: #7de2f3;
}

.share-btn.linkedin {
    background: #5ba6e1;
}

.share-btn.pinterest {
    background: #b50000;
}

.share-btn i {
    font-size: 20px;
    color: white;
}

.share-btn:hover {
    transform: translateY(-5px);
    color: white;
}


.comments-section {
    margin-top: 60px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px;
}

.comment-list {
    margin-bottom: 40px;
}

.comment-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

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

.comment-body {
    flex: 1;
}

.comment-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.comment-date {
    font-size: 0.8rem;
    color: #64748b;
    margin-left: 12px;
}

.comment-text {
    color: #334155;
}

.comment-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 16px;
}

.comment-form button {
    background: #eb7925;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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


.breadcrumb {
    display: flex;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: #eb7925;
    text-decoration: none;
}

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

.author-header {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: #f8fafc;
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 48px;
    border: 1px solid #f1f5f9;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border: 4px solid white;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.author-title {
    font-size: 1.2rem;
    color: #eb7925;
    font-weight: 600;
    margin-bottom: 16px;
}

.author-bio {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 16px;
}

.btn-social {
    background: #1e293b;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
}

.btn-social:hover {
    background: #0f172a;
    transform: scale(1.02);
}

.btn-linkedin {
    background: #0a66c2;
}

.btn-linkedin:hover {
    background: #084e94;
}

.btn-email {
    background: white;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}

.btn-email:hover {
    background: #f1f5f9;
}


.author-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.author-info-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.author-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-item {
    margin-bottom: 20px;
}

.experience-period {
    font-weight: 700;
    color: #0f172a;
}

.experience-role {
    color: #eb7925;
    font-weight: 600;
}

.experience-org {
    color: #475569;
}

.award-list {
    list-style: none;
    padding: 0;
}

.award-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.award-year {
    background: #fef9c3;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.award-desc {
    color: #1e293b;
}

.award-desc strong {
    display: block;
    font-weight: 700;
}


.selected-works {
    margin-top: 48px;
}

.section-subtitle {
    text-align: right;
    margin-top: 24px;
}

.section-subtitle a {
    color: #eb7925;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
}

.section-subtitle a:hover {
    text-decoration: underline;
}

.author-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.detail-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px;
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.education-list,
.language-list {
    list-style: none;
    padding: 0;
}

.education-item {
    margin-bottom: 16px;
}

.education-degree {
    font-weight: 700;
    color: #0f172a;
}

.education-school {
    color: #475569;
}

.language-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.language-level {
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.85rem;
}


@media (max-width: 1024px) {
    .category-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .report-grid {
        grid-template-columns: 1fr;
    }

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

    .author-header {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .site-header {
        position: relative;
        padding: 5px 0;
    }

    .latest-from-cat {
        grid-template-columns: 100%;
    }

    .cat-post-card {
        grid-template-columns: 100%;
    }

    .two-column {
        grid-template-columns: 100%;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .author-profile-inner {
        flex-direction: column;
    }

    .list-card .card-img {
        flex: auto;
    }

    .detail-card-list {
        grid-template-columns: 100%;
    }

    .article-header {
        margin: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

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

    .list-card .card-img {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .author-mini-avatar {
        display: none;
    }

    .article-meta {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .author-byline .author-name{
        font-size: 0.8rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .author-avatar img {
        width: 140px;
        height: 140px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .card-title {
        font-size: 1.1rem;
    }

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

    .report-img,
    .report-content {
        width: 100%;
    }

    .cat-post-card {
        flex-direction: column;
    }

    .cat-post-img {
        width: 100%;
    }
}