/* Home hero */
.home-hero {
  background-color: #000441;
  padding: 80px 16px 60px;
  text-align: center;
}

.home-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.home-headline {
  color: #fff;
  font-family: helvetica-lt-pro, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 16px;
}

.home-subheadline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 28px;
}

/* Container */
.home-container {
  max-width: 930px;
  margin: 0 auto;
  padding: 50px 16px 60px;
}

.section-title {
  color: #000441;
  font-family: helvetica-lt-pro, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Article grid */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

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

.card-image-wrap {
  height: 180px;
  overflow: hidden;
  background: #f0f0f0;
}

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

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  color: #000441;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 12px;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.card-author {
  font-weight: 600;
}

.card-products {
  color: #0076ff;
  font-weight: 500;
}

/* About section */
.home-about {
  border-top: 1px solid #e0e0e0;
  padding-top: 50px;
}

.home-about p {
  color: #393939;
  line-height: 26px;
  margin-bottom: 30px;
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.trust-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item strong {
  color: #000441;
  font-size: 16px;
}

.trust-item span {
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

/* Responsive */
@media (max-width: 767px) {
  .home-headline {
    font-size: 28px;
    line-height: 34px;
  }

  .home-subheadline {
    font-size: 16px;
  }

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

  .trust-points {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 50px 16px 40px;
  }
}
