/* BEXFORD INSIGHTS CSS */
.insights-hero {
  padding: 150px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, var(--bexford-dark-green, #002d18) 0%, var(--bexford-green, #004225) 100%);
}

.insights-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bexford-gold, #D4AF37);
  display: block;
  margin-bottom: 15px;
}

.insights-hero h1 {
  font-size: 54px;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.1;
  color: #FFFFF0;
  font-family: 'Cormorant Garamond', serif;
}

.insights-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: #FFFFF0;
  line-height: 1.6;
}

.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 40px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 1200px;
  margin: 0 auto;
}

.cat-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFFFF0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--bexford-gold, #D4AF37);
  color: #002d18;
}

/* Featured Article */
.featured-article {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}

.featured-article:hover .featured-img-wrap img {
  transform: scale(1.03);
}

.featured-content .cat-label {
  color: var(--bexford-gold, #D4AF37);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.featured-content h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #FFFFF0;
  font-family: 'Cormorant Garamond', serif;
}

.featured-content p {
  font-size: 17px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #FFFFF0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bexford-gold, #D4AF37);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 15px;
}

/* Grid */
.insights-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insight-card {
  background: rgba(255,255,240,0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.insight-card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.6);
}

.card-meta .cat { color: var(--bexford-gold, #D4AF37); text-transform: uppercase; }

.card-body h3 {
  font-size: 24px;
  margin: 0 0 15px;
  line-height: 1.2;
  color: #FFFFF0;
  font-family: 'Cormorant Garamond', serif;
}

.card-body p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #FFFFF0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #FFFFF0;
}

/* Detail Page */
.article-detail {
  background: #FFFFF0;
  color: #222;
  padding-bottom: 80px;
}

.article-hero {
  padding: 140px 20px 80px;
  background: var(--bexford-green, #004225);
  text-align: center;
  color: #FFFFF0;
}

.article-hero h1 {
  font-size: 48px;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.2;
}

.article-meta {
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.article-img-main {
  max-width: 1000px;
  margin: -40px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.article-img-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border: 4px solid #FFFFF0;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-family: 'Inter', sans-serif;
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--bexford-dark-green, #002d18);
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.article-content h2 { font-size: 36px; }
.article-content h3 { font-size: 28px; }

.article-content p {
  margin-bottom: 1.5em;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-content blockquote {
  border-left: 4px solid var(--bexford-gold, #D4AF37);
  margin: 2em 0;
  padding: 1em 2em;
  font-style: normal;
  font-size: 24px;
  color: var(--bexford-dark-green, #002d18);
  background: rgba(212, 175, 55, 0.05);
  font-family: 'Cormorant Garamond', serif;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2em 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .featured-article { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .insights-hero h1 { font-size: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 36px; }
  .article-content { font-size: 16px; }
}

