/* ===================================================== */
/* WORLD LANDING (HOMEPAGE STYLES) */
/* ===================================================== */

/* Skip link accessibility (header already has a base version; this is optional override) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #111827;
  color: #ffffff;
  padding: 8px 12px;
  z-index: 10000;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

/* Main content area */
main[role="main"],
.page-content {
  padding: 0;
  background: transparent;
}

/* Stats grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.75rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.widget-placeholder {
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Category grid */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.category-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-image {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
}

.category-image i {
  margin-right: 0.4rem;
}

.category-content {
  padding: 1.4rem;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1e3c72;
}

.category-desc {
  color: #4b5563;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

/* Blog grid (homepage cards) */

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.home-blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.home-blog-image {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.home-blog-content {
  padding: 1.4rem;
}

.home-blog-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1e3c72;
  line-height: 1.4;
}

.home-blog-date {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.home-blog-excerpt {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

/* ... rest of home.css ... */

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

  .category-grid,
  .home-blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: white;
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #ffc107;
}

.stars {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.testimonial-text {
  color: #111827;
  margin-bottom: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #1e3c72;
  font-size: 0.95rem;
}

/* Newsletter section */

.newsletter-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.75rem 2rem;
  border-radius: 8px;
  text-align: center;
}

.newsletter-title {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.newsletter-text {
  font-size: 0.98rem;
  opacity: 0.95;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 1.75rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid #fffb9c;
  outline-offset: 2px;
}

/* Visually hidden (for labels) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive styles for landing (homepage) */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"] {
    min-width: 100%;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

  .category-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}