/* style/user-community-experience-sharing.css */
.page-user-community-experience-sharing {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa; /* Light gray background */
}

.page-user-community-experience-sharing a {
  text-decoration: none;
  color: #007bff; /* Primary color for links */
}

.page-user-community-experience-sharing a:hover {
  text-decoration: underline;
}

.page-user-community-experience-sharing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-user-community-experience-sharing__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-user-community-experience-sharing__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-user-community-experience-sharing__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #fff; /* White text for contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-user-community-experience-sharing__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e9ecef; /* Lighter white for subtitle */
}

.page-user-community-experience-sharing__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}

.page-user-community-experience-sharing__hero-image {
  width: 100%;
  max-width: 600px; /* Adjust size for visual balance */
  height: auto;
  display: block;
}

/* Buttons */
.page-user-community-experience-sharing__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1em;
}

.page-user-community-experience-sharing__btn--primary {
  background-color: #ffc107; /* Secondary color for primary action */
  color: #212529; /* Dark text for contrast on yellow */
  border: none;
}

.page-user-community-experience-sharing__btn--primary:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-user-community-experience-sharing__btn--secondary {
  background-color: transparent;
  color: #fff; /* White text on dark background */
  border: 2px solid #fff;
  margin-top: 20px;
}

.page-user-community-experience-sharing__btn--secondary:hover {
  background-color: #fff;
  color: #007bff; /* Primary color on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-user-community-experience-sharing__btn--download {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-user-community-experience-sharing__btn--download:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-user-community-experience-sharing__btn--download i {
  margin-right: 8px;
  font-size: 1.1em;
}

/* Sections */
.page-user-community-experience-sharing__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-user-community-experience-sharing__section:last-of-type {
  border-bottom: none;
}

.page-user-community-experience-sharing__section-title {
  font-size: 2.2em;
  color: #007bff; /* Primary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-user-community-experience-sharing__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Secondary color for underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Article styles */
.page-user-community-experience-sharing__article {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-user-community-experience-sharing__article:nth-child(even) {
  flex-direction: column-reverse; /* Alternate image/text flow for visual interest */
}

.page-user-community-experience-sharing__article-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary color for article titles */
  margin-bottom: 15px;
}

.page-user-community-experience-sharing__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-user-community-experience-sharing__article p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #495057;
}

.page-user-community-experience-sharing__article ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  width: 100%;
  max-width: 700px;
  margin: 15px auto;
}

.page-user-community-experience-sharing__article ul li {
  margin-bottom: 8px;
  color: #495057;
}

/* Promotions */
.page-user-community-experience-sharing__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-user-community-experience-sharing__promo-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-user-community-experience-sharing__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-user-community-experience-sharing__promo-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-user-community-experience-sharing__promo-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-user-community-experience-sharing__promo-item p {
  color: #6c757d;
  font-size: 0.95em;
}

/* App Download */
.page-user-community-experience-sharing__app-download {
  text-align: center;
  background-color: #e9f5ff; /* Lighter blue background */
}

.page-user-community-experience-sharing__download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-user-community-experience-sharing__app-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ */
.page-user-community-experience-sharing__faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}

.page-user-community-experience-sharing__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-user-community-experience-sharing__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-user-community-experience-sharing__faq-question.active::after {
  transform: rotate(45deg);
}

.page-user-community-experience-sharing__faq-answer {
  font-size: 1.05em;
  color: #495057;
  display: none; /* Hidden by default, shown by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-user-community-experience-sharing__faq-answer.active {
  display: block;
}

/* Community Call */
.page-user-community-experience-sharing__community-call {
  text-align: center;
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-user-community-experience-sharing__main-title {
    font-size: 2em;
  }

  .page-user-community-experience-sharing__subtitle {
    font-size: 1.1em;
  }

  .page-user-community-experience-sharing__section-title {
    font-size: 1.8em;
  }

  .page-user-community-experience-sharing__article-title {
    font-size: 1.5em;
  }

  .page-user-community-experience-sharing__article {
    padding: 20px;
  }

  .page-user-community-experience-sharing__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-user-community-experience-sharing__hero-image-wrapper {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
    opacity: 1;
  }

  .page-user-community-experience-sharing__hero-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .page-user-community-experience-sharing__main-title {
    font-size: 1.6em;
  }

  .page-user-community-experience-sharing__subtitle {
    font-size: 1em;
  }

  .page-user-community-experience-sharing__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-user-community-experience-sharing__section {
    padding: 40px 0;
  }

  .page-user-community-experience-sharing__hero-image {
    max-width: 300px;
  }
}