/* style/blog-789p-latest-promotions-2024.css */

/* Base styles for the page content */
.page-blog-789p-latest-promotions-2024 {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space before footer */
}

.page-blog-789p-latest-promotions-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-789p-latest-promotions-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden; /* Ensure no overflow from image */
}

.page-blog-789p-latest-promotions-2024__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-789p-latest-promotions-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size */
}

.page-blog-789p-latest-promotions-2024__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-789p-latest-promotions-2024__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-789p-latest-promotions-2024__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 30px;
}

.page-blog-789p-latest-promotions-2024__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-blog-789p-latest-promotions-2024__btn-primary,
.page-blog-789p-latest-promotions-2024__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-789p-latest-promotions-2024__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}

.page-blog-789p-latest-promotions-2024__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-789p-latest-promotions-2024__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Bright green text */
  border: 2px solid #2AD16F; /* Custom Border */
}

.page-blog-789p-latest-promotions-2024__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F; /* Dark background color for text */
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

/* Content Sections */
.page-blog-789p-latest-promotions-2024__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Custom Divider */
}

.page-blog-789p-latest-promotions-2024__dark-bg {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
}

.page-blog-789p-latest-promotions-2024__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Custom Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-789p-latest-promotions-2024__sub-title {
  font-size: 1.8rem;
  color: #2AD16F; /* Brighter green for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-789p-latest-promotions-2024__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
}

.page-blog-789p-latest-promotions-2024__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-blog-789p-latest-promotions-2024__numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-blog-789p-latest-promotions-2024__list-item {
  font-size: 1.1rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 10px;
}

.page-blog-789p-latest-promotions-2024__list-item strong {
  color: #F2FFF6; /* Custom Text Main */
}

/* Video Section */
.page-blog-789p-latest-promotions-2024__video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Custom Deep Green for contrast */
  border-bottom: 1px solid #1E3A2A; /* Custom Divider */
  padding-top: 10px; /* Small top padding */
}

.page-blog-789p-latest-promotions-2024__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 10px;
  width: 100%; /* Desktop width */
  max-width: 1000px; /* Max width for video */
  box-sizing: border-box;
}

.page-blog-789p-latest-promotions-2024__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer; /* Indicate clickable */
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-blog-789p-latest-promotions-2024__video-cta {
  margin-top: 30px;
}

/* Promotion Grid */
.page-blog-789p-latest-promotions-2024__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-789p-latest-promotions-2024__promo-card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}