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

:root {

    --primary-color: #2a9d8f;
    --primary-dark: #21867a;
    --secondary-color: #e76f51;
    --dark-color: #264653;
    --light-color: #f8f9fa;
    --gray-light: #e9ecef;
    --gray: #adb5bd;
    --gray-dark: #495057;
    --white: #ffffff;
    --black: #212529;


    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;


    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;


    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;


    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.15);


    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

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

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

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

ul,
li {
    list-style: none;
}

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

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

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

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

.section-subtitle {
    color: var(--gray-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background-color: #d65c3e;
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-text {
    background: none;
    border: none;
    color: var(--gray-dark);
    cursor: pointer;
    padding: 0.5rem 1rem;
}

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


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--gray-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.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-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    margin-top: 80px;
}

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


.card-category {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    align-items: center;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta span::before {
    content: '•';
    margin-right: 0.25rem;
}

.article-meta span:first-child::before {
    display: none;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}


.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    color: var(--gray-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}


.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color var(--transition-normal);
}

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

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--gray);
    font-size: 0.9rem;
}

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


.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23264553'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: var(--spacing-xs);
}

.newsletter-form,
.sidebar-form,
.cta-form {
    margin-top: var(--spacing-sm);
}

.newsletter-text {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}


.back-to-top {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

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

.featured-section {
    padding: 6rem 0 var(--spacing-xl);
    background-color: var(--light-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;

    position: relative;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.featured-card-main {
    grid-row: span 2;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.featured-content {
    padding: var(--spacing-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-card-main .featured-content {
    padding: var(--spacing-lg);
}

.featured-excerpt {
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.featured-secondary {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.featured-secondary .featured-card {
    flex-direction: row;
    height: auto;
}

.featured-secondary .featured-image {
    width: 40%;
    height: 200px;
    flex-shrink: 0;
}

.featured-secondary .featured-content {
    width: 60%;
}


.latest-articles {
    padding: var(--spacing-xl) 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.article-card:nth-child(even) {
    flex-direction: column-reverse;
}

.article-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.article-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article-content h3 {
    margin-top: 10px;
}

.article-date {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
}

.article-excerpt {
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}


.categories-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: block;
}

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

.category-card:hover h3,
.category-card:hover .category-description,
.category-card:hover .category-count {
    color: var(--white);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.category-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
}

.category-description {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    min-height: 40px;
}

.category-count {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}


.spotlight-section {
    padding: var(--spacing-xl) 0;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    background: var(--light-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.spotlight-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.spotlight-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.highlight h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.highlight p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-dark);
}

.spotlight-articles ul {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.spotlight-articles li {
    margin-bottom: 0.5rem;
}

.spotlight-articles a {
    color: var(--gray-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.spotlight-articles a::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.spotlight-articles a:hover {
    color: var(--primary-color);
}


.preparation-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.preparation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.preparation-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.preparation-card h3 {
    margin-bottom: var(--spacing-xs);
}

.preparation-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    min-height: 60px;
}

.preparation-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
}

.preparation-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}


.tag-section {
    padding: var(--spacing-md) 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}


.breadcrumb-nav {
    background-color: var(--light-color);
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: var(--gray);
}

.breadcrumb-item a {
    color: var(--gray-dark);
}

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

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}


.page-header {
    padding: 2rem 0;
    text-align: center;
}

.page-subtitle {
    color: var(--gray-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.page-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
}


.filter-section {
    background-color: var(--light-color);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
}

.filter-toggle {
    display: none;
    margin-bottom: 1rem;
}

.filter-toggle-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.filter-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.filter-container {
    display: flex;
    flex-direction: column;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.filter-group {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

.filter-option label {
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.sort-options {
    width: 100%;
}

.sort-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    font-family: var(--font-family);
    font-size: 0.9rem;
}

.filter-actions {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}


.content-layout {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
}


.active-filters {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.active-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.active-filters-header h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.results-count {
    color: var(--gray);
    font-size: 0.9rem;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.remove-filter {
    background: none;
    border: none;
    color: var(--white);
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.articles-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.listing-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.listing-card-image {
    position: relative;
    overflow: hidden;
}

.listing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.listing-card-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.listing-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #ffc107;
}

.rating-text {
    font-weight: 600;
}

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

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

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

.listing-card-excerpt {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.listing-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--gray);
}

.author-details {
    flex: 1;
}

.pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    color: var(--gray-dark);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.pagination-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination-link.prev,
.pagination-link.next {
    padding: 0 1rem;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--gray);
}

.pagination-info {
    color: var(--gray);
    font-size: 0.9rem;
}



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

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

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

.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-name-title h3 {
    font-size: 1.2rem;
    margin: 0 0 0.2rem;
    border: none;
    padding: 0;
}

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

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

.author-profile {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8fafd;
    border-radius: 48px;
    border: 1px solid #e9eef4;
}

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

.author-profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

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

.author-profile-name {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.25rem;
    color: #0b1c2f;
}

.author-profile-title {
    font-size: 1.2rem;
    color: #c73b2b;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
    background: #fdeae7;
    padding: 0.2rem 1.2rem;
    border-radius: 40px;
}

.author-profile-bio-short {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1rem 0 1.5rem;
}

.author-detailed-bio {
    margin: 3rem 0;
    font-size: 1.2rem;
    color: #2d3f53;
    background: white;
    padding: 2.5rem;
    border-radius: 48px;
    border: 1px solid #edf2f8;
    line-height: 1.7;
}

.author-detailed-bio p {
    margin: 1.5rem 0;
}

.author-detailed-bio h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #0b1c2f;
}




.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.widget-description {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.popular-destinations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.destination-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.destination-item:hover {
    background-color: var(--light-color);
}

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

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

.destination-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.destination-count {
    font-size: 0.8rem;
    color: var(--gray);
}

.featured-guide {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.featured-guide .widget-title,
.featured-guide .widget-description {
    color: var(--white);
}

.guide-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-guide .btn {
    background-color: var(--white);
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.featured-guide .btn:hover {
    background-color: var(--light-color);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.recent-articles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recent-article {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.recent-article:last-child {
    border-bottom: none;
}

.recent-title {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.recent-date {
    font-size: 0.8rem;
    color: var(--gray);
}

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

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.resource-item:hover {
    background-color: var(--light-color);
}

.resource-icon {
    font-size: 1.25rem;
}

.resource-text {
    font-size: 0.9rem;
    color: var(--dark-color);
}


.subscribe-cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a3a4a 100%);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 3rem;
    border-radius: var(--radius-lg);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
}


.article-detail {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

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


.article-header {
    padding: 2rem 2rem 0;
}

.article-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color var(--transition-fast);
}

.detail-category {
    font-size: 0.6rem;
}

.category-badge:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.reading-time {
    color: var(--gray);
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.article-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-meta {
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
}

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

.article-dates {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.date-published,
.date-updated {
    font-size: 0.9rem;
}

.date-published strong,
.date-updated strong {
    color: var(--dark-color);
    margin-right: 0.5rem;
}

.article-stats {
    display: flex;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.featured-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 260px;
}

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

.image-caption {
    padding: 0.75rem;
    background-color: var(--light-color);
    color: var(--gray-dark);
    font-size: 0.9rem;
    text-align: center;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}


.article-body {
    padding: 0 2rem 2rem;
}

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

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-light);
    color: var(--dark-color);
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.article-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.article-section h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}


.table-of-contents {
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
}

.table-of-contents a {
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.table-of-contents a::before {
    content: "→";
    margin-right: 0.75rem;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

.table-of-contents a:hover::before {
    transform: translateX(4px);
}


.info-box {
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.tip-box {
    border-left-color: var(--secondary-color);
}

.info-box-header {
    margin-bottom: 1rem;
}

.info-box-header h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1.1rem;
}

.quick-fact {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.quick-fact strong {
    color: var(--dark-color);
    margin-right: 0.5rem;
}


.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}


.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.content-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
}

.content-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.content-item:hover .content-image img {
    transform: scale(1.05);
}

.content-text h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.content-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.detail {
    display: inline-block;
}

.detail strong {
    color: var(--dark-color);
    margin-right: 0.25rem;
}


.pull-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.pull-quote p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.pull-quote cite {
    font-style: normal;
    color: var(--gray);
    font-size: 0.9rem;
}


.food-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.food-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.food-source {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}


.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.experience-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.experience-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.experience-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.experience-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.experience-note {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}


.itinerary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.itinerary-day {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.day-header {
    background-color: var(--light-color);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.day-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.day-theme {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.day-content {
    padding: 1.5rem;
}

.day-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day-content li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.day-content li:last-child {
    margin-bottom: 0;
}

.day-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.day-content li strong {
    color: var(--dark-color);
}


.cost-breakdown {
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.cost-breakdown h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

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

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: var(--white);
    border-radius: var(--radius-sm);
}

.cost-item.total {
    grid-column: span 2;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.cost-item.total .cost-category {
    color: var(--white);
}


.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.tip-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}


.warning-box {
    display: flex;
    gap: 1rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-content h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #ff8f00;
}

.warning-content ul {
    margin: 0;
    padding-left: 1.25rem;
}

.warning-content li {
    margin-bottom: 0.5rem;
}

.warning-content li:last-child {
    margin-bottom: 0;
}


.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.article-tags {
    margin-bottom: 2rem;
}

.article-tags h4 {
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-share {
    margin-bottom: 2rem;
}

.article-share h4 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    color: var(--gray-dark);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
}

.author-bio-image {
    flex-shrink: 0;
}

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

.author-bio-content h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.author-bio-content p {
    margin-bottom: 1rem;
}

.author-links {
    display: flex;
    gap: 1.5rem;
}

.author-links a {
    font-weight: 600;
}


.comments-section {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.comment-form {
    margin-bottom: 3rem;
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.comment-form input,
.comment-form textarea,
.comment-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
}

.comment-form small {
    display: block;
    margin-top: 0.25rem;
    color: var(--gray);
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.comments-list h3 {
    margin-bottom: 1.5rem;
}

.comment {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.comment.reply {
    margin-left: 3rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gray-light);
}

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

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.comment-author-name {
    display: block;
    font-weight: 700;
    color: var(--dark-color);
}

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

.comment-rating .stars {
    color: #ffc107;
}

.comment-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-reply,
.comment-like {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.comment-reply:hover,
.comment-like:hover {
    color: var(--primary-color);
}


.related-articles {
    margin-bottom: 3rem;
}


.sticky-toc {
    position: sticky;
    top: 100px;
}

.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav li {
    margin-bottom: 0.75rem;
}

.toc-nav a {
    color: var(--gray-dark);
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.toc-nav a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 1rem;
}


@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

    .featured-secondary .featured-image,
    .featured-secondary .featured-content {
        width: 100%;
    }

    .spotlight-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .spotlight-image {
        height: 300px;
    }

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

    .listing-card {
        grid-template-columns: 250px 1fr;
    }

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

    .article-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0;
    }

    .content-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-image {
        height: 250px;
    }

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

    .cost-item.total {
        grid-column: span 1;
    }

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

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

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

@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .author-profile-bio-short {
        text-align: left;
    }

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

    .main-header {
        position: absolute;
        padding: 10px 0;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-light);
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        margin-top: var(--spacing-sm);
    }

    .nav-cta .btn {
        width: 100%;
    }

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

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

    .filter-toggle {
        display: block;
    }

    .filter-controls {
        display: none;
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .filter-controls.active {
        display: grid;
    }

    .active-filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .results-count {
        align-self: flex-start;
    }

    .featured-card {
        display: block;
    }

    .listing-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .listing-card-image {
        height: 200px;
    }

    .listing-card-content {
        padding: 1.5rem;
    }

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

    .detail-page {
        padding-top: 70px !important;
    }

    .article-header,
    .article-body {
        padding: 1.5rem;
    }

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

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

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

    .comment.reply {
        margin-left: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-header {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-xs);
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .featured-image {
        width: 100%;
        height: 200px;
    }

    .featured-secondary .featured-image {
        height: 150px;
    }

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

    .page-stats {
        gap: 1rem;
    }

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

    .filter-controls {
        gap: 1rem;
    }

    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-list {
        gap: 0.125rem;
    }

    .pagination-link {
        min-width: 35px;
        height: 35px;
        padding: 0 0.5rem;
        font-size: 0.9rem;
    }

    .article-header,
    .article-body {
        padding: 1rem;
    }

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

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

    .date-published,
    .date-updated,
    .author-byline .author-name {
        font-size: 0.7rem;
    }

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

    .share-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .share-btn {
        text-align: center;
    }

    .comment.reply {
        margin-left: 1rem;
        padding-left: 1rem;
    }

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