/* ===========================================
   Main Stylesheet
   =========================================== */

:root {
  --color-primary: #e91e63;
  --color-primary-light: #fce4ec;
  --color-secondary: #7b1fa2;
  --color-accent: #ffc107;
  --color-accent-light: #fff8e1;
  --color-light: #fafafa;
  --color-text: #424242;
  --color-text-light: #757575;
  --color-border: #e0e0e0;

  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-xxl: 4rem;

  --font-xs: 0.875rem;
  --font-sm: 1rem;
  --font-size-sm: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.5rem;
  --font-xl: 2rem;
  --font-xxl: 3rem;

  --container-width: 1200px;
  --container-padding: 1.5rem;

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

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);

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

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, #fef7ff 0%, #fafafa 100%);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  box-sizing: border-box;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }

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

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ba68c8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2), 0 4px 10px rgba(123, 31, 162, 0.15);
}

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

.btn-secondary:hover {
  background-color: rgba(42, 157, 143, 0.1);
  transform: translateY(-1px);
}

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

.btn-accent:hover {
  background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2), 0 4px 10px rgba(255, 152, 0, 0.15);
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1), 0 2px 8px rgba(123, 31, 162, 0.08);
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(233, 30, 99, 0.08);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 8px 32px rgba(233, 30, 99, 0.15), 0 4px 16px rgba(123, 31, 162, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: var(--font-lg);
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  fill: var(--color-primary);
}

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

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--font-sm);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1.5rem;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 2px 0;
  transition: all var(--transition-normal);
  border-radius: 1px;
}

.featured-section {
  padding: 20px 0 var(--space-xl);
  padding-bottom: 0;
  /* background: linear-gradient(135deg, rgba(42, 157, 143, 0.05) 0%, rgba(38, 70, 83, 0.05) 100%); */
  position: relative;
  overflow: hidden;
}

.featured-container {
  position: relative;
  z-index: 1;
}

.section-title {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: var(--font-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  /* max-width: 800px; */
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.featured-card {
  background: linear-gradient(145deg, white 0%, #fefefe 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(233, 30, 99, 0.12), 0 2px 8px rgba(123, 31, 162, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(233, 30, 99, 0.08);
  position: relative;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15), 0 8px 24px rgba(123, 31, 162, 0.12);
}

.featured-card:hover::before {
  opacity: 1;
}



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

.featured-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(255, 193, 7, 0.1) 100%);
  color: var(--color-secondary);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--font-xs);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
  transition: left 0.5s ease;
}

.featured-tag:hover::before {
  left: 100%;
}

.featured-title {
  /* font-size: var(--font-xl); */
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.featured-desc {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

.categories-section {
  padding: var(--space-xl) 0;
  /* background-color: white; */
}

.categories-title {
  font-size: var(--font-xl);
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.category-card {
  background: linear-gradient(145deg, white 0%, rgba(233, 30, 99, 0.02) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  text-align: center;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08), 0 2px 8px rgba(123, 31, 162, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(123, 31, 162, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.1), 0 4px 10px rgba(123, 31, 162, 0.08);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  fill: var(--color-primary);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.2));
}

.category-card:hover .category-icon {
  transform: scale(1.05);
  fill: var(--color-secondary);
  filter: drop-shadow(0 2px 8px rgba(123, 31, 162, 0.2));
}

.category-name {
  /* font-size: var(--font-lg); */
  font-weight: 600;
  /* margin-bottom: var(--space-xs); */
  color: var(--color-secondary);
}

.category-count {
  font-size: var(--font-sm);
  color: var(--color-text-light);
}

.latest-section {
  padding: var(--space-lg) 0;
  padding-bottom: 0;
  /* background: linear-gradient(135deg, rgba(248, 249, 250, 1) 0%, rgba(240, 242, 245, 1) 100%); */
}

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

.view-all {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.view-all:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

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

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

.article-card {
  background: linear-gradient(145deg, white 0%, rgba(252, 228, 236, 0.3) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(233, 30, 99, 0.08);
  position: relative;
  backdrop-filter: blur(10px);
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, #ba68c8 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: all 0.4s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.article-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(233, 30, 99, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 99, 0.12);
}

.article-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.article-card:hover::after {
  opacity: 1;
}

/* ===========================================
   Article Image Styles
   =========================================== */

.article-card .article-image,
.latest-section .article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(123, 31, 162, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.article-card .article-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.article-card:hover .article-image::before {
  opacity: 1;
}

.article-card img,
.featured-card img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.article-card img {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

.article-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.article-image-link:hover {
  transform: scale(1.01);
}

.article-image-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.article-image-link:hover::after {
  width: 200px;
  height: 200px;
}

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

.featured-image-link {
  display: block;
  transition: opacity var(--transition-normal);
}

.featured-image-link:hover {
  opacity: 0.9;
}


.list-main-content .article-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 0;
}

.list-main-content .article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.list-main-content .article-image .article-category {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--color-primary);
  z-index: 1;
}

.article-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 228, 236, 0.2) 100%); */
}

.article-card .article-meta,
.latest-section .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
  position: relative;
}

