/* Meeting Comparison Article Styles */
.comparison-points {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.point-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #00aaff;
}

.point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.point-icon {
  font-size: 1.8rem;
  color: #004e64;
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.benefit-header {
  padding: 1.2rem;
  background: #f7fafd;
  border-bottom: 1px solid #e1e8ed;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.benefit-header i {
  font-size: 1.5rem;
  color: #00aaff;
}

.benefit-body {
  padding: 1.2rem;
}

.case-study {
  background: #f0f7fc;
  border-left: 4px solid #004e64;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.expert-tip {
  background: #fff8e6;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.tools-ranking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 992px) {
  .tools-ranking {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

.tool-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tool-header {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: #f7fafd;
  border-bottom: 1px solid #e1e8ed;
  gap: 1rem;
}

.tool-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.tool-body {
  padding: 1.2rem;
}

.tool-features ul {
  padding-left: 0;
  list-style: none;
}

.tool-features li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tool-features i {
  color: #00aaff;
  margin-top: 0.2rem;
}

.tool-verdict {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e1e8ed;
  font-style: italic;
}

.ai-impact {
  margin: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #004e64;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.hybrid-strategy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .hybrid-strategy {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.strategy-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.strategy-phase {
  padding: 1rem;
  background: #004e64;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strategy-phase span {
  background: #00aaff;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.strategy-details {
  padding: 1.2rem;
}

.strategy-details p {
  margin-bottom: 0.8rem;
}

.best-practices {
  margin: 3rem 0;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.practice-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.practice-card i {
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 1rem;
}

.practice-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.comparison-table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comparison-table th, 
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e1e8ed;
}

.comparison-table th {
  background: #f7fafd;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table i.fa-check {
  color: #28a745;
}

.comparison-table i.fa-times {
  color: #dc3545;
}

.comparison-table i.fa-exclamation-triangle {
  color: #ffc107;
}

.comparison-table i.fa-clock,
.comparison-table i.fa-money-bill-wave {
  color: #6c757d;
}

.recommendations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .recommendations {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recommendation-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.rec-icon {
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 1rem;
}

.recommendation-card ul {
  padding-left: 1.2rem;
}

.recommendation-card li {
  margin-bottom: 0.5rem;
}

.search-prompts {
  margin: 2rem 0;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.prompt-card {
  background: #f7fafd;
  border: 1px solid #e1e8ed;
  border-radius: 6px;
  padding: 0.8rem;
  font-size: 0.9rem;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .comparison-points,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}