/* Sarkari Result Theme - Main Styles */

/* Quick Links Section */
.quick-links-section {
    margin: 1rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.quick-link-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #1976d2;
}

.quick-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.quick-link-item span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* About Tools Section */
.about-tools {
    margin: 3rem 0;
}

.about-content {
    line-height: 1.8;
    font-size: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: var(--text-dark);
}

.about-content p:first-child {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-content h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.about-content h3:first-of-type {
    margin-top: 1rem;
}

/* Join Us Section */
.join-us-section {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.8rem 0;
    margin-bottom: 0.5rem;
}

.join-us-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.join-us-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.join-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
}

.join-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    color: white;
}

.join-icon {
    font-size: 1.1rem;
}

.join-text {
    white-space: nowrap;
}

/* What's New Section */
.whats-new-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    margin: 0.5rem 0;
}

.whats-new-title {
    text-align: center;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    border-bottom: 3px solid #2c3e50;
    display: inline-block;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.news-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.news-box {
    padding: 15px;
    border-radius: 8px;
    min-height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.news-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.news-box h3 {
    font-size: 0.85rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-weight: 600;
    color: white;
}

.news-date {
    font-size: 0.72rem;
    opacity: 0.95;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.news-box-1 { background: linear-gradient(135deg, #1e88e5, #1565c0); }
.news-box-2 { background: linear-gradient(135deg, #e53935, #c62828); }
.news-box-3 { background: linear-gradient(135deg, #8e24aa, #6a1b9a); }
.news-box-4 { background: linear-gradient(135deg, #fb8c00, #ef6c00); }
.news-box-5 { background: linear-gradient(135deg, #00acc1, #00838f); }
.news-box-6 { background: linear-gradient(135deg, #43a047, #2e7d32); }
.news-box-7 { background: linear-gradient(135deg, #3949ab, #283593); }
.news-box-8 { background: linear-gradient(135deg, #f4511e, #d84315); }

/* Section Content */
.section-content {
    padding: 0;
}

.view-more {
    background: #f8f9fa;
    padding: 8px 15px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.view-more-link {
    color: #1976D2;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}

.view-more-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Link List */
.link-list {
    display: flex;
    flex-direction: column;
}

.link-list a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    line-height: 1.4;
    min-height: 50px;
    gap: 10px;
}

.link-list a:hover {
    background: #f0f8ff;
    color: #1976D2;
}

.link-list a:last-child {
    border-bottom: none;
}

.post-title {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.8rem;
    color: #999;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 2px;
}

/* Archive Styles */
.archive-header-section,
.category-header-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    margin: 0.5rem 0;
}

.archive-header-title,
.category-header-title {
    text-align: center;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    border-bottom: 3px solid #2c3e50;
    display: inline-block;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.archive-stats,
.category-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #666;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Timeline Navigation */
.timeline-nav {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.timeline-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-months {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.month-link {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.month-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.month-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Archive Timeline */
.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.archive-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.timeline-day {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.day-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-date {
    font-size: 1.1rem;
    font-weight: 600;
}

.day-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.day-posts {
    padding: 0;
}

.timeline-post {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.timeline-post:last-child {
    border-bottom: none;
}

.timeline-post:hover {
    background: #f8f9fa;
}

.post-time-category {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.post-time {
    font-size: 0.8rem;
    color: #666;
}

.post-category-small {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.post-title-archive {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-title-archive a {
    color: var(--text-dark);
}

.post-title-archive a:hover {
    color: var(--primary-color);
}

.post-excerpt-small {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 8px;
}

.post-meta-archive {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.filter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.search-box {
    display: flex;
    gap: 0;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 0.9rem;
    width: 250px;
}

.search-btn {
    padding: 8px 15px;
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 0.9rem;
}

.results-info {
    font-size: 0.9rem;
    color: #666;
}

/* Posts Grid */
.posts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-card-content {
    padding: 25px;
}

.post-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.post-category-tag {
    background: var(--primary-color);
    color: white !important;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-category-tag a {
    color: white !important;
    text-decoration: none;
}

.post-category-tag a:hover {
    color: white !important;
}

.post-date {
    font-size: 0.8rem;
    color: #666;
}

.post-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card-title a {
    color: inherit;
}

.post-card-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.post-meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
}

.read-more-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Single Post Styles */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.article-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.article-header {
    padding: 0;
    border-bottom: none;
    background: white;
    position: relative;
    overflow: hidden;
}

.header-background {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 40px 20px;
    position: relative;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #666;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.article-category {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a202c;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.article-meta {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.article-excerpt {
    background: white;
    padding: 25px 40px;
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.article-body {
    padding: 40px;
}

.article-body h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-color);
}

.article-body h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 25px 0 12px 0;
}

.article-body p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 1rem;
}

.article-body ul,
.article-body ol {
    margin: 18px 0 18px 30px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Content Styles - Tables, Lists, Blockquotes */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.article-body table th,
.article-body table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.article-body table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.article-body table tr:hover {
    background: #f8f9fa;
}

.article-body table tr:last-child td {
    border-bottom: none;
}

/* Striped tables */
.article-body table.striped tr:nth-child(even) {
    background: #f8f9fa;
}

/* Bordered tables */
.article-body table.bordered th,
.article-body table.bordered td {
    border: 1px solid var(--border-color);
}

/* Blockquotes */
.article-body blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
    margin-bottom: 10px;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

.article-body blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
    font-style: normal;
}

/* Code blocks */
.article-body pre {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    overflow-x: auto;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.article-body code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #d63384;
}

.article-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Horizontal rule */
.article-body hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 30px 0;
}

/* Images */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-body img.alignleft {
    float: left;
    margin: 10px 20px 10px 0;
}

.article-body img.alignright {
    float: right;
    margin: 10px 0 10px 20px;
}

.article-body img.aligncenter {
    display: block;
    margin: 20px auto;
}

/* Image captions */
.article-body .wp-caption {
    max-width: 100%;
    margin: 20px 0;
}

.article-body .wp-caption img {
    margin: 0;
}

.article-body .wp-caption-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    padding: 8px 0;
    text-align: center;
}

/* Definition lists */
.article-body dl {
    margin: 20px 0;
}

.article-body dt {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

.article-body dd {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Nested lists */
.article-body ul ul,
.article-body ol ol,
.article-body ul ol,
.article-body ol ul {
    margin: 10px 0 10px 20px;
}

/* Styled lists */
.article-body ul.checklist li {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.article-body ul.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2em;
}

/* Buttons in content */
.article-body .button,
.article-body .btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 10px 5px;
}

.article-body .button:hover,
.article-body .btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Alert boxes */
.article-body .alert {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 6px;
    border-left: 4px solid;
}

.article-body .alert-info {
    background: #e3f2fd;
    border-color: #2196F3;
    color: #0d47a1;
}

.article-body .alert-success {
    background: #e8f5e9;
    border-color: #4CAF50;
    color: #1b5e20;
}

.article-body .alert-warning {
    background: #fff3e0;
    border-color: #FF9800;
    color: #e65100;
}

.article-body .alert-danger {
    background: #ffebee;
    border-color: #f44336;
    color: #b71c1c;
}

/* Highlight Box */
.highlight-box {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-box ul,
.highlight-box ol {
    margin: 0;
    padding-left: 20px;
}

.highlight-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.highlight-box a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.highlight-box a:hover {
    text-decoration: underline;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.info-table tr:hover {
    background: #f8f9fa;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.share-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s;
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-section a:hover {
    text-decoration: underline;
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .join-us-grid {
        gap: 1rem;
    }
    
    .join-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .content-columns {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 15px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        width: 100%;
    }
    
    .join-us-grid {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .join-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .news-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .news-box {
        min-height: 65px;
        padding: 10px;
    }
    
    .news-box h3 {
        font-size: 0.75rem;
    }
    
    .whats-new-title,
    .archive-header-title,
    .category-header-title {
        font-size: 1.2rem;
    }
    
    .archive-stats,
    .category-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-background {
        padding: 20px 25px 15px;
    }
    
    .article-body {
        padding: 25px;
    }
    
    .article-title {
        font-size: 1.7rem;
        line-height: 1.4;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-excerpt {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .social-share {
        flex-wrap: wrap;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .post-card-content {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-columns {
        gap: 8px;
        padding: 0 10px;
    }
    
    .section-container {
        margin-bottom: 8px;
    }
    
    .news-boxes {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .news-box {
        min-height: 55px;
        padding: 8px;
    }
    
    .news-box h3 {
        font-size: 0.7rem;
    }
    
    .link-list a {
        padding: 6px 10px;
        font-size: 0.85rem;
        min-height: 35px;
    }
    
    .post-meta {
        font-size: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .quick-link-item {
        padding: 10px;
    }
    
    .quick-icon {
        font-size: 1.2rem;
    }
}