.article-card .article-meta::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 1px;
}

.article-date {
  font-size: var(--font-xs);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-category {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233, 30, 99, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-category::before {
  content: '🏷️';
  font-size: 0.8em;
}

.article-card:hover .article-category {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  transform: translateY(-0.5px);
}

.article-title {
  font-size: var(--font-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

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

.article-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.article-title a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

.article-excerpt {
  color: var(--color-text-light);
  font-size: var(--font-sm);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.article-card:hover .article-excerpt {
  color: var(--color-text);
}

.article-read-more {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 30, 99, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.article-read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
  transition: left 0.5s ease;
}

.article-read-more:hover {
  color: white;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.article-read-more:hover::before {
  left: 100%;
}

.article-read-more svg {
  margin-left: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(233, 30, 99, 0.3));
}

.article-read-more:hover svg {
  transform: translateX(2px);
  fill: white;
}

/* ===========================================
   Popular Destinations Module
   =========================================== */

.destinations-section {
    padding-top: 0!important;
  padding: var(--space-lg) 0;
  /* background-color: white; */
  position: relative;
}

.destinations-section .container {
  position: relative;
  z-index: 1;
}

.destinations-section .section-title {
  text-align: center;
  margin-bottom: 35px;
}

.destinations-section .section-subtitle {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
  font-size: var(--font-md);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 240px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.destination-image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: opacity var(--transition-normal);
}

.destination-image-link:hover {
  opacity: 0.9;
}

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

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.destination-name {
  font-size: var(--font-sm);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.destination-name a {
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.destination-name a:hover {
  color: var(--color-accent);
}

.destination-info {
  display: flex;
  align-items: center;
  font-size: var(--font-xs);
  gap: var(--space-sm);
  flex-wrap: wrap;
}

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

.destination-rating svg {
  fill: var(--color-accent);
  width: 16px;
  height: 16px;
}

.destination-rating span {
  font-weight: 600;
}

.guides-section {
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.06) 0%, rgba(123, 31, 162, 0.04) 100%);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.guide-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  fill: var(--color-primary);
}

.guide-title {
  font-size: var(--font-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.guide-desc {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.testimonials-section {
  padding: var(--space-lg) 0;
  background-color: white;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial-card {
  flex: 0 0 100%;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  margin-right: var(--space-lg);
  border: 1px solid var(--color-border);
}

.testimonial-content {
  font-size: var(--font-md);
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-sm);
  object-fit: cover;
}

.testimonial-info h4 {
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--color-text-light);
  font-size: var(--font-sm);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-border);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--color-primary);
}

.subscribe-section {
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #ba68c8 100%);
  color: white;
}

.subscribe-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.subscribe-title {
  font-size: var(--font-xl);
  margin-bottom: var(--space-sm);
}

.subscribe-desc {
  font-size: var(--font-md);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-input {
  flex-grow: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: var(--font-sm);
}

.subscribe-button {
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.subscribe-button:hover {
  background-color: #d4af37;
}

.subscribe-note {
  margin-top: var(--space-sm);
  font-size: var(--font-sm);
  opacity: 0.8;
}

.footer {
  background-color: var(--color-secondary);
  color: white;
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  gap: var(--space-md);
  /* margin-bottom: var(--space-xl); */
}

.footer-column h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-md);
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
  text-decoration: none;
}

.footer-logo svg {
  margin-right: 0.5rem;
  fill: white;
}

.footer-desc {
  font-size: var(--font-sm);
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: var(--font-sm);
}

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

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

.footer-services li {
  margin-bottom: var(--space-xs);
  font-size: var(--font-sm);
  opacity: 0.8;
}

.footer-subscribe-form {
  display: flex;
  flex-direction: column;
}

.footer-subscribe-input {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: none;
  margin-bottom: var(--space-sm);
  font-size: var(--font-sm);
}

.footer-copyright {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-sm);
  opacity: 0.7;
}


/* ===========================================
   Detail and List Page Styles
   =========================================== */

.main-content {
  /* padding-top: 80px; */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.breadcrumb {
  font-size: var(--font-sm);
  color: var(--color-text-light);
  /* margin-bottom: var(--space-lg); */
  padding-top: var(--space-md);
}

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

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

.list-page {
  /* padding-top: 80px; */
}

.page-header {
  padding: var(--space-lg) 0;
  background-color: white;
}

.page-title-container {
  text-align: center;
}

.page-title {
  /* font-size: var(--font-xxl); */
  color: var(--color-secondary);
  /* margin-bottom: var(--space-md); */
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.stat-item {
  /* display: flex; */
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-sm);
  color: var(--color-text-light);
}

.stat-item svg {
  fill: var(--color-primary);
}

.list-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.list-main-content {
  min-width: 0;
}

.list-sidebar {
  /* position: sticky; */
  top: 100px;
  align-self: start;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
}

.article-read-time {
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

.empty-state {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.empty-title {
  font-size: var(--font-xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.empty-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
  /* margin-top: var(--space-lg); */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.article-main {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.article-sidebar {
  /* position: sticky; */
  top: 100px;
}

.article-header {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.article-category {
  margin-bottom: var(--space-md);
}

.category-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.article-main .article-title {
  font-size: var(--font-xxl);
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.article-main .article-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.article-main .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-sm);
  color: var(--color-text-light);
  flex-wrap: wrap;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.meta-item span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.meta-item svg {
  fill: var(--color-text-light);
}

.article-content {
  /* margin-bottom: var(--space-xl); */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.article-content .article-image {
  margin-bottom: var(--space-lg);
  position: relative;
}

.article-content .article-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.article-main-image {
  width: 100%;
  border-radius: var(--radius-lg);
}

.article-body {
  font-size: var(--font-md);
  line-height: 1.8;
  width: 100%;
  max-width: 100%;
}

.article-body h2 {
  font-size: var(--font-xl);
  color: var(--color-secondary);
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-body h3 {
  font-size: var(--font-lg);
  color: var(--color-secondary);
  margin: var(--space-lg) 0 var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-body p {
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
  overflow-wrap: break-word;
}

.article-body li {
  margin-bottom: var(--space-xs);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-body img,
.article-body video,
.article-body embed,
.article-body object {
  max-width: 100%;
  height: auto;
  display: block;
  margin: var(--space-lg) auto;
}

.article-body img {
  border-radius: var(--radius-md);
}

.article-body pre,
.article-body code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.article-body blockquote {
  max-width: 100%;
  overflow-wrap: break-word;
}

.article-tags {
  margin-bottom: var(--space-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.article-tags h4 {
  font-size: var(--font-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-accent-light);
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.tag:hover {
  background-color: var(--color-accent);
  transform: translateY(-1px);
}

.article-share {
  margin-bottom: var(--space-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.article-share h4 {
  font-size: var(--font-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.share-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  font-size: var(--font-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.share-btn.pinterest {
  background-color: #bd081c;
  color: white;
}

.share-btn.copy-link {
  background-color: var(--color-light);
  color: var(--color-text);
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.author-card {
  display: flex;
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: var(--space-lg);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.author-title {
  color: var(--color-primary);
  font-size: var(--font-sm);
  margin-bottom: var(--space-sm);
}

.author-bio {
  color: var(--color-text);
  font-size: var(--font-sm);
}

.related-articles,
.recommended-articles {
  margin-bottom: var(--space-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

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

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: var(--space-md);
}

.card-category {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--font-xs);
  margin-bottom: var(--space-xs);
}

.card-title {
  font-size: var(--font-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

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

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

.card-excerpt {
  color: var(--color-text-light);
  font-size: var(--font-sm);
  margin-bottom: var(--space-sm);
}

.comments-section {
  /* margin-bottom: var(--space-xl); */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.comments-section .section-title {
  font-size: var(--font-xl);
  margin-bottom: var(--space-lg);
}

.comments-count {
  font-weight: normal;
  color: var(--color-text-light);
}

.comment-form {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  /* padding: var(--space-lg); */
  margin-bottom: var(--space-lg);
}

.comment-form h3 {
  font-size: var(--font-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
  font-size: var(--font-sm);
}

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

.required {
  color: #dc2626;
}

.article-wrap {
  margin-bottom: var(--space-lg);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.comment {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

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

.comment-header {
  margin-bottom: var(--space-sm);
}

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

.comment-author strong {
  color: var(--color-secondary);
  font-size: var(--font-md);
}

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

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

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.widget-title {
  font-size: var(--font-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tag-item {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-light);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

.tag-large {
  font-size: var(--font-sm);
  padding: 0.5rem 1rem;
}

.tag-medium {
  font-size: var(--font-xs);
}

.tag-small {
  font-size: 0.75rem;
}

.popular-article-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.popular-article {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.popular-article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-content h4 {
  font-size: var(--font-sm);
  margin-bottom: var(--space-xs);
}

.popular-content h4 a {
  color: var(--color-secondary);
  text-decoration: none;
}

.popular-content h4 a:hover {
  color: var(--color-primary);
}

.popular-meta {
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

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

.category-item {
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.category-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

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

.category-name {
  font-weight: 600;
}

.category-count {
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

.pagination-wrapper,
.pagination-container {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.post-pagination {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: var(--space-xs);
}

.post-pagination li {
  display: inline-block;
}

.post-pagination a,
.post-pagination span {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

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

.post-pagination .current {
  background-color: var(--color-primary);
  color: white;
}

.post-pagination .disabled {
  color: var(--color-text-light);
  cursor: not-allowed;
}

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

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

.back-to-top:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.back-to-top svg {
  fill: white;
}

.mt-xl {
  margin-top: 0;
}

/* ===========================================
   Responsive Design
   =========================================== */

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .destinations-section .section-subtitle {
    font-size: var(--font-sm);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
  }

  .list-page-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .list-sidebar,
  .article-sidebar {
    position: static;
    margin-bottom: 30px;
  }

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

@media (max-width: 768px) {
  :root {
    --font-xxl: 2.5rem;
    --font-xl: 1.75rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }

  .navbar {
    position: absolute;
    padding: 0;
  }

  .breadcrumb {
    display: none;
  }

  .list-page {
    padding-top: 45px;
  }

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

  .section-title {
    margin-top: 10px;
    font-size: 23px;
  }

  .page-header {
    padding-bottom: 10px;
  }

  .category-tag {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 50px;
    left: -100%;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg) 0;
    box-shadow: var(--shadow-md);
    transition: left var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 0 0 var(--space-md) 0;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .hamburger.active span {
    /* background-color: white; */
  }

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

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

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

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

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

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

  .subscribe-input {
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
  }

  .subscribe-button {
    border-radius: var(--radius-md);
  }

  .main-content {
    padding-top: 45px;
  }

  .featured-section {
    padding-top: 0;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .article-layout {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .article-main {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .article-content {
    width: 100%;
    max-width: 100%;
    /* padding: 15px; */
  }

  .article-body {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .article-main .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 5px 0;
  }

  .article-main .article-title {
    font-size: var(--font-xl);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .author-avatar {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }

  .breadcrumb {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb ol {
    min-width: 0;
    flex-wrap: wrap;
  }

  .back-to-top {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 45px;
    height: 45px;
  }

  .form-group input,
  .form-group textarea {
    max-width: 100%;
    box-sizing: border-box;
  }

  .comment-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* padding: var(--space-md); */
  }

  .page-title {
    font-size: 1.6rem;
  }
}

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

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

  .category-stats {
    /* flex-direction: column; */
    gap: var(--space-sm);
  }

  .container {
    /* padding: 0 var(--space-xs); */
  }

  .article-body {
    font-size: var(--font-sm);
  }

  .article-body h2 {
    font-size: var(--font-lg);
  }

  .article-body h3 {
    font-size: var(--font-md);
  }

  .card,
  .article-card,
  .featured-card {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ===========================================
   Link Styles Unified
   =========================================== */

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

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

.article-title a,
.card-title a,
.featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.featured-card a,
.article-card a,
.card a {
  /* color: inherit; */
}

.destination-name a {
  color: white;
  text-decoration: none;
}

.destination-name a:hover {
  text-decoration: underline;
}

/* ===========================================
   Breadcrumb Navigation Styles
   =========================================== */

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  display: flex;
  /* gap: var(--space-sm); */
  flex-wrap: wrap;
  font-size: var(--font-sm);
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li span {
  margin: 0 var(--space-xs);
  color: var(--color-text-light);
}

/* ===========================================
   Other Common Styles
   =========================================== */

.article-wrap {
  margin-bottom: var(--space-lg);
}

/* ===========================================
   Advanced Animations and Effects
   =========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Loading shimmer effect */
.shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Hover glow effect */
.hover-glow:hover {
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.3), 0 0 40px rgba(123, 31, 162, 0.2);
}

.font-size-sm {
  font-size: var(--font-sm);
}

/* ===========================================
   Ad Slots and Tool Styles
   =========================================== */

.footer-subscribe-note {
  margin-top: var(--space-sm);
  font-size: var(--font-sm);
  opacity: 0.7;
}

/* Detail: category width, share, author link, author section */
.article-header .article-category { max-width: 12em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-share { margin-top: var(--space-xl); }
.article-share .share-label { margin-right: var(--space-sm); font-weight: 600; color: var(--color-text); }
.article-share .share-buttons { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); flex-wrap: wrap; }
.article-share .share-btn {
  width: 44px; height: 44px; padding: 0; border-radius: var(--radius-md); border: none;
  background-color: var(--color-primary); color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.article-share .share-btn .share-icon { width: 20px; height: 20px; flex-shrink: 0; }
.article-share .share-btn.whatsapp:hover { background-color: #25d366; }
.article-share .share-btn.linkedin:hover { background-color: #0a66c2; }
.article-share .share-btn.telegram:hover { background-color: #0088cc; }
.article-share .share-btn.copy:hover { background-color: var(--color-accent); }
.article-author-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-text-light); text-decoration: none; }
.article-author-link:hover { color: var(--color-primary); }
.article-author-link img { width: 1.3rem; height: 1.3rem; border-radius: 50%; object-fit: cover; }
.author-section { margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--color-border); }
.author-section .author-card-detail {
  display: flex; gap: var(--space-lg); padding: var(--space-lg);
  background-color: var(--color-light); border-radius: var(--radius-md); border: 1px solid var(--color-border);
}
.author-section .author-avatar-wrapper { flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 2px solid var(--color-border); }
.author-section .author-avatar-detail { width: 100%; height: 100%; object-fit: cover; }
.author-section .author-info { flex: 1; min-width: 0; display: block; }
.author-section .author-name { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.author-section .author-name a { color: var(--color-text); }
.author-section .author-name a:hover { color: var(--color-primary); }
.author-section .author-description { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
.author-section .author-bio { font-size: 0.9375rem; color: var(--color-text-light); line-height: 1.6; margin-top: 0; }
.article-tags .tags-label { font-weight: 600; margin-right: var(--space-sm); }
.tag-link { display: inline-block; padding: 0.25rem 0.75rem; margin-right: var(--space-xs); margin-bottom: var(--space-xs); background-color: var(--color-primary-light); color: var(--color-primary); border-radius: var(--radius-sm); font-size: 0.875rem; }
.tag-link:hover { background-color: var(--color-primary); color: white; }
.sidebar-author-section .sidebar-author-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sidebar-author-section .author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: var(--space-sm); }
.sidebar-author-section .author-avatar-placeholder {
  width: 80px; height: 80px; border-radius: 50%; margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white; font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.sidebar-author-section .author-name { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.sidebar-author-section .author-name a { color: var(--color-text); }
.sidebar-author-section .author-desc { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.5; margin: 0; }
.author-profile-page .author-hero-card {
  display: grid; grid-template-columns: 200px 1fr; gap: var(--space-xl); align-items: center;
  padding: var(--space-xl); background: var(--color-light); border-radius: var(--radius-md); margin-bottom: var(--space-xl);
  border: 1px solid var(--color-border);
}
.author-profile-page .author-avatar-large {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--color-border); background: var(--color-light);
  display: flex; align-items: center; justify-content: center;
}
.author-profile-page .author-avatar-large img { width: 100%; height: 100%; object-fit: cover; }
.author-profile-page .author-avatar-placeholder {
  width: 200px; height: 200px; border-radius: 50%; font-size: 4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white; display: flex; align-items: center; justify-content: center;
}
.author-name-large { font-size: 2rem; font-weight: 700; color: var(--color-text); margin: 0 0 var(--space-sm) 0; }
.author-profile-page .author-description { font-size: 1.125rem; color: var(--color-text-light); line-height: 1.6; margin: 0; }
.author-content-section { padding: var(--space-xl) 0; }
.author-content-title { font-size: 1.5rem; font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-lg); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--color-accent); }
.author-content-body { font-size: 1.0625rem; line-height: 1.75; color: var(--color-text); }
.author-articles-section .section-title { margin-bottom: var(--space-lg); }
.list-ad-break { width: 100%; }
@media (max-width: 768px) {
  .author-profile-page .author-hero-card { grid-template-columns: 1fr; text-align: center; }
  .author-section .author-card-detail { flex-direction: column; align-items: center; text-align: center; }
  .author-section .author-avatar-wrapper { width: 64px; height: 64px; }
}
