/* ===== CLOUD-NATIVE INSIGHT ENHANCED STYLING =====
   Cloud-themed styling with sky blue/cloud blue/innovation purple colors
   Professional infrastructure-focused design for cloud strategy content
   ================================================ */

/* Cloud-Native Theme Variables */
.cloud-native-insight-theme {
  --cloud-primary: #0EA5E9;
  --cloud-secondary: #3B82F6;
  --cloud-accent: #8B5CF6;
  --cloud-success: #38BDF8;
  --cloud-text: #374151;
  --cloud-text-light: #6B7280;
  --gradient-cloud: linear-gradient(135deg, #0EA5E9, #38BDF8, #3B82F6);
  --gradient-cloud-light: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(56, 189, 248, 0.05), rgba(59, 130, 246, 0.05));
  --gradient-sky: linear-gradient(135deg, #0EA5E9, #38BDF8, #60A5FA);
  --gradient-innovation: linear-gradient(135deg, #3B82F6, #8B5CF6, #A78BFA);
}

/* Override base article theme with cloud colors */
.cloud-native-insight-theme.insight-article-theme {
  --insight-article-primary: #0EA5E9;
  --insight-article-secondary: #3B82F6;
  --insight-article-accent: #8B5CF6;
  --gradient-article: linear-gradient(135deg, #0EA5E9, #38BDF8, #3B82F6);
  --gradient-article-light: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(56, 189, 248, 0.05), rgba(59, 130, 246, 0.05));
}

/* Enhanced Cloud Header */
.cloud-native-insight-theme .insight-header {
  background: var(--gradient-cloud);
  position: relative;
  overflow: hidden;
}

.cloud-native-insight-theme .insight-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  animation: cloudDrift 30s ease-in-out infinite;
}

@keyframes cloudDrift {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.8;
  }
  25% { 
    transform: translate(40px, -20px) scale(1.1); 
    opacity: 0.6;
  }
  50% { 
    transform: translate(-30px, 40px) scale(0.9); 
    opacity: 0.9;
  }
  75% { 
    transform: translate(30px, 20px) scale(1.05); 
    opacity: 0.7;
  }
}

/* Cloud Infrastructure Icon */
.cloud-native-insight-theme .insight-category::before {
  content: '☁️';
  margin-right: 0.5rem;
}

/* Enhanced Statistics with Cloud Theme */
.cloud-native-insight-theme .stats-highlight {
  background: var(--gradient-cloud-light);
  border: 1px solid rgba(14, 165, 233, 0.15);
  position: relative;
}

.cloud-native-insight-theme .stats-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .stat-item {
  background: white;
  border: 1px solid rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

.cloud-native-insight-theme .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .stat-item:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}

