/* ============================================================
   Iron Dome Press - Premium Publication Redesign
   Navy (#070F1F), Gold (#D4AF37), Cream (#FDF8EF), Steel (#4A6FA5), Light Gray (#F0F2F5)
   Premium Google Fonts: Playfair Display, DM Sans, Source Serif Pro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&family=Source+Serif+Pro:wght@400;600&display=swap');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #FFFFFF;
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: -0.3px;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #070F1F;
  letter-spacing: -0.8px;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
}
h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.9px;
}
h3 { font-size: 1.875rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

a {
  color: #070F1F;
  text-decoration: none;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #D4AF37;
}

/* ============================================================
   Header & Navigation
   ============================================================ */

.site-header {
  background: rgba(7, 15, 31, 0.98);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  color: #D4AF37;
  transform: translateX(2px);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  color: #D4AF37;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.tagline {
  font-size: 0.7rem;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'DM Sans', sans-serif;
}

.main-nav a:hover {
  color: #D4AF37;
  border-bottom-color: #D4AF37;
}

.search-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.search-toggle:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

.search-panel {
  display: none;
  background-color: white;
  padding: 2rem;
  border-top: 1px solid #E8E8E8;
  max-width: 1400px;
  margin: 0 auto;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-panel.active {
  display: block;
}

/* ============================================================
   News Ticker
   ============================================================ */

.news-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-ticker span {
  font-family: 'DM Sans', sans-serif;
}

.news-ticker span:last-child {
  display: inline-block;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================
   Main Content
   ============================================================ */

#main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ============================================================
   Homepage Hero
   ============================================================ */

/* Hero Featured Article — full-bleed image with overlay */
.hero-featured {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-featured-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 8s ease-out;
}

.hero-featured:hover .hero-featured-image {
  transform: scale(1.03);
}

.hero-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 15, 31, 0.95) 0%,
    rgba(7, 15, 31, 0.7) 35%,
    rgba(7, 15, 31, 0.3) 60%,
    rgba(7, 15, 31, 0.15) 100%
  );
  z-index: 1;
}

.hero-featured-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-category {
  display: inline-block;
  color: #D4AF37;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-title {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.25rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
  max-width: 800px;
}

