/* Business Software Article Styles */
/* Main Content Styles */
.article-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  padding: 40px 0;
  margin-bottom: 30px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-category {
  display: inline-block;
  background: #004080;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  color: #666;
  font-size: 14px;
}

.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #e9f0f8;
  color: #004080;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

/* Quick Navigation */
.quick-nav {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
}

.quick-nav h3 {
  margin-top: 0;
  color: #004080;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  border: 1px solid #e2e8f0;
}

.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: #004080;
}

.nav-card i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #004080;
}

.nav-card span {
  font-weight: 500;
}

/* Content Sections */
.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  color: #004080;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.feature-box {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  align-items: center;
}

.feature-icon {
  font-size: 24px;
  color: #004080;
  min-width: 40px;
}

/* Software Types Grid */
.software-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.type-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.type-icon {
  font-size: 32px;
  color: #004080;
  margin-bottom: 15px;
}

.type-card h3 {
  margin-top: 0;
  color: #004080;
}

.examples {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.examples h4 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.examples ul {
  margin: 0;
  padding-left: 20px;
}

.examples li {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.benefit-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.benefit-icon {
  font-size: 32px;
  color: #004080;
  margin-bottom: 15px;
}

.benefit-card h3 {
  margin-top: 0;
  color: #004080;
}

/* ERP Comparison */
.erp-comparison {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.comparison-card {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.comparison-card.highlight {
  border: 2px solid #004080;
  position: relative;
}

.comparison-card.highlight::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 20px;
  background: #004080;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.comparison-card h3 {
  margin-top: 0;
  color: #004080;
  text-align: center;
}

.comparison-card ul {
  padding-left: 20px;
}

/* AI Impact Section */
.ai-impact {
  margin: 30px 0;
}

.ai-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}

.ai-icon {
  font-size: 24px;
  color: #004080;
  min-width: 40px;
  padding-top: 5px;
}

.ai-content h4 {
  margin-top: 0;
  color: #004080;
}

/* LLM Integration */
.llm-integration {
  margin: 40px 0;
}

.llm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.llm-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.llm-card h4 {
  margin-top: 0;
  color: #004080;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.llm-card ul {
  padding-left: 20px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.process-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #004080;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-card h3 {
  margin-top: 10px;
  color: #004080;
  font-size: 18px;
}

.process-card ul {
  padding-left: 20px;
  font-size: 14px;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.advantage-card {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.advantage-card i {
  font-size: 32px;
  color: #004080;
  margin-bottom: 15px;
}

.advantage-card h4 {
  margin-top: 0;
  color: #004080;
}

/* Industry Tabs */
.industry-tabs {
  margin: 30px 0;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-button {
  padding: 8px 20px;
  background: #e9f0f8;
  border: none;
  border-radius: 20px;
  color: #004080;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: #004080;
  color: white;
}

.tab-content {
  display: none;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.tab-content.active {
  display: block;
}

/* Expert Tips */
.expert-tip {
  background: #f0f7ff;
  border-left: 4px solid #004080;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.expert-tip h3 {
  margin-top: 0;
  color: #004080;
}

/* Case Study */
.case-study {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid #004080;
}

.case-study h3 {
  margin-top: 0;
  color: #004080;
}

/* CTA Box */
.cta-box {
  background: #004080;
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  margin-top: 0;
  color: white;
}

.cta-box .btn-primary {
  background: white;
  color: #004080;
  border: none;
}

.cta-box .btn-primary:hover {
  background: #e6f0ff;
}

/* Search Prompts */
.search-prompts {
  margin: 30px 0;
}

.search-prompts h4 {
  margin-bottom: 15px;
  color: #666;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.prompt-card {
  background: #f5f7fa;
  padding: 15px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  border: 1px dashed #ccc;
}

/* Article Footer */
.article-footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tags-label {
  font-weight: 500;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .erp-comparison {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .software-types, .benefits-grid, .llm-grid, .process-steps, .advantages-grid {
    grid-template-columns: 1fr;
  }
}

