/* style/resources-f1688-platform-guide.css */

:root {
  --primary-color: #0A246A;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-f1688-platform-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  line-height: 1.6;
}

/* Hero Section */
.page-resources-f1688-platform-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, var(--primary-color), #0A246A); /* Dark background for hero */
  color: var(--text-light);
  overflow: hidden; /* Prevent content overflow */
}

.page-resources-f1688-platform-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-f1688-platform-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%; /* Ensure image container doesn't overflow */
  box-sizing: border-box;
}

.page-resources-f1688-platform-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}