/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Grid (index page) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.3s var(--transition);
  text-decoration: none;
  color: var(--text-light);
}

.blog-card:hover {
  border-color: var(--amex-blue);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 111, 207, 0.3);
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s;
}

.blog-card:hover .blog-read-more { color: var(--gold-light); }

/* Blog Article */
.blog-article {
  padding: 8rem 0 4rem;
}

.blog-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.blog-intro {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
}

/* Blog Content */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  color: #C8D6E5;
  font-size: 1rem;
  line-height: 1.85;
}

.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.blog-content h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 2rem 0 0.8rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul, .blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-content ul { list-style: none; }

.blog-content ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--amex-blue);
  font-size: 0.7rem;
  top: 0.35rem;
}

.blog-content ol { list-style: decimal; }

.blog-content ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.3rem;
}

.blog-content strong { color: var(--text-light); }

.blog-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.blog-content a:hover { color: var(--gold-light); }

/* Blog Table */
.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

@media (min-width: 768px) {
  .blog-table { display: table; }
}

.blog-table thead { background: rgba(0, 111, 207, 0.15); }

.blog-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.85rem;
  white-space: nowrap;
}

.blog-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border-dark);
  color: #B0C8E8;
}

.blog-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }

/* Blog CTA */
.blog-cta {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2.5rem;
  background: rgba(0, 111, 207, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
}

.blog-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.blog-cards-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
