/* ===== DCLC HOME - CSS CRÉATIF V5.1 ===== */

/* ===== HERO ===== */
.hero {
  background-color: #0a1628;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.28);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0f766e;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
  color: #f59e0b;
}

.hero-text p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat-card {
  background-color: rgba(15, 118, 110, 0.18);
  border: 1px solid rgba(15, 118, 110, 0.35);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.hero-stat-card .stat-icon {
  width: 40px;
  height: 40px;
  background-color: #0f766e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.hero-stat-card .stat-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.hero-stat-card .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f59e0b;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ===== FEATURED ARTICLES ===== */
.featured-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.featured-section-header {
  margin-bottom: 52px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f766e;
  border-radius: 2px;
}

.featured-section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.featured-section-header p {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== FEATURED CARD PRINCIPALE ===== */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.featured-card-main {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.featured-card-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #f59e0b;
  color: #0a1628;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.featured-card-body {
  padding: 24px;
}

.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.featured-card-meta time {
  font-size: 0.8rem;
  color: #94a3b8;
}

.featured-card-meta .read-time-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #94a3b8;
}

.featured-card-meta .read-time-tag svg {
  width: 12px;
  height: 12px;
  fill: #94a3b8;
}

.featured-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 10px;
}

.featured-card-body h3 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.featured-card-body h3 a:hover {
  color: #0f766e;
}

.featured-card-body p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

/* ===== FEATURED CARD SECONDAIRE ===== */
.featured-card-secondary {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.featured-card-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

.featured-card-secondary .featured-card-body h3 {
  font-size: 1.1rem;
}

/* ===== ARTICLES GRID ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.article-card-standard {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.article-card-standard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

.article-card-standard img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.article-card-standard .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-standard .card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.article-card-standard .card-meta time {
  font-size: 0.78rem;
  color: #94a3b8;
}

.article-card-standard h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 8px;
}

.article-card-standard h3 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.article-card-standard h3 a:hover {
  color: #0f766e;
}

.article-card-standard p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  background-color: #0a1628;
  padding: 88px 0;
}

.timeline-section .section-eyebrow {
  color: #f59e0b;
}

.timeline-section .section-eyebrow::before {
  background-color: #f59e0b;
}

.timeline-section h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.timeline-section .section-sub {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.7;
  text-align: center;
}

.timeline-section .section-header-text {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #0f766e;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin-bottom: 56px;
  align-items: start;
}

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

.timeline-content-left {
  padding-right: 36px;
  text-align: right;
}

.timeline-content-right {
  padding-left: 36px;
  text-align: left;
}

.timeline-content-empty {
  /* vide, uniquement pour la grille */
}

.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: #f59e0b;
  border: 3px solid #0a1628;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #0f766e;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 8px;
}