.cloud-native-insight-theme .stat-number {
  background: var(--gradient-cloud);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Strategy Comparison Section */
.cloud-native-insight-theme .strategy-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .strategy-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cloud-native-insight-theme .strategy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .strategy-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .strategy-item h3 {
  color: var(--cloud-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cloud-native-insight-theme .strategy-item > p {
  color: var(--cloud-text);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cloud-native-insight-theme .strategy-features h4 {
  color: var(--cloud-secondary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.cloud-native-insight-theme .strategy-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cloud-native-insight-theme .strategy-features li {
  color: var(--cloud-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.cloud-native-insight-theme .strategy-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cloud-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Strategy Framework Section */
.cloud-native-insight-theme .strategy-framework {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .framework-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cloud-native-insight-theme .framework-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sky);
}

.cloud-native-insight-theme .framework-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-cloud-light);
  transform: rotate(45deg);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}

.cloud-native-insight-theme .framework-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .framework-item:hover::after {
  opacity: 1;
}

.cloud-native-insight-theme .framework-item h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cloud-native-insight-theme .framework-item:nth-child(1) h4::before { content: '🏗️'; }
.cloud-native-insight-theme .framework-item:nth-child(2) h4::before { content: '⚡'; }
.cloud-native-insight-theme .framework-item:nth-child(3) h4::before { content: '🔧'; }
.cloud-native-insight-theme .framework-item:nth-child(4) h4::before { content: '🏗️'; }

.cloud-native-insight-theme .framework-item p {
  color: var(--cloud-text);
  line-height: 1.6;
  margin: 0;
}

/* Service Spotlight Section */
.cloud-native-insight-theme .service-spotlight {
  background: var(--gradient-cloud-light);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  margin: 3rem 0;
  position: relative;
}

.cloud-native-insight-theme .service-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .service-spotlight h3 {
  color: var(--cloud-primary);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.cloud-native-insight-theme .service-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cloud-native-insight-theme .offering-item {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-left: 3px solid var(--cloud-secondary);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .offering-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  border-left-color: var(--cloud-primary);
}

.cloud-native-insight-theme .offering-item h4 {
  color: var(--cloud-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
}

.cloud-native-insight-theme .offering-item p {
  color: var(--cloud-text);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Technology Stack Section */
.cloud-native-insight-theme .technology-stack {
  background: var(--gradient-cloud-light);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  margin: 3rem 0;
  position: relative;
}

.cloud-native-insight-theme .technology-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .technology-stack h3 {
  color: var(--cloud-primary);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cloud-native-insight-theme .technology-stack h3::before {
  content: '📊 ';
}

.cloud-native-insight-theme .stack-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cloud-native-insight-theme .stack-item {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-left: 3px solid var(--cloud-secondary);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .stack-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  border-left-color: var(--cloud-primary);
}

.cloud-native-insight-theme .stack-item h4 {
  color: var(--cloud-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cloud-native-insight-theme .stack-item:nth-child(1) h4::before { content: '🌊'; }
.cloud-native-insight-theme .stack-item:nth-child(2) h4::before { content: '🔥'; }
.cloud-native-insight-theme .stack-item:nth-child(3) h4::before { content: '⚙️'; }
.cloud-native-insight-theme .stack-item:nth-child(4) h4::before { content: '🛡️'; }

.cloud-native-insight-theme .stack-item .pros {
  margin-bottom: 1rem;
}

.cloud-native-insight-theme .stack-item .pros h5 {
  color: var(--cloud-success);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cloud-native-insight-theme .stack-item .pros ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cloud-native-insight-theme .stack-item .pros li {
  color: var(--cloud-text);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}

.cloud-native-insight-theme .stack-item .pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cloud-success);
  font-weight: bold;
}

/* Migration Challenges Section */
.cloud-native-insight-theme .migration-challenges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .challenge-category {
  background: var(--gradient-cloud-light);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--cloud-primary);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .challenge-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  border-left-color: var(--cloud-secondary);
}

.cloud-native-insight-theme .challenge-category h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.cloud-native-insight-theme .challenge-category .insight-list {
  margin: 0;
}

.cloud-native-insight-theme .challenge-category .insight-list li {
  background: white;
  border-left-color: var(--cloud-accent);
  margin-bottom: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  line-height: 1.6;
}

.cloud-native-insight-theme .challenge-category .insight-list li:hover {
  border-left-color: var(--cloud-secondary);
}

.cloud-native-insight-theme .challenge-category .insight-list li::before {
  color: var(--cloud-accent);
}

.cloud-native-insight-theme .challenge-category .insight-list li strong {
  color: var(--cloud-primary);
  font-weight: 700;
}

/* Implementation Phases Section */
.cloud-native-insight-theme .implementation-phases {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 0;
}

.cloud-native-insight-theme .phase-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .phase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .phase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .phase-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-cloud);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cloud-native-insight-theme .phase-content h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
}

.cloud-native-insight-theme .phase-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cloud-native-insight-theme .phase-content li {
  color: var(--cloud-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.cloud-native-insight-theme .phase-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cloud-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Migration Timeline Section */
.cloud-native-insight-theme .migration-timeline {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 0;
}

.cloud-native-insight-theme .timeline-container {
  position: relative;
  padding-left: 3rem;
}

.cloud-native-insight-theme .timeline-container::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-cloud);
}

.cloud-native-insight-theme .timeline-item {
  position: relative;
  margin-bottom: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cloud-primary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .timeline-item h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cloud-native-insight-theme .timeline-item .phase-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-cloud);
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.cloud-native-insight-theme .timeline-item p {
  color: var(--cloud-text);
  line-height: 1.6;
  margin: 0;
}

/* Cost Analysis Section */
.cloud-native-insight-theme .cost-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--gradient-cloud-light);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.cloud-native-insight-theme .cost-item {
  text-align: center;
  background: white;
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.cloud-native-insight-theme .cost-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sky);
}

.cloud-native-insight-theme .cost-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}

.cloud-native-insight-theme .cost-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-cloud);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.cloud-native-insight-theme .cost-label {
  color: var(--cloud-text-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Kubernetes Benefits Section */
.cloud-native-insight-theme .kubernetes-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .kubernetes-benefits .benefit-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.cloud-native-insight-theme .kubernetes-benefits .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sky);
}

.cloud-native-insight-theme .kubernetes-benefits .benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .kubernetes-benefits .benefit-item h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cloud-native-insight-theme .kubernetes-benefits .benefit-item p {
  color: var(--cloud-text);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Serverless Advantages Section */
.cloud-native-insight-theme .serverless-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.cloud-native-insight-theme .advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-innovation);
}

.cloud-native-insight-theme .advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .advantage-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cloud-native-insight-theme .advantage-content h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.3;
}

.cloud-native-insight-theme .advantage-content p {
  color: var(--cloud-text);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Cloud Benefits Section */
.cloud-native-insight-theme .cloud-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .benefit-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cloud-native-insight-theme .benefit-content h4 {
  color: var(--cloud-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cloud-native-insight-theme .benefit-content p {
  color: var(--cloud-text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}

/* Decision Matrix Section */
.cloud-native-insight-theme .decision-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .decision-factor {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.cloud-native-insight-theme .decision-factor::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cloud-primary);
}

.cloud-native-insight-theme .decision-factor:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}

.cloud-native-insight-theme .decision-factor h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-left: 1.5rem;
}

.cloud-native-insight-theme .decision-factor p {
  color: var(--cloud-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cloud-native-insight-theme .decision-factor p:last-child {
  margin-bottom: 0;
}

.cloud-native-insight-theme .decision-factor strong {
  color: var(--cloud-secondary);
  font-weight: 700;
}

/* Success Metrics Section */
.cloud-native-insight-theme .success-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cloud-native-insight-theme .metric-group {
  background: var(--gradient-cloud-light);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--cloud-primary);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .metric-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  border-left-color: var(--cloud-secondary);
}

.cloud-native-insight-theme .metric-group h4 {
  color: var(--cloud-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.cloud-native-insight-theme .metric-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cloud-native-insight-theme .metric-group li {
  background: white;
  border-left: 3px solid var(--cloud-accent);
  margin-bottom: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.cloud-native-insight-theme .metric-group li:hover {
  border-left-color: var(--cloud-secondary);
  transform: translateX(4px);
}

.cloud-native-insight-theme .metric-group li strong {
  color: var(--cloud-primary);
  font-weight: 700;
}

/* Security Considerations Section */
.cloud-native-insight-theme .security-section {
  background: var(--gradient-cloud-light);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  margin: 3rem 0;
  position: relative;
}

.cloud-native-insight-theme .security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-innovation);
}

.cloud-native-insight-theme .security-section h3 {
  color: var(--cloud-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
}

.cloud-native-insight-theme .security-section h3::before {
  content: '🛡️';
}

.cloud-native-insight-theme .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.cloud-native-insight-theme .security-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--cloud-accent);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cloud-native-insight-theme .security-item strong {
  color: var(--cloud-accent);
  font-weight: 700;
}

/* Enhanced CTA with Cloud Theme */
.cloud-native-insight-theme .insight-cta {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
}

.cloud-native-insight-theme .insight-cta::before {
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

/* Professional Footer with Cloud Theme */
.cloud-native-insight-theme .footer {
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
  position: relative;
}

.cloud-native-insight-theme .footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cloud-native-insight-theme .footer-title::before {
  content: '☁️';
}

.cloud-native-insight-theme .footer-bottom::after {
  content: 'Scaling Heights with Cloud Innovation ⚡';
  background: linear-gradient(135deg, #38BDF8, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Key Takeaways Section */
.cloud-native-insight-theme .takeaways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.cloud-native-insight-theme .takeaway-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--cloud-primary);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.7;
  font-size: 1rem;
}

.cloud-native-insight-theme .takeaway-item::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 3px;
  height: calc(100% - 1rem);
  background: var(--gradient-sky);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cloud-native-insight-theme .takeaway-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
  border-left-color: var(--cloud-secondary);
}

.cloud-native-insight-theme .takeaway-item:hover::before {
  opacity: 1;
}

.cloud-native-insight-theme .takeaway-item strong {
  color: var(--cloud-primary);
  font-weight: 700;
}

/* Enhanced Spacing and Typography */
.cloud-native-insight-theme .content-wrapper p {
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.cloud-native-insight-theme .stats-highlight {
  padding: 2.5rem 2rem;
  gap: 2rem;
}

.cloud-native-insight-theme .stat-item {
  padding: 2rem 1.5rem;
}

.cloud-native-insight-theme .stat-label {
  font-size: 0.925rem;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cloud-native-insight-theme .strategy-comparison,
  .cloud-native-insight-theme .kubernetes-benefits,
  .cloud-native-insight-theme .serverless-advantages,
  .cloud-native-insight-theme .decision-matrix,
  .cloud-native-insight-theme .success-metrics,
  .cloud-native-insight-theme .migration-challenges,
  .cloud-native-insight-theme .strategy-framework,
  .cloud-native-insight-theme .stack-comparison,
  .cloud-native-insight-theme .cloud-benefits,
  .cloud-native-insight-theme .security-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cloud-native-insight-theme .cost-analysis {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
  
  .cloud-native-insight-theme .timeline-container {
    padding-left: 2rem;
  }
  
  .cloud-native-insight-theme .timeline-item {
    padding: 1.5rem;
  }
  
  .cloud-native-insight-theme .technology-stack {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .cloud-native-insight-theme .cost-analysis {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .cloud-native-insight-theme .timeline-container::before {
    left: 0.5rem;
  }
  
  .cloud-native-insight-theme .timeline-item::before {
    left: -1.5rem;
  }
  
  .cloud-native-insight-theme .security-section {
    padding: 1.5rem;
  }
}