/*
Theme Name: Bästa IPTV Theme
Theme URI: https://bastaip-tv.shop
Author: Bästa IPTV
Author URI: https://bastaip-tv.shop
Description: Custom Premium Dark Neon theme for Bästa IPTV
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
Text Domain: basta-iptv
*/

:root {
  --bg-dark: #0a0e1a;
  --bg-darker: #070a13;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --accent-green: #00e676;
  --accent-green-glow: rgba(0, 230, 118, 0.5);
  --accent-blue: #2979ff;
  --accent-blue-glow: rgba(41, 121, 255, 0.5);
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --text-main: #f8f9fa;
  --text-muted: #a0aec0;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --border-radius: 1rem;
  --transition-speed: 0.3s;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-gradient {
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(41, 121, 255, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-green), #00b35c);
  color: #000;
  box-shadow: 0 0 15px var(--accent-green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--accent-green-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 var(--accent-green-glow); transform: scale(1); }
  50% { box-shadow: 0 0 20px 10px var(--accent-green-glow); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 var(--accent-green-glow); transform: scale(1); }
}

.btn-pulse {
  animation: pulseGlow 2s infinite;
  background: linear-gradient(90deg, #00e676, #00b35c) !important;
  color: #000 !important;
  font-weight: 800;
}
.btn-pulse:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-green-glow);
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none; /* NEVER use fill dark */
}

/* Icon Chips */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
}
.icon-chip svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}
.icon-chip.icon-large-chip {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}
.icon-chip.icon-large-chip svg {
  width: 40px;
  height: 40px;
}

.chip-green {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}
.chip-blue {
  background: rgba(41, 121, 255, 0.15);
  color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.2);
}
.chip-purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}
.chip-pink {
  background: rgba(236, 72, 153, 0.15);
  color: var(--accent-pink);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

/* 1. Marquee */
.marquee {
  background: var(--accent-green);
  color: #000;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 100;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-green);
}

.header-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* 3. Hero */
.hero {
  padding: 6rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-trust-text {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust-text span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-trust-text .icon {
  width: 16px; height: 16px; color: var(--accent-green);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--border-light);
}

.badge .icon {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
}

.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 230, 118, 0.15);
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 2rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
  white-space: nowrap;
}
.floating-badge.badge-1 { top: 10%; left: -10%; }
.floating-badge.badge-2 { bottom: 15%; right: -5%; }
.floating-badge.badge-3 { top: 60%; right: -15%; }
.floating-badge .icon-chip {
  width: 32px; height: 32px; margin: 0; border-radius: 50%;
}
.floating-badge .icon-chip svg {
  width: 16px; height: 16px;
}

/* 4. Stats Strip */
.stats-strip {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h4 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--accent-blue);
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* 5. Quick Answer Box */
.quick-answer {
  max-width: 800px;
  margin: 0 auto;
}

.quick-answer p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.quick-steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.quick-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

/* 6. Features / Varför välja oss */
.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 7. Channel Logos Grid */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.channel-logo {
  opacity: 0.5;
  transition: opacity var(--transition-speed);
  filter: grayscale(100%) brightness(200%);
  max-height: 40px;
}

.channel-logo:hover {
  opacity: 1;
  filter: none;
}

/* 8. IPTV vs Kabel */
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.5rem;
}

.comparison-item .icon {
  flex-shrink: 0;
}

.comparison-item.pro .icon {
  color: var(--accent-green);
}

.comparison-item.con .icon {
  color: #ff3b30;
}

/* 9. Topical Authority Hub */
.authority-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.authority-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(41, 121, 255, 0.2);
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}
.article-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
}
.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.article-card h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.article-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.authority-card .icon-chip {
  width: 48px; height: 48px; margin-bottom: 0; flex-shrink: 0;
}
.authority-card .icon-chip svg {
  width: 24px; height: 24px;
}

.authority-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.authority-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 10. Pricing */
.pricing-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  padding-top: 3rem; /* Space for the badge */
  overflow: visible;
}

.pricing-card .btn {
  width: 100%;
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 1rem 0.5rem;
}

.pricing-card.popular {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.15);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.best-value {
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card.popular .pricing-badge {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-blue-glow);
}

.pricing-card.best-value .pricing-badge {
  background: var(--accent-green);
  color: #000;
  box-shadow: 0 0 15px var(--accent-green-glow);
}

.pricing-months {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-monthly {
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.pricing-features .icon {
  color: var(--accent-green);
  width: 16px;
  height: 16px;
}

/* 11. Hur Köper Du */
.step-card {
  text-align: center;
}

.step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

/* 13. Comparison Table */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th, td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

th {
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

th:first-child, td:first-child {
  font-weight: 600;
  color: var(--text-main);
}

.col-highlight {
  background: rgba(41, 121, 255, 0.05);
  font-weight: bold;
}

td .icon.check { color: var(--accent-green); }
td .icon.cross { color: #ff3b30; }

/* 14. Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: #ffc107;
  display: flex;
  gap: 0.25rem;
}

.stars .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.verified {
  color: var(--accent-green);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: normal;
}

/* 20. FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question .icon {
  transition: transform var(--transition-speed);
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* BULLETPROOF WP FALLBACK: If JS fails, this pure CSS rule forces it open! */
.faq-item:focus-within .faq-answer,
.faq-item.active .faq-answer,
.faq-question[aria-expanded="true"] ~ .faq-answer {
  max-height: 2000px !important;
  padding-top: 1rem !important;
}

.faq-item:focus-within .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* 23. Related Searches */
.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.chip {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-speed);
}

.chip:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
    transform: translateY(-2px);
}

/* 24. Footer */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-icons, .trust-badges-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Animations / Scroll Reveal */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero, .hero h1, .hero p {
    text-align: center;
  }
  .hero-ctas, .hero-trust-text, .trust-badges {
    justify-content: center;
  }
  .floating-badge {
    display: none; /* Hide on mobile to prevent clutter */
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-links.active {
    display: flex;
  }

  .header-ctas {
    display: none; /* hide buttons in header on mobile to save space, or show one */
  }

  .mobile-menu-btn {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.popular {
    transform: none;
  }
}

/* 19. BLOG GRID (WP) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
@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 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}
.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.blog-card-title a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-card-title a:hover {
    color: var(--primary);
}
.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}
.blog-card-readmore {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 112, 243, 0.1);
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    align-self: flex-start;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(0, 112, 243, 0.2);
}
.blog-card-readmore:hover {
    background: var(--primary);
    color: var(--white);
}
