/* ================================
   GriefShare Page Styling
   ================================ */
.grief-share {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background: linear-gradient(180deg, #fdfdfd, #f7f7f7);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.grief-header {
  text-align: center;
  margin-bottom: 2rem;
}

.grief-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-green);
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.grief-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-top: 0.5rem;
}

.grief-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-body);
  margin-top: 0.75rem;
}

.grief-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grief-section {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grief-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.section-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 0.5rem;
}

.section-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.grief-contacts {
  margin-top: 3rem;
  text-align: center;
}

.contacts-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-body);
}

.contact-name {
  font-weight: 700;
  color: var(--primary-green-dark);
}

.contact-email a {
  color: var(--primary-green);
  text-decoration: none;
}
.contact-email a:hover {
  text-decoration: underline;
}