.timeline-card {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.timeline-card:hover {
  border-color: #0f766e;
  transform: translateY(-3px);
}

.timeline-card .tc-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-content-left .tc-category {
  justify-content: flex-end;
}

.timeline-card .tc-category svg {
  width: 12px;
  height: 12px;
  fill: #f59e0b;
}

.timeline-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.timeline-card .tc-date {
  margin-top: 10px;
  font-size: 0.76rem;
  color: #475569;
  font-weight: 500;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category-card:hover {
  border-color: #0f766e;
  background-color: #f0fdfa;
  transform: translateY(-3px);
}

.category-card:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

.cat-icon {
  width: 52px;
  height: 52px;
  background-color: #0f766e;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.category-card .cat-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background-color: #1e3a8a;
  padding: 72px 0;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background-color: #f59e0b;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.newsletter-icon svg {
  width: 30px;
  height: 30px;
  fill: #0a1628;
}

.newsletter-inner h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.newsletter-inner p {
  color: #bfdbfe;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 14px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  font-size: 16px;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #f59e0b;
  background-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.newsletter-form button {
  background-color: #f59e0b;
  color: #0a1628;
  border: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.2s;
  font-family: inherit;
}

.newsletter-form button:hover {
  background-color: #d97706;
  transform: translateY(-1px);
}

.newsletter-form button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.newsletter-disclaimer {
  font-size: 0.78rem;
  color: rgba(191, 219, 254, 0.7);
  margin: 0;
}

.newsletter-success {
  display: none;
  background-color: rgba(15, 118, 110, 0.3);
  border: 1px solid #0f766e;
  border-radius: 8px;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ===== CALCULATEUR BUDGET ===== */
.tools-section {
  background-color: #f1f5f9;
  padding: 80px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tool-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tool-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f766e;
  flex-shrink: 0;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.tool-card-header div strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}

.tool-card-header div span {
  font-size: 0.82rem;
  color: #64748b;
}

.tool-form-group {
  margin-bottom: 16px;
}

.tool-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.tool-form-group select,
.tool-form-group input[type="number"],
.tool-form-group input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0f172a;
  background-color: #f8fafc;
  font-family: inherit;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  font-size: 16px;
}

.tool-form-group select:focus,
.tool-form-group input:focus {
  outline: none;
  border-color: #0f766e;
}

.tool-result {
  background-color: #f0fdfa;
  border: 2px solid #0f766e;
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  display: none;
}

.tool-result.visible {
  display: block;
}

.tool-result .result-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f766e;
  display: block;
  margin-bottom: 4px;
}

.tool-result .result-detail {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.6;
}

.tool-calc-btn {
  width: 100%;
  padding: 11px;
  background-color: #0f766e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: inherit;
  margin-top: 8px;
}

.tool-calc-btn:hover {
  background-color: #0d5c56;
}

.tool-calc-btn:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* ===== GALERIE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-color: #0a1628;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 22, 40, 0.6);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ===== MODAL GALERIE ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background-color: #0a1628;
  border-radius: 16px;
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.modal-img-container {
  position: relative;
}

.modal-img-container img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background-color: rgba(10,22,40,0.8);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.2s;
  font-family: inherit;
}

.modal-close:hover {
  background-color: #0f766e;
}

.modal-close:focus {
  outline: 2px solid #f59e0b;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(10,22,40,0.75);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  font-family: inherit;
}

.modal-nav-btn:hover {
  background-color: #0f766e;
}

.modal-nav-btn:focus {
  outline: 2px solid #f59e0b;
}

.modal-prev { left: 12px; }
.modal-next { right: 12px; }

.modal-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal-info {
  padding: 18px 24px;
  background-color: #0a1628;
}

.modal-info strong {
  display: block;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-info span {
  color: #64748b;
  font-size: 0.82rem;
}

.modal-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: rgba(10,22,40,0.8);
  color: #ffffff;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
}

/* ===== DESTINATION CARDS ===== */
.destinations-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.dest-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.dest-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
}

.dest-table thead th {
  background-color: #0f766e;
  color: #ffffff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dest-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
  color: #374151;
  vertical-align: middle;
}

.dest-table tbody tr:last-child td {
  border-bottom: none;
}

.dest-table tbody tr:nth-child(even) td {
  background-color: #f8fafc;
}

.dest-table tbody tr:hover td {
  background-color: #f0fdfa;
}

.dest-table .dest-name {
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.dest-table .dest-region {
  font-size: 0.78rem;
  color: #94a3b8;
  display: block;
  margin-top: 2px;
}

.dest-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 600;
  background-color: #f0fdfa;
  color: #0f766e;
  white-space: nowrap;
}

.dest-tag-warm {
  background-color: #fef3c7;
  color: #92400e;
}

.dest-tag-cold {
  background-color: #dbeafe;
  color: #1e3a8a;
}

.dest-diff {
  display: flex;
  gap: 3px;
}

.dest-diff span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e2e8f0;
}

