body {
  margin: 0;
  background: #ffffff;
  color: #111111;
}

.hero {
  text-align: center;
  padding: 3.5rem 1.5rem 3.25rem;
  border-bottom: 1px solid #111;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.gradient-text {
  color: #c8241d;
  display: inline-block;
}

.category-section {
  padding: 4rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.category-section .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.text-column {
  padding-right: 1rem;
}

.section-icon {
  font-size: 2.5rem;
  color: #c8241d;
  margin-bottom: 0.5rem;
}

.text-column h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.cta-link {
  display: inline-block;
  background-color: #c8241d;
  color: #fff;
  padding: 0.65rem 1.3rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease;
}

.cta-link:hover {
  background-color: #111;
  color: #fff;
}

.articles-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.article-card {
  overflow: hidden;
  border: 1px solid #111;
  background: #fff;
  transition: transform 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.article-card h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
  color: #111;
}

@media (max-width: 768px) {
  .category-section .container {
    grid-template-columns: 1fr;
  }
  .articles-column {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .articles-column {
    grid-template-columns: 1fr;
  }
}
.resources-strip {
  background: #111;
  color: #fff;
  padding: 3rem 2rem;
  margin: auto;
}

.resources-strip .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.resources-strip h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.resources-strip p {
  font-size: 1rem;
  color: #ddd;
  margin: 0;
}

.resources-strip .cta-link {
  background-color: #c8241d;
  color: #fff;
  padding: 0.7rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.resources-strip .cta-link:hover {
  background-color: #ffbd58;
  color: #111;
}

@media (max-width: 768px) {
  .resources-strip .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .section-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
}
