/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --border-color: #dee2e6;
    --text-color: #333;
    --footer-bg: #1a2530;
    --success-color: #28a745;
    --category-colors-economy: #e74c3c;
    --category-colors-foreign: #3498db;
    --category-colors-domestic: #9b59b6;
    --category-colors-education: #2ecc71;
    --category-colors-energy: #f39c12;
    --category-colors-defense: #34495e;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style-type: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn-primary, 
.btn-secondary, 
.btn-tertiary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: #1a2530;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray-color);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--gray-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--light-gray-color);
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--secondary-color);
}

.search-bar {
    display: flex;
    margin-left: 20px;
}

.search-bar input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    width: 180px;
}

.search-bar button {
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.ask-question {
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    margin-left: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ask-question:hover {
    background-color: #c0392b;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: white;
}

/* Main Content */
main {
    padding: 40px 0;
}

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

/* Featured Section */
.featured {
    margin-bottom: 40px;
}

.featured h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.featured h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--secondary-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.main-post {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
}

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

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.main-post .post-image img {
    height: 400px;
}

.category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.main-post .post-content h3 {
    font-size: 1.5rem;
}

.post-content h3 a {
    color: var(--primary-color);
}

.post-content h3 a:hover {
    color: var(--secondary-color);
}

.meta {
    color: var(--gray-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.excerpt {
    margin-bottom: 15px;
    color: var(--gray-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.read-more:hover {
    color: var(--secondary-color);
}

/* Latest Posts */
.latest-posts h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.latest-posts h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--secondary-color);
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-card .post-image {
    flex: 0 0 35%;
}

.post-card .post-image img {
    height: 100%;
}

.post-card .post-content {
    flex: 0 0 65%;
}

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

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--gray-color);
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination a.next {
    padding: 8px 15px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.widget h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.about-widget p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.popular-posts ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-posts li a {
    display: flex;
    gap: 10px;
}

.popular-posts li img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-posts li h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-posts li span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.categories ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.categories li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray-color);
}

.categories li:last-child a {
    border-bottom: none;
}

.categories li a span {
    color: var(--gray-color);
    font-size: 0.85rem;
}

.newsletter p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.newsletter button {
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #1a2530;
}

.social-media h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
}

.footer-top {
    padding: 50px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column .social-icons {
    margin-top: 20px;
}

.footer-column .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-column .social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: white;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-content a {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.modal h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.form-group textarea {
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

/* Contact Page */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--gray-color);
}

.social-media h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.map-section {
    margin-top: 40px;
}

.map-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    margin-top: 50px;
}

.faq-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px 15px;
    display: none;
}

.thank-you-message {
    text-align: center;
    padding: 20px 0;
}

.thank-you-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.thank-you-message h2 {
    margin-bottom: 10px;
}

.thank-you-message p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.modal-close-btn {
    margin-top: 10px;
}

/* About Page */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.mission, .vision {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission h3, .vision h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.mission i, .vision i {
    color: var(--secondary-color);
}

.values-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.values-list li {
    margin-bottom: 10px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    object-fit: cover;
}

.team-section {
    margin-bottom: 50px;
}

.team-section h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray-color);
}

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 15px 15px 5px;
    font-size: 1.2rem;
}

.team-member p {
    padding: 0 15px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.team-member .social-icons {
    padding: 0 15px 15px;
}

.about-stats {
    margin-bottom: 50px;
}

.about-stats h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-title {
    color: var(--gray-color);
}

.testimonials {
    margin-bottom: 50px;
}

.testimonials h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

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

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before, 
.testimonial-content p:after {
    content: '"';
    font-size: 1.5rem;
    color: var(--secondary-color);
    position: absolute;
}

.testimonial-content p:before {
    left: 0;
    top: 0;
}

.testimonial-content p:after {
    right: 0;
    bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Posts Page */
.posts-section {
    margin-bottom: 50px;
}

.posts-filter {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

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

.filter-item label {
    font-weight: 600;
}

.filter-item select {
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: white;
}

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

.posts-grid .post-card {
    flex-direction: column;
}

.posts-grid .post-card .post-image {
    flex: initial;
}

.tags {
    margin-top: 20px;
}

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

.tag-cloud a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-gray-color);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: var(--gray-color);
    transition: var(--transition);
}

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

/* Post Content Page */
.post-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.post-header {
    margin-bottom: 20px;
}

.post-header .category {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
}

.post-header h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

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

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

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

.date, .reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-body h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
}

.post-body h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.post-body blockquote {
    background-color: var(--light-gray-color);
    padding: 20px;
    border-left: 5px solid var(--secondary-color);
    margin: 20px 0;
    font-style: italic;
}

.post-body blockquote p {
    margin-bottom: 10px;
}

.post-body blockquote cite {
    font-style: normal;
    font-weight: 600;
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.post-body figure {
    margin: 25px 0;
}

.post-body figure img {
    width: 100%;
    border-radius: var(--border-radius);
}

.post-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 10px;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray-color);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-gray-color);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: var(--gray-color);
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-author {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin: 30px 0;
    border-radius: var(--border-radius);
    background-color: var(--light-gray-color);
}

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

.post-author h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.post-author p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.related-posts {
    margin-bottom: 30px;
}

.related-posts h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.related-post {
    background-color: var(--light-gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px 15px 5px;
    font-size: 1rem;
    line-height: 1.4;
}

.related-post .meta {
    padding: 0 15px 15px;
    font-size: 0.85rem;
}

.comments-section {
    margin-top: 30px;
}

.comments-section h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.comments-list {
    margin-bottom: 30px;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray-color);
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-header h4 {
    font-size: 1.1rem;
}

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

.comment-content p {
    margin-bottom: 10px;
}

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

.comment-actions a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

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

.comment-form {
    background-color: var(--light-gray-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.comment-form h3 {
    margin-bottom: 20px;
}

/* Social Share Widget */
.social-share .social-icons {
    justify-content: center;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .main-post {
        grid-column: auto;
        grid-row: auto;
    }
    
    .main-post .post-image img {
        height: 250px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .content-sidebar-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-section, 
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    header .container {
        justify-content: space-between;
    }
    
    nav {
        display: none;
    }
    
    .search-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .post-card {
        flex-direction: column;
    }
    
    .post-card .post-image {
        flex: initial;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .posts-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-author {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author img {
        margin: 0 auto 15px;
    }
    
    .post-author .social-icons {
        justify-content: center;
    }
}

/* Add hover effect for post titles */
.post-content h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Category Colors */
.category {
    background-color: var(--category-colors-economy);
}

.category:contains("Dış Politika") {
    background-color: var(--category-colors-foreign);
}

.category:contains("İç Siyaset") {
    background-color: var(--category-colors-domestic);
}

.category:contains("Eğitim") {
    background-color: var(--category-colors-education);
}

.category:contains("Enerji") {
    background-color: var(--category-colors-energy);
}

.category:contains("Savunma") {
    background-color: var(--category-colors-defense);
}