.dest-diff span.filled {
  background-color: #f59e0b;
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  background-color: #0f766e;
  padding: 72px 0;
}

.about-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.about-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f59e0b;
  flex-shrink: 0;
}

.about-teaser-text .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 10px;
}

.about-teaser-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-teaser-text p {
  color: #ccfbf1;
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 60px 24px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .featured-section-header h2 {
    font-size: 1.9rem;
  }

  .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .timeline-wrapper {
    padding: 0 16px;
  }

  .timeline-item {
    grid-template-columns: 1fr 48px 1fr;
    margin-bottom: 40px;
  }

  .timeline-content-left {
    padding-right: 24px;
  }

  .timeline-content-right {
    padding-left: 24px;
  }

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

  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .about-teaser-inner {
    gap: 36px;
  }

  .about-avatar {
    width: 130px;
    height: 130px;
  }

  .about-teaser-text h2 {
    font-size: 1.65rem;
  }

  .newsletter-inner h2 {
    font-size: 1.65rem;
  }

  .timeline-section h2 {
    font-size: 1.9rem;
  }

  .tool-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-stat-card {
    padding: 16px 12px;
  }

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

  .featured-section {
    padding: 56px 0;
  }

  .featured-section-header {
    margin-bottom: 36px;
  }

  .featured-section-header h2 {
    font-size: 1.65rem;
  }

  .featured-section-header p {
    font-size: 0.95rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .featured-card-main img {
    height: 240px;
  }

  .featured-card-secondary img {
    height: 180px;
  }

  .featured-card-body h3 {
    font-size: 1.15rem;
  }

  .featured-card-secondary .featured-card-body h3 {
    font-size: 1rem;
  }

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

  .timeline-section {
    padding: 56px 0;
  }

  .timeline-section h2 {
    font-size: 1.65rem;
  }

  .timeline-section .section-sub {
    margin: 0 auto 40px;
    font-size: 0.95rem;
  }

  .timeline-section .section-header-text {
    margin-bottom: 40px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-wrapper {
    padding: 0 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
    gap: 0;
    margin-bottom: 32px;
  }

  .timeline-content-left {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
    padding-left: 20px;
    text-align: left;
  }

  .timeline-content-left .tc-category {
    justify-content: flex-start;
  }

  .timeline-dot-col {
    grid-column: 1;
    grid-row: 1;
    align-items: center;
  }

  .timeline-content-empty {
    display: none;
  }

  .timeline-content-right {
    grid-column: 2;
    padding-left: 20px;
  }

  .categories-section {
    padding: 56px 0;
  }

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

  .category-card {
    padding: 18px 12px;
  }

  .newsletter-section {
    padding: 52px 0;
  }

  .newsletter-inner h2 {
    font-size: 1.5rem;
  }

  .newsletter-inner p {
    font-size: 0.95rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    padding: 13px 20px;
  }

  .tools-section {
    padding: 56px 0;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-card {
    padding: 24px 20px;
  }

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

  .gallery-item img {
    height: 140px;
  }

  .modal-img-container img {
    height: 280px;
  }

  .modal-box {
    border-radius: 12px;
  }

  .modal-overlay {
    padding: 12px;
  }

  .destinations-section {
    padding: 56px 0;
  }

  .dest-table {
    font-size: 0.82rem;
  }

  .dest-table thead th {
    padding: 12px 12px;
    font-size: 0.76rem;
  }

  .dest-table tbody td {
    padding: 12px 12px;
  }

  .about-teaser {
    padding: 52px 0;
  }

  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .about-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .about-teaser-text h2 {
    font-size: 1.5rem;
  }

  .about-teaser-text p {
    font-size: 0.95rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 36px 16px;
    gap: 28px;
  }

  .hero-text h1 {
    font-size: 1.65rem;
    letter-spacing: -0.01em;
  }

  .hero-text p {
    font-size: 0.92rem;
  }

  .hero-label {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-stat-card {
    padding: 14px 10px;
  }

  .hero-stat-card .stat-number {
    font-size: 1.3rem;
  }

  .hero-stat-card .stat-label {
    font-size: 0.73rem;
  }

  .hero-stat-card .stat-icon {
    width: 34px;
    height: 34px;
  }

  .featured-section {
    padding: 40px 0;
  }

  .featured-section-header {
    margin-bottom: 28px;
  }

  .featured-section-header h2 {
    font-size: 1.4rem;
  }

  .featured-section-header p {
    font-size: 0.88rem;
  }

  .featured-card-main img {
    height: 200px;
  }

  .featured-card-body {
    padding: 16px;
  }

  .featured-card-body h3 {
    font-size: 1rem;
  }

  .featured-card-secondary img {
    height: 160px;
  }

  .article-card-standard img {
    height: 160px;
  }

  .article-card-standard .card-body {
    padding: 14px;
  }

  .article-card-standard h3 {
    font-size: 0.93rem;
  }

  .timeline-section {
    padding: 40px 0;
  }

  .timeline-section h2 {
    font-size: 1.4rem;
  }

  .timeline-section .section-sub {
    font-size: 0.88rem;
    margin-bottom: 32px;
  }

  .timeline-card {
    padding: 14px;
  }

  .timeline-card h3 {
    font-size: 0.93rem;
  }

  .timeline-card p {
    font-size: 0.78rem;
  }

  .timeline-wrapper {
    padding: 0 14px;
  }

  .categories-section {
    padding: 40px 0;
  }

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

  .category-card {
    padding: 14px 10px;
    gap: 8px;
    border-radius: 10px;
  }

  .cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .cat-icon svg {
    width: 22px;
    height: 22px;
  }

  .category-card .cat-name {
    font-size: 0.8rem;
  }

  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-inner {
    padding: 0 16px;
  }

  .newsletter-inner h2 {
    font-size: 1.3rem;
  }

  .newsletter-inner p {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .newsletter-icon svg {
    width: 24px;
    height: 24px;
  }

  .newsletter-form input[type="email"] {
    padding: 11px 14px;
    font-size: 15px;
  }

  .newsletter-form button {
    padding: 11px 16px;
    font-size: 0.85rem;
  }

  .newsletter-disclaimer {
    font-size: 0.72rem;
  }

  .tools-section {
    padding: 40px 0;
  }

  .tool-card {
    padding: 18px 16px;
  }

  .tool-card-header div strong {
    font-size: 1rem;
  }

  .tool-card-header div span {
    font-size: 0.78rem;
  }

  .tool-icon {
    width: 42px;
    height: 42px;
  }

  .tool-icon svg {
    width: 20px;
    height: 20px;
  }

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

  .gallery-item img {
    height: 120px;
  }

  .modal-img-container img {
    height: 220px;
  }

  .modal-info {
    padding: 14px 16px;
  }

  .modal-info strong {
    font-size: 0.9rem;
  }

  .modal-nav-btn {
    width: 36px;
    height: 36px;
  }

  .modal-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .modal-prev {
    left: 8px;
  }

  .modal-next {
    right: 8px;
  }

  .destinations-section {
    padding: 40px 0;
  }

  .dest-table {
    font-size: 0.78rem;
  }

  .dest-table thead th {
    padding: 10px 10px;
    font-size: 0.72rem;
  }

  .dest-table tbody td {
    padding: 10px 10px;
  }

  .dest-name {
    font-size: 0.82rem;
  }

  .dest-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .about-teaser {
    padding: 40px 0;
  }

  .about-teaser-inner {
    padding: 0 16px;
    gap: 18px;
  }

  .about-avatar {
    width: 100px;
    height: 100px;
  }

  .about-teaser-text h2 {
    font-size: 1.3rem;
  }

  .about-teaser-text p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .about-teaser-text .eyebrow {
    font-size: 0.72rem;
  }
}