/* ==============================================
   FUTURISTIC BLOG PAGE STYLES - YEAR 9999
   Professional, Simple, Cutting-Edge Design
   ============================================== */

/* Global Blog Page Styles */
.blog-page {
  background: #0a0e27;
  color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.blog-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 98, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.blog-page .container {
  position: relative;
  z-index: 1;
}

/* Header Adjustments for Blog */
.blog-header {
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

/* ==============================================
   BLOG HERO SECTION - Futuristic
   ============================================== */
.blog-hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 100px;
  color: #C9A962;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -2px;
}

.title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #C9A962 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.blog-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* ==============================================
   FEATURED ARTICLE - Ultra Premium Card
   ============================================== */
.featured-article {
  padding: 0 0 120px;
}

.featured-article-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.4) 0%, rgba(15, 20, 41, 0.4) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(20px);
}

.featured-article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.featured-article-card:hover::before {
  opacity: 1;
}

.featured-article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 98, 0.1);
}

.featured-article-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(15, 20, 41, 0.8) 100%);
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article-card:hover .featured-article-image img {
  transform: scale(1.05);
}

.featured-article-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(15, 20, 41, 0.8) 100%);
}

.featured-article-icon {
  font-size: 120px;
  color: rgba(201, 169, 98, 0.3);
}

.featured-article-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
}

.featured-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201, 169, 98, 0.9);
  backdrop-filter: blur(10px);
  color: #0a0e27;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 6px;
  text-transform: uppercase;
}

.featured-article-content {
  padding: 48px;
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.featured-article-category {
  color: #C9A962;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured-article-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.featured-article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.featured-article-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px;
  max-width: 700px;
}

.featured-article-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C9A962;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.featured-article-card:hover .featured-article-cta {
  gap: 12px;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.featured-article-card:hover .cta-arrow {
  transform: translateX(4px);
}

/* ==============================================
   ARTICLE GRID - Futuristic Cards
   ============================================== */
.article-grid-section {
  padding: 0 0 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.article-card {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.3) 0%, rgba(15, 20, 41, 0.3) 100%);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.article-card:hover::before {
  opacity: 1;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(15, 20, 41, 0.6) 100%);
}

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

.article-card:hover .article-card-image img {
  transform: scale(1.08);
}

.article-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(15, 20, 41, 0.6) 100%);
}

.article-card-icon {
  font-size: 64px;
  color: rgba(201, 169, 98, 0.2);
}

.article-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(201, 169, 98, 0.9);
  backdrop-filter: blur(10px);
  color: #0a0e27;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
}

.article-card-content {
  padding: 28px;
}

.article-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 16px;
  transition: color 0.3s ease;
}

.article-card:hover .article-card-title {
  color: #C9A962;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.article-card-author {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.article-card-date::before {
  content: '•';
  margin-right: 12px;
}

/* Empty State */
.article-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* Grid CTA */
.article-grid-cta {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.btn-secondary-outline {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: #C9A962;
}

.btn-secondary-outline:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: rgba(201, 169, 98, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(201, 169, 98, 0.1);
}

.btn-primary-outline {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: #C9A962;
  padding: 18px 40px;
  font-size: 15px;
}

.btn-primary-outline:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(201, 169, 98, 0.15);
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 80px;
  }

  .blog-hero-title {
    font-size: 48px;
  }

  .blog-hero-subtitle {
    font-size: 16px;
  }

  .featured-article-image {
    height: 300px;
  }

  .featured-article-content {
    padding: 32px 24px;
  }

  .featured-article-title {
    font-size: 32px;
  }

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

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .blog-hero-title {
    font-size: 36px;
  }

  .featured-article-title {
    font-size: 28px;
  }

  .article-card-title {
    font-size: 20px;
  }
}

/* ==============================================
   FOOTER - Premium Futuristic Design
   ============================================== */
.premium-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  padding: 80px 0 40px;
  position: relative;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.3) 50%, transparent 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 24px;
  color: #C9A962;
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A962;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #C9A962;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.disclaimer {
  font-style: italic;
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 60px 0 32px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* === BRIEFINGS CALLOUT BANNER === */
.briefings-callout-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.briefings-callout-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.briefings-callout-banner .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.callout-content {
    max-width: 600px;
}

.callout-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #d4af37;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.callout-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.callout-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 3rem;
}

.btn-gold-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: #d4af37;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-gold-primary:hover {
    background: #e6c158;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold-primary svg {
    transition: transform 0.3s ease;
}

.btn-gold-primary:hover svg {
    transform: translateX(4px);
}

.callout-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.callout-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.stat-icon {
    font-size: 2rem;
    color: #d4af37;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.875rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === ARTICLE CARD ACTIONS === */
.article-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6a6a6a;
    margin: 1rem 0 1.5rem;
}

.article-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
}

.action-read {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a2332;
    transition: color 0.3s ease;
}

.article-card-link:hover .action-read {
    color: #d4af37;
}

.action-briefings {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.action-briefings:hover {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .briefings-callout-banner .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .callout-title {
        font-size: 2.5rem;
    }
    
    .callout-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .briefings-callout-banner {
        padding: 4rem 0;
    }
    
    .callout-title {
        font-size: 2rem;
    }
    
    .callout-description {
        font-size: 1rem;
    }
    
    .article-card-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* === ARTICLE BRIEFINGS CALLOUT === */
.article-briefings-callout {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdfaf5 0%, #ffffff 100%);
}

.briefings-callout-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.briefings-callout-card:hover {
    border-color: #d4af37;
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.12);
    transform: translateY(-4px);
}

.callout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.callout-text {
    flex: 1;
}

.callout-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.callout-subtext {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
}

.callout-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #d4af37;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.callout-button:hover {
    background: #e6c158;
    transform: translateX(4px);
}

.callout-button svg {
    transition: transform 0.3s ease;
}

.callout-button:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
    .briefings-callout-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
        text-align: center;
    }
    
    .callout-icon {
        margin: 0 auto;
    }
    
    .callout-subtext {
        margin: 0 auto;
    }
    
    .callout-button {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .article-briefings-callout {
        padding: 3rem 0;
    }
    
    .briefings-callout-card {
        padding: 2rem;
    }
    
    .callout-icon {
        width: 64px;
        height: 64px;
    }
    
    .callout-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .callout-heading {
        font-size: 1.5rem;
    }
    
    .callout-subtext {
        font-size: 0.9375rem;
    }
}

/* === FEATURED ARTICLE BADGE (CHIC & SUBTLE) === */
.article-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #e6c158 100%);
    color: #0a0a0a;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.featured-card {
    position: relative;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37 0%, #e6c158 100%);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.featured-card:hover::before {
    opacity: 0.3;
}

.featured-card .article-card-link {
    position: relative;
    z-index: 1;
}

/* Update regular badge to be less prominent */
.article-card-badge {
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(8px);
}

/* === SIMPLIFIED ARTICLE CARD CTA === */
.article-card-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
}

.action-read-white {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    background: #1a2332;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.article-card-link:hover .action-read-white {
    background: #d4af37;
    color: #0a0a0a;
}
