.strategy-box {
  background: #fff7f5;
  border-left: 4px solid #ee6c4d;
  color: #475569;
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
}

/* Custom styles for the article preview */
.article-card {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.article-card:hover {
  border-color: #ee6c4d;
  transform: translateY(-4px);
}

.article-category {
  color: #ee6c4d;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.article-card {
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(238, 108, 77, 0.15);
}

/* Custom underline animation for the link */
.article-card a {
  position: relative;
  text-decoration: none;
}
/* Article Content Container */
.content-body {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.8;
  color: #e1e1e1;
  font-size: 1.125rem;
}

/* Headers */
.content-body h2 {
  font-family: "verdana", sans-serif;
  font-weight: 900;
  color: #10141a;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

/* Paragraph spacing */
.content-body p {
  margin-bottom: 1.5rem;
}
.content-body strong {
  color: #2a374a;
}
/* Strategic Callout Box */
.strategy-box {
  background: rgba(238, 108, 77, 0.05);
  border-left: 4px solid #ee6c4d;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

/* Lists */
.content-body ul {
  margin-bottom: 2rem;
  padding-left: 1.25rem;
}

.content-body li {
  margin-bottom: 0.75rem;
  position: relative;
}

.content-body li::before {
  content: "→";
  color: #ee6c4d;
  position: absolute;
  left: -1.5rem;
}
