/* style/blog-news-center-user-story-sharing.css */
.page-blog-news-center-user-story-sharing {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-blog-news-center-user-story-sharing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-news-center-user-story-sharing__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-blog-news-center-user-story-sharing__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-news-center-user-story-sharing__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(220, 20, 60, 0.6));
  z-index: 2;
}

.page-blog-news-center-user-story-sharing__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
}

.page-blog-news-center-user-story-sharing__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-news-center-user-story-sharing__brand-link {
  color: inherit;
  text-decoration: none;
}

.page-blog-news-center-user-story-sharing__brand-link:hover {
  text-decoration: underline;
}

.page-blog-news-center-user-story-sharing__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-blog-news-center-user-story-sharing__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-blog-news-center-user-story-sharing__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-blog-news-center-user-story-sharing__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-news-center-user-story-sharing__btn--secondary {
  background-color: #DC143C;
  color: #FFFFFF;
  margin-left: 15px;
}

.page-blog-news-center-user-story-sharing__btn--secondary:hover {
  background-color: #c71236;
  transform: translateY(-2px);
}

.page-blog-news-center-user-story-sharing__stories-grid {
  padding: 60px 0;
  background-color: #2A2A3E;
}

.page-blog-news-center-user-story-sharing__section-heading {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-news-center-user-story-sharing__highlight-text {
  color: #DC143C;
}

.page-blog-news-center-user-story-sharing__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0B0B0;
}

.page-blog-news-center-user-story-sharing__story-card {
  display: flex;
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  align-items: center;
}

.page-blog-news-center-user-story-sharing__story-card--reverse {
  flex-direction: row-reverse;
}

.page-blog-news-center-user-story-sharing__story-image {
  width: 50%;
  height: 400px;
  object-fit: cover;
}

.page-blog-news-center-user-story-sharing__story-content {
  width: 50%;
  padding: 40px;
}

.page-blog-news-center-user-story-sharing__story-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-blog-news-center-user-story-sharing__story-meta {
  font-size: 0.9em;
  color: #B0B0B0;
  margin-bottom: 20px;
  font-style: italic;
}

.page-blog-news-center-user-story-sharing__story-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-blog-news-center-user-story-sharing__cta {
  background-color: #DC143C;
  padding: 80px 0;
  text-align: center;
}

.page-blog-news-center-user-story-sharing__cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-blog-news-center-user-story-sharing__cta-description {
  font-size: 1.2em;
  color: #FFD700;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-blog-news-center-user-story-sharing__cta-buttons .page-blog-news-center-user-story-sharing__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-news-center-user-story-sharing__hero {
    height: 400px;
  }

  .page-blog-news-center-user-story-sharing__title {
    font-size: 2.8em;
  }

  .page-blog-news-center-user-story-sharing__subtitle {
    font-size: 1.2em;
  }

  .page-blog-news-center-user-story-sharing__story-card {
    flex-direction: column;
  }

  .page-blog-news-center-user-story-sharing__story-card--reverse {
    flex-direction: column;
  }

  .page-blog-news-center-user-story-sharing__story-image,
  .page-blog-news-center-user-story-sharing__story-content {
    width: 100%;
  }

  .page-blog-news-center-user-story-sharing__story-image {
    height: 300px;
  }

  .page-blog-news-center-user-story-sharing__story-content {
    padding: 30px;
  }

  .page-blog-news-center-user-story-sharing__section-heading {
    font-size: 2.2em;
  }

  .page-blog-news-center-user-story-sharing__story-title {
    font-size: 1.5em;
  }

  .page-blog-news-center-user-story-sharing__cta-title {
    font-size: 2em;
  }

  .page-blog-news-center-user-story-sharing__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-news-center-user-story-sharing__hero {
    height: 350px;
  }

  .page-blog-news-center-user-story-sharing__title {
    font-size: 2.2em;
  }

  .page-blog-news-center-user-story-sharing__subtitle {
    font-size: 1em;
  }

  .page-blog-news-center-user-story-sharing__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-blog-news-center-user-story-sharing__section-heading {
    font-size: 1.8em;
  }

  .page-blog-news-center-user-story-sharing__section-description {
    font-size: 1em;
  }

  .page-blog-news-center-user-story-sharing__story-content {
    padding: 25px;
  }

  .page-blog-news-center-user-story-sharing__story-title {
    font-size: 1.3em;
  }

  .page-blog-news-center-user-story-sharing__story-text {
    font-size: 0.9em;
  }

  .page-blog-news-center-user-story-sharing__cta-title {
    font-size: 1.8em;
  }

  .page-blog-news-center-user-story-sharing__cta-description {
    font-size: 1em;
  }

  .page-blog-news-center-user-story-sharing__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-blog-news-center-user-story-sharing__cta-buttons .page-blog-news-center-user-story-sharing__btn {
    width: 80%;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-blog-news-center-user-story-sharing__hero {
    height: 300px;
  }

  .page-blog-news-center-user-story-sharing__title {
    font-size: 1.8em;
  }

  .page-blog-news-center-user-story-sharing__subtitle {
    font-size: 0.9em;
  }

  .page-blog-news-center-user-story-sharing__story-image {
    height: 200px;
  }

  .page-blog-news-center-user-story-sharing__story-content {
    padding: 20px;
  }

  .page-blog-news-center-user-story-sharing__story-title {
    font-size: 1.1em;
  }

  .page-blog-news-center-user-story-sharing__story-text {
    font-size: 0.85em;
  }
}