/* style/resources-full88-platform-features.css */
.page-resources-full88-platform-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-full88-platform-features__container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.page-resources-full88-platform-features__back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-full88-platform-features__back-link:hover {
  color: #FFD700;
}

.page-resources-full88-platform-features__back-link--bottom {
  margin-top: 30px;
  text-align: center;
  display: block;
}

.page-resources-full88-platform-features__article {
  padding: 20px 0;
}

.page-resources-full88-platform-features__title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-resources-full88-platform-features__meta {
  text-align: center;
  color: #666;
  font-size: 0.9em;
  margin-bottom: 30px;
}

.page-resources-full88-platform-features__section {
  margin-bottom: 30px;
}

.page-resources-full88-platform-features__intro-section p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-resources-full88-platform-features__subtitle {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-full88-platform-features__sub-subtitle {
  font-size: 1.4em;
  color: #003366;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-resources-full88-platform-features p {
  margin-bottom: 1em;
  font-size: 1em;
  color: #333;
}

.page-resources-full88-platform-features ul,
.page-resources-full88-platform-features ol {
  margin-bottom: 1em;
  padding-left: 25px;
}

.page-resources-full88-platform-features li {
  margin-bottom: 0.5em;
  color: #333;
}

.page-resources-full88-platform-features__keyword {
  color: #DC143C;
  font-weight: bold;
}

.page-resources-full88-platform-features__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-resources-full88-platform-features__cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 15px 30px;
  background-color: #DC143C; /* Accent color for CTA */
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.page-resources-full88-platform-features__cta-button:hover {
  background-color: #b00f2f;
  transform: translateY(-2px);
}

.page-resources-full88-platform-features__cta-button--small {
  font-size: 1em;
  padding: 10px 20px;
  margin: 20px auto;
}

.page-resources-full88-platform-features__cta-button--secondary {
  background-color: #FFD700;
  color: #003366;
}

.page-resources-full88-platform-features__cta-button--secondary:hover {
  background-color: #e6c200;
  color: #001a33;
}

.page-resources-full88-platform-features__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-full88-platform-features__blockquote {
  background-color: #e0f2f7; /* Lighter shade of primary color */
  border-left: 5px solid #003366;
  margin: 20px 0;
  padding: 15px 20px;
  font-style: italic;
  color: #003366;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-full88-platform-features__container {
    margin: 10px auto;
    padding: 15px;
  }

  .page-resources-full88-platform-features__title {
    font-size: 2em;
  }

  .page-resources-full88-platform-features__subtitle {
    font-size: 1.5em;
  }

  .page-resources-full88-platform-features__sub-subtitle {
    font-size: 1.2em;
  }

  .page-resources-full88-platform-features__cta-button {
    width: 90%;
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-resources-full88-platform-features__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-full88-platform-features__title {
    font-size: 1.8em;
  }

  .page-resources-full88-platform-features__subtitle {
    font-size: 1.3em;
  }

  .page-resources-full88-platform-features__sub-subtitle {
    font-size: 1.1em;
  }

  .page-resources-full88-platform-features p,
  .page-resources-full88-platform-features li {
    font-size: 0.95em;
  }

  .page-resources-full88-platform-features__cta-button {
    width: 100%;
    padding: 10px 20px;
  }
}