/* ===================================
   HERO SECTION - Compact Gold Frame
   =================================== */
.hero {
  background: #f8fafc; /* Light background for the full section */
  padding: 60px 0 40px;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  
  /* Gold frame/box styling */
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.08) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  line-height: 1.3;
  text-shadow: none; /* Remove text shadow for cleaner look */
}

.hero-search-section {
  margin: 0; /* Remove bottom margin since we're in a compact frame */
}

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

.hero-search-input-group {
  display: flex;
  gap: 8px;
  background: white;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-search-input-group:focus-within {
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.2);
  transform: translateY(-1px);
  border-color: rgba(255, 215, 0, 0.5);
}

.hero-search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-search-input-wrapper i {
  position: absolute;
  left: 18px;
  color: #666;
  font-size: 16px;
}

.hero-search-input-wrapper input {
  width: 100%;
  padding: 14px 18px 14px 45px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: #333;
}

.hero-search-input-wrapper input::placeholder {
  color: #999;
}

.hero-btn-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-btn-search:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Remove or hide hero stats since we want compact design */
.hero-stats {
  display: none;
}

/* Mobile Responsive untuk Hero Compact */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 30px;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .hero-title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 1.4;
  }
  
  .hero-search-input-group {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }
  
  .hero-search-input-wrapper input {
    padding: 12px 16px 12px 40px;
    text-align: center;
  }
  
  .hero-btn-search {
    border-radius: 16px;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 24px 16px;
    border-radius: 12px;
  }
  
  .hero-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .hero-search-input-wrapper input {
    font-size: 14px;
    padding: 10px 14px 10px 36px;
  }
  
  .hero-btn-search {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* Keep all other existing styles for articles, newsletter, etc. unchanged */
/* Horizontal Article Cards - Matching Screenshot Design */
.articles-list-horizontal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.article-card-horizontal {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.article-card-horizontal:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-image-horizontal {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}

.card-image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-content-horizontal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}

.card-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.breadcrumb-item {
  color: #666;
  text-decoration: none;
}

.card-breadcrumb i {
  font-size: 10px;
  color: #999;
}

.card-title-horizontal {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.card-title-horizontal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-title-horizontal a:hover {
  color: #2563eb;
}

.card-excerpt-horizontal {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  flex-grow: 1;
}

.card-meta-horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.meta-item-horizontal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.meta-item-horizontal i {
  font-size: 12px;
  color: #999;
}

/* Newsletter Section - Keep existing styles */
.newsletter {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
}

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

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.newsletter-content p {
  font-size: 18px;
  color: #64748b;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  gap: 12px;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-group:focus-within {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.form-group input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: #333;
}

.form-group input[type="email"]::placeholder {
  color: #999;
}

.btn-subscribe {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #10b981;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.newsletter-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.newsletter-note i {
  color: #10b981;
}
