/* =============================================
   PHONG CÁCH XÃ HỘI - Xanh dương, hiện đại
   ============================================= */

/* Hero Society */
.hero-society {
  background: linear-gradient(135deg, #0d2b4a 0%, #1a4a7a 40%, #2a6a9a 100%);
  border-left: 6px solid #42a5f5;
}

/* Section Society */
.soc-section {
  padding: 0.5rem 0;
}

.soc-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0d2b4a;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid #42a5f5;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Grid Society */
.soc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
}

/* Card Society */
.soc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid #e3ecf5;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 43, 74, 0.04);
}

.soc-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 40px rgba(13, 43, 74, 0.10);
  border-color: #42a5f5;
}

.soc-card-header {
  background: linear-gradient(135deg, #e8f0f8, #d4e4f0);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 2px solid #42a5f5;
}

.soc-card-icon {
  width: 40px;
  height: 40px;
  background: #0d2b4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.soc-card:hover .soc-card-icon {
  background: #42a5f5;
  transform: rotate(360deg);
}

.soc-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d2b4a;
  margin: 0;
}

.soc-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.soc-card-text {
  font-size: 0.92rem;
  color: #3a5a7a;
  line-height: 1.7;
  margin: 0;
}

.soc-badge {
  display: inline-block;
  margin-top: 0.6rem;
  background: linear-gradient(135deg, #0d2b4a, #1a4a7a);
  color: white;
  padding: 0.2rem 1.2rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.soc-highlight {
  background: #e8f0f8;
  border-radius: 12px;
  padding: 1.2rem 1.8rem;
  margin-top: 1.5rem;
  border-left: 5px solid #42a5f5;
  font-size: 0.95rem;
  color: #0d2b4a;
}

.soc-empty {
  color: #5a7a9a;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* Responsive Society */
@media (max-width: 768px) {
  .soc-grid {
    grid-template-columns: 1fr;
  }
  .soc-section-title {
    font-size: 1.3rem;
  }
  .soc-card-header {
    flex-direction: column;
    text-align: center;
  }
}