.hero-excerpt {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 650px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-author {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: inline-block;
  background-color: #D4AF37;
  color: #070F1F;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-cta:hover {
  background-color: white;
  color: #070F1F;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

/* Section Headers */
.section-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-line {
  height: 3px;
  width: 60px;
  background: #D4AF37;
}

/* Article Card Images */
.article-card-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.article-card {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero {
    padding: 3.5rem 0;
    margin-bottom: 3rem;
  }

  .hero-text h1 {
    font-size: 2.75rem;
  }

  .hero-image {
    min-height: 250px;
  }
}

/* ============================================================
   Featured Article Section
   ============================================================ */

.featured-article {
  background: white;
  border: none;
  border-top: 3px solid #D4AF37;
  padding: 3rem 0;
  margin-bottom: 4.5rem;
  border-radius: 0;
}

.featured-article h3 {
  color: #D4AF37;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

.featured-article h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.8px;
}

.featured-article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: #666;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-article p {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  color: #333;
}

.read-more {
  display: inline-block;
  color: #070F1F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.25rem;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more:hover {
  color: #D4AF37;
}

.read-more:hover::after {
  width: 100%;
}

/* ============================================================
   Call-to-Action Banner
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, #070F1F 0%, #1a2a4a 100%);
  color: white;
  padding: 4rem 2.5rem;
  border-radius: 0;
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  background-color: #D4AF37;
  color: #070F1F;
  padding: 1.125rem 2.75rem;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: white;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.3);
}

/* ============================================================
   Article Grid
   ============================================================ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

.article-card {
  background: white;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: #F0F2F5;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.article-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  display: inline-block;
  background-color: transparent;
  color: #D4AF37;
  padding: 0.375rem 0;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
  width: fit-content;
  border-bottom: 2px solid #D4AF37;
  font-family: 'DM Sans', sans-serif;
}

.article-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #070F1F;
  line-height: 1.3;
}

.article-card .article-title {
  margin-bottom: auto;
}

.article-card .article-title a {
  color: #070F1F;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.article-excerpt {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #E8E8E8;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-author {
  font-weight: 700;
  color: #070F1F;
}

.article-date {
  color: #999;
}

/* ============================================================
   Section Pages
   ============================================================ */

.section-header {
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 2.5rem;
  margin-bottom: 4rem;
}

.section-header h1 {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================================
   Article Page
   ============================================================ */

.article-page {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #E8E8E8;
}

.article-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -1px;
}

.article-header .article-category {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.article-byline {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.byline-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #b89619 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 3rem;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.article-body blockquote {
  border-left: 3px solid #D4AF37;
  padding-left: 2rem;
  margin: 2.5rem 0;
  color: #070F1F;
  font-style: italic;
  font-size: 1.1rem;
}

.article-body ol,
.article-body ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.article-body li {
  margin-bottom: 0.875rem;
  line-height: 1.8;
}

.key-box {
  background-color: #FDF8EF;
  border-left: 3px solid #D4AF37;
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 0;
}

.key-box strong {
  color: #070F1F;
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-family: 'DM Sans', sans-serif;
}

.alert-box {
  background-color: #FEE8E8;
  border-left: 3px solid #DC2626;
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 0;
}

.alert-box strong {
  color: #DC2626;
  font-family: 'DM Sans', sans-serif;
}

.pull-quote {
  background-color: white;
  border-left: 3px solid #D4AF37;
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 3rem 0;
  border-radius: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #070F1F;
  font-family: 'Playfair Display', serif;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #D4AF37;
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Article Footer & Related Articles */
.article-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #E8E8E8;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background-color: #F0F2F5;
  color: #070F1F;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.share-button:hover {
  background-color: #D4AF37;
  color: white;
  transform: translateY(-2px);
}

.related-articles {
  margin-top: 3rem;
}

.related-articles h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #070F1F;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.related-card {
  background: white;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #F0F2F5;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-card-image {
  transform: scale(1.02);
}

.related-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #070F1F;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-date {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   Iron 100 - Landing Page
   ============================================================ */

.iron100-hero {
  background: linear-gradient(135deg, #070F1F 0%, #1a2a4a 100%);
  color: white;
  padding: 5rem 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.iron100-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.iron100-hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1.2px;
  position: relative;
  z-index: 1;
}

.iron100-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem;
}

.filter-button {
  padding: 0.75rem 1.75rem;
  border: 1.5px solid #070F1F;
  background-color: white;
  color: #070F1F;
  border-radius: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  font-family: 'DM Sans', sans-serif;
}

.filter-button:hover {
  background-color: #070F1F;
  color: white;
  border-color: #070F1F;
}

.filter-button.active {
  border-color: #D4AF37;
  background-color: #D4AF37;
  color: #070F1F;
}

.iron100-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem;
}

.iron100-card {
  background: white;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.iron100-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.iron100-rank {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #D4AF37;
  color: #070F1F;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  z-index: 10;
}

.iron100-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, #F0F2F5, #E8EEF5);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.iron100-card:hover .iron100-image {
  transform: scale(1.02);
}

.iron100-content {
  padding: 2.25rem 1.75rem;
}

.iron100-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #070F1F;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.iron100-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.sector-badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

/* Sector-specific badge colors */
.sector-congress {
  background-color: #E8EFF5;
  color: #070F1F;
}

.sector-philanthropy {
  background-color: #FEF9F0;
  color: #D4AF37;
}

.sector-media {
  background-color: #EBF1F7;
  color: #4A6FA5;
}

.sector-tech {
  background-color: #E8F7FC;
  color: #06A5D2;
}

.sector-faith {
  background-color: #F5EDFF;
  color: #9333EA;
}

.sector-defense {
  background-color: #FEE8E8;
  color: #DC2626;
}

.sector-state {
  background-color: #ECFEF0;
  color: #16A34A;
}

.iron100-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.iron100-link {
  display: inline-block;
  color: #070F1F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'DM Sans', sans-serif;
}

