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

 :root {
     --primary-color: #eb7625;
     --primary-dark: #d8a91d;
     --secondary-color: #ed6d3a;
     --text-color: #1f2937;
     --text-light: #6b7280;
     --bg-color: #ffffff;
     --bg-light: #f9fafb;
     --bg-gray: #f3f4f6;
     --border-color: #e5e7eb;
     --success-color: #10b981;
     --warning-color: #f59e0b;
     --danger-color: #ef4444;
     --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     --radius: 8px;
     --transition: all 0.3s ease;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     line-height: 1.6;
     color: var(--text-color);
     background-color: var(--bg-color);
     font-size: 16px;
 }

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

 .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;
 }

 /* ============================================
   TYPOGRAPHY
   ============================================ */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 0.5em;
     color: var(--text-color);
 }

 h1 {
     font-size: 2.5rem;
 }

 h2 {
     font-size: 2rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 h4 {
     font-size: 1.25rem;
 }

 p {
     margin-bottom: 1rem;
 }

 a {
     color: var(--primary-color);
     text-decoration: none;
     transition: var(--transition);
 }

 a:hover {
     color: var(--primary-dark);
 }

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

 ul,
 li {
     list-style: none;
 }

 /* ============================================
   COMMON COMPONENTS
   ============================================ */

 /* Button Styles */
 .btn {
     display: inline-block;
     padding: 10px 20px;
     background-color: var(--primary-color);
     color: white;
     border: none;
     border-radius: var(--radius);
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
     font-size: 1rem;
 }

 .btn:hover {
     background-color: var(--primary-dark);
     transform: translateY(-2px);
     box-shadow: var(--shadow);
 }

 .btn-primary {
     background-color: var(--primary-color);
 }

 .btn-subscribe {
     background-color: transparent;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
 }

 .btn-subscribe:hover {
     background-color: var(--primary-color);
     color: white;
 }

 .btn-small {
     padding: 6px 12px;
     font-size: 0.875rem;
 }

 /* Form Elements */
 .form-input,
 .form-textarea {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid var(--border-color);
     border-radius: var(--radius);
     font-size: 1rem;
     font-family: inherit;
     transition: var(--transition);
 }

 .form-input:focus,
 .form-textarea:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
 }

 .form-textarea {
     min-height: 120px;
     resize: vertical;
 }

 .form-label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
     color: var(--text-color);
 }

 /* Dropdown & Filter Components */
 .dropdown {
     position: relative;
     display: inline-block;
 }

 .dropdown-toggle {
     background-color: white;
     border: 1px solid var(--border-color);
     padding: 10px 20px;
     border-radius: var(--radius);
     font-weight: 500;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     min-width: 180px;
     transition: var(--transition);
 }

 .dropdown-toggle:hover {
     border-color: var(--primary-color);
 }

 .dropdown-toggle::after {
     content: "▼";
     font-size: 0.75rem;
     margin-left: auto;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background-color: white;
     border: 1px solid var(--border-color);
     border-radius: var(--radius);
     box-shadow: var(--shadow);
     min-width: 100%;
     z-index: 100;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: var(--transition);
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-item {
     display: block;
     padding: 12px 20px;
     color: var(--text-color);
     border-bottom: 1px solid var(--border-color);
 }

 .dropdown-item:last-child {
     border-bottom: none;
 }

 .dropdown-item:hover {
     background-color: var(--bg-gray);
 }

 .filter-tags,
 .filter-chips {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .tag,
 .chip {
     display: inline-block;
     padding: 6px 15px;
     background-color: var(--bg-light);
     border-radius: 20px;
     font-size: 0.875rem;
     color: var(--text-color);
     transition: var(--transition);
 }

 .tag:hover,
 .tag.active,
 .chip:hover,
 .chip.active {
     background-color: var(--primary-color);
     color: white;
 }

 /* Pagination */
 .pagination {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 5px;
     margin-top: 40px;
 }

 .page-number,
 .page-prev,
 .page-next {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 40px;
     height: 40px;
     padding: 0 15px;
     border-radius: var(--radius);
     background-color: white;
     border: 1px solid var(--border-color);
     color: var(--text-color);
     font-weight: 500;
     transition: var(--transition);
 }

 .page-number:hover,
 .page-number.active,
 .page-prev:hover,
 .page-next:hover {
     background-color: var(--primary-color);
     color: white;
     border-color: var(--primary-color);
 }

 .page-ellipsis {
     padding: 0 10px;
     color: var(--text-light);
 }

 /* Card Styles - Common */
 .card-label {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .card-label-pos {
     position: absolute;
     right: 0;
     bottom: 0;
 }

 .card-title {
     font-size: 1.25rem;
     line-height: 1.3;
     margin-bottom: 10px;
 }

 .card-title a {
     color: var(--text-color);
 }

 .card-title a:hover {
     color: var(--primary-color);
 }

 .card-excerpt {
     color: var(--text-light);
     font-size: 0.95rem;
     line-height: 1.5;
     margin-bottom: 15px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .card-meta {
     display: flex;
     gap: 15px;
     font-size: 0.875rem;
     color: var(--text-light);
 }

 .meta-author {
     font-weight: 500;
 }

 /* ============================================
   LAYOUT COMPONENTS
   ============================================ */

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background-color: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: var(--shadow-sm);
     z-index: 1000;
     padding: 15px 0;
     transition: var(--transition);
 }

 .navbar.scrolled {
     background-color: rgba(255, 255, 255, 0.98);
     box-shadow: var(--shadow);
     padding: 10px 0;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     flex-direction: column;
     font-weight: 700;
     color: var(--text-color);
 }

 .logo-text {
     font-size: 1.5rem;
     line-height: 1;
 }

 .logo-tagline {
     font-size: 0.75rem;
     color: var(--text-light);
     font-weight: 400;
 }

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

 .nav-link {
     color: var(--text-color);
     font-weight: 500;
     padding: 5px 0;
     position: relative;
 }

 .nav-link:hover,
 .nav-link.active {
     color: var(--primary-color);
 }

 .nav-link.active::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 2px;
     background-color: var(--primary-color);
 }

 .nav-cta {
     display: flex;
     align-items: center;
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 4px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
 }

 .hamburger span {
     width: 25px;
     height: 2px;
     background-color: var(--text-color);
     transition: var(--transition);
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(6px, -6px);
 }

 /* Announcement */
 .announcement {
     background-color: var(--primary-color);
     color: white;
     padding: 10px 0;
     margin-top: 70px;
     text-align: center;
 }

 .announcement p {
     margin: 0;
     font-size: 0.9rem;
 }

 /* Breadcrumb */
 .breadcrumb {
     background-color: var(--bg-light);
     padding: 20px 0;
     margin-bottom: 40px;
     margin-top: 70px;
 }

 .breadcrumb-nav {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 10px;
 }

 .breadcrumb-item {
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .breadcrumb-item:not(:last-child)::after {
     content: "/";
     color: var(--border-color);
 }

 .breadcrumb-item a {
     color: var(--text-light);
 }

 .breadcrumb-item a:hover {
     color: var(--primary-color);
 }

 .breadcrumb-item.active {
     color: var(--text-color);
     font-weight: 500;
 }

 /* Section Styles */
 section {
     padding: 30px 0;
 }

 .featured-section {
     padding-top: 110px;
 }

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

 .section-title {
     font-size: 2rem;
     margin-bottom: 0;
 }

 .section-subtitle {
     color: var(--text-light);
     margin-top: 10px;
 }

 .view-all {
     font-weight: 600;
     color: var(--primary-color);
 }

 .view-all:hover {
     text-decoration: underline;
 }

 /* Footer */
 .footer {
     background-color: var(--bg-gray);
     margin-top: 30px;
 }

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

 .footer-logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-color);
     margin-bottom: 15px;
     display: inline-block;
 }

 .footer-description {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-bottom: 20px;
     line-height: 1.5;
 }

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

 .social-links a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background-color: white;
     border-radius: 50%;
     color: var(--text-color);
     font-weight: 600;
     box-shadow: var(--shadow-sm);
 }

 .social-links a:hover {
     background-color: var(--primary-color);
     color: white;
 }

 .footer-title {
     font-size: 1.1rem;
     margin-bottom: 20px;
 }

 .footer-links {
     list-style: none;
 }

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

 .footer-links a {
     color: var(--text-light);
 }

 .footer-links a:hover {
     color: var(--primary-color);
     padding-left: 5px;
 }

 .footer-text {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-bottom: 20px;
     line-height: 1.5;
 }

 .footer-form {
     display: flex;
     gap: 10px;
     margin-bottom: 20px;
 }

 .footer-input {
     flex-grow: 1;
     padding: 8px 15px;
     border: 1px solid var(--border-color);
     border-radius: var(--radius);
     font-size: 0.9rem;
 }

 .contact-info {
     font-size: 0.9rem;
     color: var(--text-light);
 }

 .contact-info p {
     margin-bottom: 5px;
 }

 .footer-bottom {
     padding: 20px 0;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-copyright p {
     color: var(--text-light);
     font-size: 0.875rem;
     margin: 0;
 }

 .footer-copyright p a {
     color: var(--text-light);
     font-size: 0.875rem;
 }

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

 .footer-legal a {
     color: var(--text-light);
     font-size: 0.875rem;
 }

 .footer-legal a:hover {
     color: var(--primary-color);
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background-color: var(--primary-color);
     color: white;
     border: none;
     border-radius: 50%;
     font-size: 1.5rem;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
     z-index: 999;
 }

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

 .back-to-top:hover {
     background-color: var(--primary-dark);
     transform: translateY(-5px);
 }

 /* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

 /* Featured News Section */
 .featured-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 /* Card Type A - Large Featured */
 .card-type-a {
     grid-column: span 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     background-color: var(--bg-light);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .card-type-a:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .card-type-a .card-image {
     position: relative;
     height: 100%;
     min-height: 300px;
 }

 .card-type-a img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .card-type-a .card-content {
     padding: 30px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 /* Card Type B - Medium Featured */
 .card-type-b {
     display: flex;
     flex-direction: column;
     background-color: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .card-type-b:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .card-type-b .card-image {
     position: relative;
     aspect-ratio: 4 / 3;
 }

 .card-type-b img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

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

 /* Card Type C - Text Only Featured */
 .card-type-c {
     background-color: white;
     border-radius: var(--radius);
     padding: 25px;
     border-left: 4px solid var(--primary-color);
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .card-type-c:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-lg);
 }

 /* Categories Section */
 .categories-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-bottom: 60px;
 }

 .category-card {
     background-color: white;
     border-radius: var(--radius);
     padding: 25px;
     text-align: center;
     border: 1px solid var(--border-color);
     transition: var(--transition);
 }

 .category-card:hover {
     border-color: var(--primary-color);
     transform: translateY(-5px);
     box-shadow: var(--shadow);
 }

 .category-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .category-title {
     font-size: 1.25rem;
     margin-bottom: 10px;
 }

 .category-desc {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-bottom: 15px;
 }

 .category-count {
     display: inline-block;
     background-color: var(--bg-gray);
     color: var(--text-light);
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.875rem;
 }

 /* Latest News Section */
 .latest-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
     margin-bottom: 40px;
 }

 .filter-controls {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .filter-dropdown {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .filter-label {
     font-weight: 500;
 }

 /* Card Type D - Standard News Card */
 .card-type-d {
     background-color: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     display: flex;
 }

 .card-type-d:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .card-type-d .card-image {
     flex: 0 0 40%;
     overflow: hidden;
 }

 .card-type-d img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

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

 .card-type-d .card-content {
     padding: 20px;
 }

 /* Card Type E - Minimal News Card */
 .card-type-e {
     background-color: var(--bg-gray);
     border-radius: var(--radius);
     padding: 20px;
     border-bottom: 2px solid transparent;
     transition: var(--transition);
 }

 .card-type-e:hover {
     background-color: white;
     border-bottom-color: var(--primary-color);
     box-shadow: var(--shadow);
 }

 /* Reports Section */
 .reports-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
     margin-bottom: 60px;
 }

 .report-card {
     background-color: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .report-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .report-image {
     height: 250px;
     overflow: hidden;
 }

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

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

 .report-content {
     padding: 25px;
 }

 .report-badge {
     display: inline-block;
     background-color: var(--secondary-color);
     color: white;
     padding: 4px 12px;
     border-radius: 4px;
     font-size: 0.75rem;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .report-title {
     font-size: 1.5rem;
 }

 .report-excerpt {
     font-size: 1rem;
     line-height: 1.6;
 }

 /* Newsletter Section */
 .newsletter-section {
     background-color: var(--bg-light);
     border-radius: var(--radius);
     padding: 50px;
     text-align: center;
 }

 .newsletter-title {
     font-size: 2rem;
     margin-bottom: 10px;
 }

 .newsletter-description {
     color: var(--text-light);
     margin-bottom: 30px;
     font-size: 1.1rem;
 }

 .newsletter-form {
     max-width: 500px;
     margin: 0 auto;
 }

 .form-group {
     display: flex;
     gap: 10px;
     margin-bottom: 15px;
 }

 .form-disclaimer {
     font-size: 0.875rem;
     color: var(--text-light);
 }

 /* ============================================
   CATEGORY PAGE SPECIFIC STYLES
   ============================================ */

 /* Category Header */
 .category-header {
     margin-bottom: 40px;
 }

 .category-title {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .category-description {
     color: var(--text-light);
     font-size: 1.1rem;
     line-height: 1.6;
     max-width: 800px;
 }

 .category-meta {
     display: flex;
     gap: 20px;
     margin-top: 20px;
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .category-content {
     display: grid;
     grid-template-columns: 66% 30%;
     gap: 40px;
 }

 /* Category Articles Grid */
 .articles-grid {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .article-card {
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 25px;
     background-color: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .article-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .article-card.compact {
     grid-template-columns: 180px 1fr;
 }

 .article-card.featured {
     border-left: 4px solid var(--primary-color);
 }

 .article-card.no-image {
     grid-template-columns: 1fr;
     padding: 25px;
 }

 .article-image {
     aspect-ratio: 4 / 3;
     overflow: hidden;
     width: 100%;
     height: 100%;
 }

 .article-card.compact .article-image {
     height: 140px;
 }

 .article-card.no-image .article-image {
     display: none;
 }

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

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

 .article-content {
     padding: 25px 25px 25px 0;
     display: flex;
     flex-direction: column;
 }

 .article-card.compact .article-content {
     padding: 20px 20px 20px 0;
 }

 .article-card.no-image .article-content {
     padding: 0;
 }

 .article-tag {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .article-card-title {
     font-size: 1.5rem;
     line-height: 1.3;
     margin-bottom: 15px;
 }

 .article-card.compact .article-title {
     font-size: 1.25rem;
 }

 .article-excerpt {
     color: var(--text-light);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .article-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: auto;
 }

 .meta-left {
     display: flex;
     gap: 15px;
     color: var(--text-light);
     font-size: 0.875rem;
 }

 .read-more {
     color: var(--primary-color);
     font-weight: 600;
     font-size: 0.9rem;
 }

 .read-more:hover {
     text-decoration: underline;
 }

 /* Category Filter Controls */
 .filter-controls {
     background-color: white;
     border-radius: var(--radius);
     padding: 20px;
     margin-bottom: 30px;
     box-shadow: var(--shadow);
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .filter-group {
     display: flex;
     align-items: center;
     gap: 15px;
     flex-wrap: wrap;
 }

 .filter-label {
     font-weight: 500;
     color: var(--text-color);
 }

 /* Category Sidebar */
 .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;
 }

 .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: var(--text-primary);
 }

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

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

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

 .sidebar-widget {
     background-color: white;
     border-radius: var(--radius);
     padding: 25px;
     box-shadow: var(--shadow);
 }

 .widget-title {
     font-size: 1.25rem;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid var(--bg-light);
 }

 .related-articles {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .related-item {
     display: flex;
     gap: 15px;
     padding-bottom: 20px;
     border-bottom: 1px solid var(--border-color);
 }

 .related-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .related-image {
     width: 80px;
     height: 80px;
     flex-shrink: 0;
     border-radius: var(--radius);
     overflow: hidden;
 }

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

 .related-content {
     flex-grow: 1;
 }

 .related-title {
     font-size: 0.95rem;
     line-height: 1.3;
     margin-bottom: 5px;
 }

 .related-title a {
     color: var(--text-color);
 }

 .related-title a:hover {
     color: var(--primary-color);
 }

 .related-meta {
     font-size: 0.75rem;
     color: var(--text-light);
 }

 /* Tag Cloud */
 .tag-cloud {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .tag.large {
     font-size: 1rem;
     padding: 10px 18px;
 }

 .tag.small {
     font-size: 0.75rem;
     padding: 6px 12px;
 }

 /* Newsletter Widget */
 .newsletter-widget {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
 }

 .newsletter-widget .widget-title {
     color: white;
     border-bottom-color: rgba(255, 255, 255, 0.2);
 }

 .newsletter-widget p {
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 20px;
 }

 .widget-form .form-input {
     width: 100%;
     padding: 12px 15px;
     margin-bottom: 15px;
     border: none;
     border-radius: var(--radius);
     font-size: 0.95rem;
 }

 .widget-form .btn {
     width: 100%;
     background-color: white;
     color: var(--primary-color);
 }

 /* ============================================
   ARTICLE PAGE SPECIFIC STYLES
   ============================================ */

 .article-content-container {
     display: grid;
     grid-template-columns: 1fr 350px;
     gap: 40px;
 }

 /* Article Header */
 .article-header {
     margin-bottom: 0;
 }

 .article-category {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 6px 15px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .article-title {
     font-size: 2.5rem;
     line-height: 1.2;
     margin-bottom: 15px;
 }

 .article-subtitle {
     font-size: 1.3rem;
     color: var(--text-light);
     line-height: 1.5;
     margin-bottom: 25px;
     font-weight: 400;
 }

 .article-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-bottom: 25px;
     border-bottom: 1px solid var(--border-color);
     flex-wrap: wrap;
     gap: 15px;
 }

 .meta-left {
     display: flex;
     align-items: center;
     gap: 20px;
 }

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

 .author-avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     overflow: hidden;
 }

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

 .author-info {
     display: flex;
     flex-direction: column;
 }

 .author-name {
     font-weight: 600;
     color: var(--text-color);
 }

 .author-role {
     font-size: 0.85rem;
     color: var(--text-light);
 }

 .meta-right {
     display: flex;
     gap: 15px;
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .meta-date {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .meta-date::before {
     content: "📅";
     font-size: 0.9rem;
 }

 .meta-date-upd::before {
     content: none;
 }

 .meta-readtime {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .meta-readtime::before {
     content: "⏱️";
     font-size: 0.9rem;
 }

 /* Article Body */
 .article-body {
     padding: 40px 0;
 }

 .article-featured-image {
     width: 100%;
     margin-bottom: 30px;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .article-featured-image img {
     width: 100%;
     height: auto;
     display: block;
 }

 .image-caption {
     text-align: center;
     font-size: 0.9rem;
     color: var(--text-light);
     margin-top: 10px;
     padding: 0 20px;
 }

 .article-content {
     font-size: 0.985rem;
     letter-spacing: 0.2px;
     color: #171717;
     line-height: 1.75;
 }

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

 /* Article Tags */
 .article-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin: 40px 0 30px;
     padding-top: 30px;
     border-top: 1px solid var(--border-color);
 }

 .article-tag {
     display: inline-block;
     padding: 8px 18px;
     background-color: var(--bg-light);
     color: var(--text-color);
     border-radius: 20px;
     font-size: 0.9rem;
     transition: var(--transition);
 }

 .article-tag:hover {
     background-color: var(--primary-color);
     color: white;
 }

 /* Article Actions */
 .article-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px 0;
     border-top: 1px solid var(--border-color);
     border-bottom: 1px solid var(--border-color);
     margin: 30px 0 40px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .share-section {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .share-label {
     font-weight: 600;
     color: var(--text-color);
 }

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

 .share-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: var(--bg-light);
     color: var(--text-color);
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1rem;
 }

 .share-btn i {
     font-size: 22px;
 }

 .share-btn:hover {
     background-color: var(--primary-color);
     color: white;
     transform: translateY(-3px);
 }

 .share-btn.twitter:hover {
     background-color: #1da1f2;
 }

 .share-btn.facebook:hover {
     background-color: #1877f2;
 }

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

 .share-btn.pinterest:hover {
     background-color: #ea4335;
 }

 .share-btn.email:hover {
     background-color: #ea4335;
 }

 .action-buttons {
     display: flex;
     gap: 15px;
 }

 .btn-bookmark {
     background-color: transparent;
     border: 2px solid var(--border-color);
     color: var(--text-color);
     padding: 10px 20px;
     border-radius: var(--radius);
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: var(--transition);
 }

 .btn-bookmark:hover {
     border-color: var(--primary-color);
     color: var(--primary-color);
 }

 /* Author Bio */
 .author-bio {
     background-color: var(--bg-light);
     border-radius: var(--radius);
     padding: 30px;
     margin: 0 0 40px;
     display: flex;
     gap: 25px;
     align-items: flex-start;
 }

 .author-bio-avatar {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
 }

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

 .author-bio-content {
     flex-grow: 1;
 }

 .author-bio-name {
     font-size: 1.3rem;
     margin-bottom: 5px;
 }

 .author-bio-title {
     color: var(--primary-color);
     font-weight: 600;
     margin-bottom: 10px;
     font-size: 0.95rem;
 }

 .author-bio-description {
     color: var(--text-color);
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .author-bio-links {
     display: flex;
     gap: 15px;
 }

 .author-bio-link {
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .author-bio-link:hover {
     color: var(--primary-color);
 }

 /* Comments Section */
 .comments-section {
     margin: 60px 0 40px;
 }

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

 .comments-title {
     font-size: 1.5rem;
 }

 .comment-sort {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .comment-sort-label {
     font-size: 0.9rem;
     color: var(--text-light);
 }

 .comment-sort-select {
     padding: 8px 15px;
     border: 1px solid var(--border-color);
     border-radius: var(--radius);
     background-color: white;
     font-size: 0.9rem;
     color: var(--text-color);
 }

 .comment-form {
     background-color: var(--bg-light);
     border-radius: var(--radius);
     padding: 30px;
     margin-bottom: 40px;
 }

 .comment-form-title {
     font-size: 1.2rem;
     margin-bottom: 20px;
 }

 .comment-form textarea {
     width: 100%;
     padding: 15px;
     border: 1px solid var(--border-color);
     border-radius: var(--radius);
     font-family: inherit;
     font-size: 1rem;
     line-height: 1.5;
     margin-bottom: 20px;
     resize: vertical;
     min-height: 120px;
 }

 .comment-form-fields {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
     margin-bottom: 20px;
 }

 .comment-form-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 15px;
 }

 .comment-form-note {
     font-size: 0.85rem;
     color: var(--text-light);
 }

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

 .comment {
     padding: 25px;
     border-radius: var(--radius);
     border: 1px solid var(--border-color);
     background-color: white;
 }

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

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

 .comment-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     overflow: hidden;
 }

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

 .comment-author-info {
     display: flex;
     flex-direction: column;
 }

 .comment-author-name {
     font-weight: 600;
     color: var(--text-color);
 }

 .comment-author-role {
     font-size: 0.8rem;
     color: var(--text-light);
 }

 .comment-date {
     font-size: 0.85rem;
     color: var(--text-light);
 }

 .comment-body {
     line-height: 1.6;
     color: var(--text-color);
 }

 .comment-actions {
     display: flex;
     gap: 15px;
     margin-top: 15px;
 }

 .comment-action {
     color: var(--text-light);
     font-size: 0.9rem;
     cursor: pointer;
 }

 .comment-action:hover {
     color: var(--primary-color);
 }

 .comment-reply {
     margin-left: 40px;
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px solid var(--border-color);
 }

 /* Related Articles */
 .related-articles-section {
     margin: 60px 0 40px;
 }

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

 .related-article {
     background-color: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .related-article:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

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

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

 .related-article:hover .related-article-image img {
     transform: scale(1.05);
 }

 .related-article-content {
     padding: 20px;
 }

 .related-article-category {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .related-article-title {
     font-size: 1.1rem;
     line-height: 1.3;
     margin-bottom: 10px;
 }

 .related-article-title a {
     color: var(--text-color);
 }

 .related-article-title a:hover {
     color: var(--primary-color);
 }

 .related-article-meta {
     font-size: 0.85rem;
     color: var(--text-light);
 }

 /* Table of Contents Widget */
 .toc-widget {
     background-color: var(--bg-light);
     border-left: 4px solid var(--primary-color);
 }

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

 .toc-item {
     margin-bottom: 12px;
 }

 .toc-item:last-child {
     margin-bottom: 0;
 }

 .toc-link {
     color: var(--text-color);
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 8px 0;
 }

 .toc-link:hover {
     color: var(--primary-color);
 }

 .toc-link::before {
     content: "•";
     color: var(--primary-color);
     font-size: 1.2rem;
 }

 /* ============================================
   AUTHOR PAGE SPECIFIC STYLES
   ============================================ */

 /* Author Header */
 .author-header {
     display: flex;
     gap: 40px;
     margin-bottom: 60px;
     padding-top: 110px;
     padding-bottom: 40px;
     border-bottom: 1px solid var(--border-color);
     /* flex-wrap: wrap; */
 }

 .author-avatar {
     width: 200px;
     height: 200px;
     border-radius: 50%;
     overflow: hidden;
     border: 5px solid white;
     box-shadow: var(--shadow-lg);
     flex-shrink: 0;
 }

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

 .author-info {
     flex-grow: 1;
     min-width: 300px;
 }

 .author-name {
     font-size: 2.5rem;
     margin-bottom: 10px;
     color: var(--text-color);
 }

 .author-title {
     font-size: 1.3rem;
     color: var(--primary-color);
     margin-bottom: 15px;
     font-weight: 600;
 }

 .author-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     margin-bottom: 25px;
 }

 .meta-item {
     display: flex;
     align-items: center;
     gap: 8px;
     color: var(--text-light);
     font-size: 0.95rem;
 }

 .meta-icon {
     color: var(--primary-color);
     font-size: 1.1rem;
 }

 .author-stats {
     display: flex;
     gap: 30px;
     margin-bottom: 25px;
     flex-wrap: wrap;
 }

 .stat {
     text-align: center;
     padding: 15px 25px;
     background-color: var(--bg-light);
     border-radius: var(--radius);
     min-width: 120px;
 }

 .stat-number {
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary-color);
     display: block;
     line-height: 1;
 }

 .stat-label {
     font-size: 0.9rem;
     color: var(--text-light);
     margin-top: 5px;
 }

 .author-social {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     background-color: var(--bg-light);
     color: var(--text-color);
     border-radius: 50%;
     font-weight: 600;
     transition: var(--transition);
 }

 .social-link:hover {
     background-color: var(--primary-color);
     color: white;
     transform: translateY(-3px);
 }

 /* Author Bio */
 .author-bio-section {
     margin-bottom: 60px;
 }

 .author-bio-content {
     font-size: 1.1rem;
     line-height: 1.8;
     color: var(--text-color);
 }

 .author-bio-content p {
     margin-bottom: 25px;
 }

 .author-bio-content h3 {
     font-size: 1.4rem;
     margin: 30px 0 15px;
     color: var(--text-color);
 }

 .author-bio-content ul {
     margin: 15px 0 25px 30px;
 }

 .author-bio-content li {
     margin-bottom: 10px;
     position: relative;
 }

 .author-bio-content li:before {
     content: "•";
     color: var(--primary-color);
     position: absolute;
     left: -15px;
 }

 /* Expertise Areas */
 .expertise-section {
     margin-bottom: 60px;
 }

 .expertise-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 25px;
 }

 .expertise-card {
     background-color: white;
     border-radius: var(--radius);
     padding: 25px;
     box-shadow: var(--shadow);
     border-top: 4px solid var(--primary-color);
     transition: var(--transition);
 }

 .expertise-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .expertise-icon {
     font-size: 2rem;
     margin-bottom: 15px;
     color: var(--primary-color);
 }

 .expertise-title {
     font-size: 1.2rem;
     margin-bottom: 10px;
     color: var(--text-color);
 }

 .expertise-desc {
     color: var(--text-light);
     line-height: 1.6;
 }

 /* Author Articles */
 .author-articles-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
 }

 .author-article-card {
     background-color: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
 }

 .author-article-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .author-article-image {
     height: 200px;
     overflow: hidden;
 }

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

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

 .author-article-content {
     padding: 25px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .author-article-category {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     margin-bottom: 15px;
     align-self: flex-start;
 }

 .author-article-title {
     font-size: 1.3rem;
     line-height: 1.3;
     margin-bottom: 15px;
 }

 .author-article-title a {
     color: var(--text-color);
 }

 .author-article-title a:hover {
     color: var(--primary-color);
 }

 .author-article-excerpt {
     color: var(--text-light);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .author-article-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: auto;
     font-size: 0.85rem;
     color: var(--text-light);
 }

 .author-article-date {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .author-article-readtime {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 /* Contact Form */
 .contact-section {
     background-color: var(--bg-light);
     border-radius: var(--radius);
     padding: 40px;
     margin-bottom: 60px;
 }

 .contact-form {
     max-width: 800px;
     margin: 0 auto;
 }

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

 .form-group.full-width {
     grid-column: span 2;
 }

 /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

 @media (max-width: 1200px) {
     .featured-grid {
         grid-template-columns: 1fr;
     }

     .card-type-a {
         grid-column: span 1;
         grid-template-columns: 1fr;
     }

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

 @media (max-width: 1024px) {

     .category-content,
     .article-content-container {
         grid-template-columns: 1fr;
     }

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

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

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

     .expertise-grid {
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     }

     .author-articles-grid {
         grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .form-group.full-width {
         grid-column: span 1;
     }

     .comment-form-fields {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .related-grid {
         grid-template-columns: 100%;
     }

     .article-content-container {
         grid-template-columns: 100%;
     }

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

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

     .article-meta {
         gap: 0.5rem;
         justify-content: left;
         padding-bottom: 15px;
     }

     .meta-right {
         gap: 0.5rem;
         font-size: 0.7rem;
         align-items: center;
     }

     .navbar {
         padding: 12px 0;
         position: relative;
     }

     .featured-section {
         padding-top: 30px;
     }

     .card-type-d {
         display: block;
     }

     .card-type-d .card-image {
         aspect-ratio: 4 / 3;
     }

     .breadcrumb {
         margin-top: 0;
         margin-bottom: 10px;
     }

     .nav-menu {
         position: fixed;
         top: 70px;
         left: 0;
         right: 0;
         background-color: white;
         flex-direction: column;
         padding: 20px;
         box-shadow: var(--shadow-lg);
         transform: translateY(-100%);
         opacity: 0;
         visibility: hidden;
         transition: var(--transition);
         z-index: 999;
     }

     .nav-menu.active {
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
     }

     .hamburger {
         display: flex;
     }

     .section-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 20px;
     }

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

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

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

     .form-group {
         flex-direction: column;
     }

     .article-card {
         grid-template-columns: 1fr;
     }

     .article-image {
         height: 200px;
     }

     .article-content {
         padding: 25px;
     }

     .filter-controls {
         flex-direction: column;
         align-items: flex-start;
     }

     .filter-group {
         width: 100%;
     }

     .dropdown-toggle {
         min-width: 100%;
     }

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

     .breadcrumb-nav {
         font-size: 0.8rem;
     }

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

     .article-title {
         margin-top: 10px;
         font-size: 1.4rem;
     }

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


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

     .author-bio-avatar {
         margin: 0 auto;
     }

     .article-actions {
         flex-direction: column;
         align-items: flex-start;
     }

     .share-section {
         width: 100%;
         justify-content: space-between;
     }

     .comments-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
     }

     .author-header {
         flex-direction: column;
         text-align: center;
         align-items: center;
         padding-top: 30px;
     }

     .author-avatar {
         width: 180px;
         height: 180px;
     }

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

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

     .author-articles-grid {
         grid-template-columns: 1fr;
     }

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

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }
 }

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

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.75rem;
     }

     h3 {
         font-size: 1.25rem;
     }

     .card-type-a .card-content,
     .card-type-b .card-content,
     .card-type-d .card-content {
         padding: 20px;
     }

     .article-card.featured {
         border-left-width: 3px;
         gap: 0;
     }

     .filter-chips {
         justify-content: center;
     }

     .pagination {
         flex-wrap: wrap;
     }

     .category-meta {
         flex-direction: column;
         gap: 10px;
     }

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

     .action-buttons {
         width: 100%;
         flex-direction: column;
     }

     .btn-bookmark {
         width: 100%;
         justify-content: center;
     }

     .comment-form-footer {
         flex-direction: column;
         align-items: flex-start;
     }

     .comment-reply {
         margin-left: 20px;
     }

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

     .author-stats {
         gap: 15px;
     }

     .stat {
         min-width: 80px;
         padding: 10px 15px;
     }

     .stat-number {
         font-size: 1.5rem;
     }

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

     .contact-section {
         padding: 25px;
     }

     .back-to-top {
         bottom: 20px;
         right: 20px;
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }
 }