/* style/blog-how-helpslotwin-strategies.css */

/* General page styling */
.page-blog-how-helpslotwin-strategies {
  background-color: #0A0A0A; /* Page background as per custom colors */
  color: #FFF6D6; /* Main text color as per custom colors */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal scroll on desktop */
}

.page-blog-how-helpslotwin-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-helpslotwin-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-how-helpslotwin-strategies__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-how-helpslotwin-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, not color change */
  display: block;
}

.page-blog-how-helpslotwin-strategies__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 17, 17, 0.7); /* Card BG with transparency for content readability */
  border-radius: 10px;
  margin-top: 100px; /* Offset from top to show image */
}

.page-blog-how-helpslotwin-strategies__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* H1 font size with clamp */
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-how-helpslotwin-strategies__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* Section Styling */
.page-blog-how-helpslotwin-strategies__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Ensure sections have background */
}

.page-blog-how-helpslotwin-strategies__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-helpslotwin-strategies__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: #FFF6D6;
  margin-bottom: 40px;
  text-align: center;
}

/* Card Grid */
.page-blog-how-helpslotwin-strategies__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-helpslotwin-strategies__card {
  background-color: #111111; /* Card BG as per custom colors */
  border: 1px solid #3A2A12; /* Border as per custom colors */
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-helpslotwin-strategies__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-helpslotwin-strategies__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensures images behave correctly with max-width */
}

.page-blog-how-helpslotwin-strategies__card-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary brand color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-helpslotwin-strategies__card-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1; /* Allows text to take available space */
}

/* Buttons */
.page-blog-how-helpslotwin-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width for responsiveness */
  box-sizing: border-box;
}

.page-blog-how-helpslotwin-strategies__btn-primary,
.page-blog-how-helpslotwin-strategies__btn-secondary,
.page-blog-how-helpslotwin-strategies__card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-how-helpslotwin-strategies__btn-primary,
.page-blog-how-helpslotwin-strategies__card-button {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  border: none;
}