/* style/blog-mobile-experience-guide.css */

/* Base styles for the page */
.page-blog-mobile-experience-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Matching body background */
}

/* Sections */
.page-blog-mobile-experience-guide__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-mobile-experience-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Color contrast classes */
.page-blog-mobile-experience-guide__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-blog-mobile-experience-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-blog-mobile-experience-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  color: #ffffff;
}

.page-blog-mobile-experience-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-mobile-experience-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-mobile-experience-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 15px;
}

.page-blog-mobile-experience-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-mobile-experience-guide__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Section Titles */
.page-blog-mobile-experience-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 40px;
}

/* Text Blocks */
.page-blog-mobile-experience-guide__text-block {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Buttons */
.page-blog-mobile-experience-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-mobile-experience-guide__btn-primary,
.page-blog-mobile-experience-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-mobile-experience-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-mobile-experience-guide__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-mobile-experience-guide__btn-secondary {
  background-color: #EA7C07; /* Login color for secondary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-mobile-experience-guide__btn-secondary:hover {
  background-color: #bf6606;
  border-color: #bf6606;
}

/* Features Grid */
.page-blog-mobile-experience-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mobile-experience-guide__feature-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-mobile-experience-guide__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Adjust based on image content */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-mobile-experience-guide__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-mobile-experience-guide__card-text {
  font-size: 1rem;
  color: #555555;
}

/* Process Steps */
.page-blog-mobile-experience-guide__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mobile-experience-guide__step-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-mobile-experience-guide__step-card .page-blog-mobile-experience-guide__btn-primary {
  margin-top: 20px;
}

/* Feature List */
.page-blog-mobile-experience-guide__feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-mobile-experience-guide__list-item {
  background-color: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-blog-mobile-experience-guide__list-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-mobile-experience-guide__list-text {
  font-size: 1rem;
  color: #555555;
}

/* Download Section */
.page-blog-mobile-experience-guide__download-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-blog-mobile-experience-guide__download-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-mobile-experience-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-blog-mobile-experience-guide__faq-item {
  background-color: #ffffff;
  color: #333333;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.page-blog-mobile-experience-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333333;
}

.page-blog-mobile-experience-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mobile-experience-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-mobile-experience-guide__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-blog-mobile-experience-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-mobile-experience-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

/* Links in content */
.page-blog-mobile-experience-guide__text-block a,
.page-blog-mobile-experience-guide__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-blog-mobile-experience-guide__text-block a:hover,
.page-blog-mobile-experience-guide__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-mobile-experience-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mobile-experience-guide__section {
    padding: 40px 10px;
  }

  .page-blog-mobile-experience-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-mobile-experience-guide__hero-content {
    padding: 0 10px;
  }

  .page-blog-mobile-experience-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-mobile-experience-guide__description {
    font-size: 0.95rem;
  }

  .page-blog-mobile-experience-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-blog-mobile-experience-guide__text-block {
    font-size: 1rem;
  }

  /* Images responsive */
  .page-blog-mobile-experience-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers responsive */
  .page-blog-mobile-experience-guide__container,
  .page-blog-mobile-experience-guide__section,
  .page-blog-mobile-experience-guide__hero-section,
  .page-blog-mobile-experience-guide__features-grid,
  .page-blog-mobile-experience-guide__process-steps,
  .page-blog-mobile-experience-guide__feature-list,
  .page-blog-mobile-experience-guide__download-options,
  .page-blog-mobile-experience-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons responsive */
  .page-blog-mobile-experience-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-blog-mobile-experience-guide__btn-primary,
  .page-blog-mobile-experience-guide__btn-secondary,
  .page-blog-mobile-experience-guide a[class*="button"],
  .page-blog-mobile-experience-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-mobile-experience-guide__download-options {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-mobile-experience-guide__feature-card,
  .page-blog-mobile-experience-guide__step-card,
  .page-blog-mobile-experience-guide__list-item,
  .page-blog-mobile-experience-guide__faq-item {
    padding: 20px;
  }

  .page-blog-mobile-experience-guide__card-title,
  .page-blog-mobile-experience-guide__list-title {
    font-size: 1.25rem;
  }

  .page-blog-mobile-experience-guide__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-mobile-experience-guide__faq-answer {
    padding: 15px 20px;
  }
}