/* Social Hub Styles */

/* Featured Story Card */
.featured-story-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.featured-story-image {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.featured-story-content {
  padding: 3rem;
}

/* Story Cards */
.story-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.story-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.story-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(4,158,187,0.95);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-card-body {
  padding: 1.5rem;
}

.story-card-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.story-card-date {
  color: var(--default-color);
  opacity: 0.6;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.story-card-excerpt {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-card-link {
  color: var(--win-accent-1);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.story-card-link:hover {
  color: var(--win-accent-2);
}

/* Sidebar */
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.sidebar-heading {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.badge-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(4,158,187,0.08);
  color: var(--win-accent-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.badge-pill:hover,
.badge-pill.active {
  background: var(--win-accent-1);
  color: #fff;
}

.newsletter-box {
  background: linear-gradient(135deg, rgba(4,158,187,0.08), rgba(4,158,187,0.02));
  padding: 1.5rem;
  border-radius: 12px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(4,158,187,0.05);
  color: var(--win-accent-2);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-link-box i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-link-box:hover {
  background: var(--win-accent-1);
  color: #fff;
  transform: translateY(-2px);
}

/* #helloHalo Section */
.hello-halo-section {
  background: linear-gradient(135deg, rgba(4,158,187,0.05), rgba(4,158,187,0.02));
  padding: 4rem 2rem;
  border-radius: 20px;
}

.testimonial-card-social {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card-social:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--win-accent-1), var(--win-accent-3));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-quote {
  color: var(--default-color);
  font-style: italic;
  line-height: 1.6;
  opacity: 0.9;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

/* Responsive */
@media (max-width: 991px) {
  .featured-story-image {
    height: 300px;
  }
  
  .featured-story-content {
    padding: 2rem;
  }
  
  .story-card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hello-halo-section {
    padding: 3rem 1.5rem;
  }
  
  .sidebar-card {
    margin-top: 2rem;
  }
}
