/* Blog Content Fixes - Correcciones específicas para el contenido del blog */

/* Checklist Cards */
.checklist-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.checklist-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.checklist-card h5 {
  color: #495057;
  margin-bottom: 15px;
  font-weight: 600;
}

.checklist-card ul {
  margin: 0;
  padding: 0;
}

.checklist-card li {
  padding: 5px 0;
  border-bottom: 1px solid #e9ecef;
}

.checklist-card li:last-child {
  border-bottom: none;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #007bff;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 17px;
  top: 5px;
  width: 30px;
  height: 30px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.timeline-content h5 {
  color: #495057;
  margin-bottom: 8px;
}

/* Accordion Improvements */
.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: #e7f3ff;
  color: #0d6efd;
}

/* Cards Grid */
.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Highlight Boxes */
.highlight-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #007bff;
  border-radius: 8px;
}

.highlight-box h4 {
  color: #495057;
  margin-bottom: 15px;
}

/* Pro Tips */
.pro-tip {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
}

.pro-tip h4 {
  color: #856404;
  margin-bottom: 10px;
}

/* Safety Protocol */
.safety-card {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border: 1px solid #b8daff;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}

.safety-card h5 {
  color: #0c5460;
  margin-bottom: 15px;
}

/* Daily Topics Badges */
.daily-topics .badge {
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
}

/* Tech Cards */
.tech-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-card:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tech-card h5 {
  color: #495057;
  margin-bottom: 15px;
}

.implementation-level {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #dee2e6;
}

/* Leadership Principles */
.principle-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.principle-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Sustainability Grid */
.sustainability-grid .card {
  height: 100%;
}

/* Experience Tips */
.tip-category {
  margin-bottom: 30px;
}

.tip-category h4 {
  color: #495057;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

.tip-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #007bff;
  height: 100%;
}

.tip-item h6 {
  color: #495057;
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.cta-buttons .btn {
  margin: 5px;
}

/* Custom Lists */
.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.custom-list li:last-child {
  border-bottom: none;
}

.custom-list i {
  margin-right: 10px;
}

/* EPP Grid */
.epp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.epp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  min-width: 80px;
  transition: all 0.3s ease;
}

.epp-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.epp-item i {
  font-size: 24px;
  margin-bottom: 8px;
  color: #007bff;
}

.epp-item span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    left: 7px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  
  .cta-buttons {
    text-align: center !important;
    margin-top: 20px;
  }
  
  .epp-grid {
    justify-content: center;
  }
  
  .epp-item {
    min-width: 70px;
  }
}