.iron100-link:hover {
  color: #D4AF37;
}

/* ============================================================
   Iron 100 Profile Page
   ============================================================ */

.profile-header {
  background: linear-gradient(135deg, #070F1F 0%, #1a2a4a 100%);
  color: white;
  padding: 4.5rem 2.5rem;
  margin-bottom: 4rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.profile-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.profile-image-container {
  text-align: center;
}

.profile-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #F0F2F5, #E8EEF5);
  margin-bottom: 1.75rem;
}

.profile-rank-badge {
  background-color: #D4AF37;
  color: #070F1F;
  padding: 0.625rem 1.75rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'DM Sans', sans-serif;
}

.profile-info h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
}

.profile-info .sector-badge {
  margin-right: 1rem;
}

.profile-title {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.profile-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .profile-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.profile-section {
  background: white;
  border: none;
  border-radius: 0;
  padding: 2.5rem 0;
  margin-bottom: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #E8E8E8;
}

.profile-section:last-child {
  border-bottom: none;
}

.profile-section h2 {
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  color: #070F1F;
  font-size: 1.75rem;
}

.profile-stat {
  background-color: #FDF8EF;
  border-left: 3px solid #D4AF37;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.profile-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.75rem;
  letter-spacing: 0.8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.profile-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.quote-box {
  background-color: white;
  border-left: 3px solid #D4AF37;
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2rem 0;
  border-radius: 0;
  font-style: italic;
  color: #070F1F;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ============================================================
   About & Footer Pages
   ============================================================ */

.page-content {
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.9;
  padding: 0 2.5rem;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background-color: #070F1F;
  color: white;
  padding: 3.5rem 2.5rem 1.5rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.footer-logo {
  opacity: 0.95;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.footer-section h3 {
  color: #D4AF37;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.875rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
  color: #D4AF37;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  background-color: #D4AF37;
  color: #070F1F;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.125rem;
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
}

.newsletter-form button {
  padding: 0.85rem 1.75rem;
  background-color: #D4AF37;
  color: #070F1F;
  border: none;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  font-family: 'DM Sans', sans-serif;
}

.newsletter-form button:hover {
  background-color: white;
  color: #070F1F;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-bottom a {
  color: #D4AF37;
}

/* ============================================================
   Responsive Design
   ============================================================ */

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 1.75rem;
  }

  .main-nav a {
    font-size: 0.8rem;
  }

  .hero-content {
    gap: 2.5rem;
  }

  .profile-top {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .main-nav ul {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .main-nav a {
    display: block;
    padding: 0.5rem 0;
  }

  #main-content {
    padding: 0 1.5rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.375rem; }

  .hero {
    padding: 3rem 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.75rem;
  }

  .iron100-hero {
    padding: 3.5rem 1.5rem;
  }

  .iron100-hero h1 {
    font-size: 2.75rem;
  }

  .iron100-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .filter-buttons {
    padding: 0 1.5rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-byline {
    flex-direction: column;
    gap: 1rem;
  }

  .profile-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .featured-article {
    padding: 2rem 0;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 1rem;
  }

  #main-content {
    padding: 0 1rem;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .logo-img {
    width: 30px;
    height: 30px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.125rem; }

  .hero {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .filter-buttons {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .filter-button {
    width: 100%;
  }

  .iron100-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .iron100-card {
    min-width: 0;
  }

  .article-card {
    margin: 0;
  }

  .article-image {
    height: 180px;
  }

  .page-content {
    padding: 0 1rem;
  }

  .site-footer {
    padding: 2.5rem 1rem 1rem;
  }

  .footer-content {
    gap: 2rem;
  }
}

/* ============================================================
   Print Styles
   ============================================================ */

@media print {
  .site-header,
  .site-footer,
  .news-ticker,
  .search-panel,
  .share-buttons,
  .related-articles {
    display: none;
  }

  .article-page {
    font-size: 12pt;
  }

  .article-body {
    column-count: 2;
    column-gap: 2rem;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  .article-body blockquote,
  .key-box,
  .pull-quote {
    page-break-inside: avoid;
  }
}
