/* style/blog-latest-nohu78-promotions.css */
.page-blog-latest-nohu78-promotions {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-latest-nohu78-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-latest-nohu78-promotions__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-latest-nohu78-promotions__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-blog-latest-nohu78-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-blog-latest-nohu78-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-blog-latest-nohu78-promotions__hero-cta,
.page-blog-latest-nohu78-promotions__cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

.page-blog-latest-nohu78-promotions__hero-cta:hover,
.page-blog-latest-nohu78-promotions__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

.page-blog-latest-nohu78-promotions__promotions-grid {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-latest-nohu78-promotions__section-title {
  font-size: 2.5em;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-latest-nohu78-promotions__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-nohu78-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-nohu78-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-nohu78-promotions__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-latest-nohu78-promotions__card-content {
  padding: 25px;
}

.page-blog-latest-nohu78-promotions__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-latest-nohu78-promotions__card-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-nohu78-promotions__card-title a:hover {
  color: #2F6BFF;
}

.page-blog-latest-nohu78-promotions__card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-blog-latest-nohu78-promotions__card-date {
  font-size: 0.85em;
  color: #667eea; /* Using a lighter blue from primary palette */
  display: block;
  margin-bottom: 15px;
}

.page-blog-latest-nohu78-promotions__card-link {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-blog-latest-nohu78-promotions__card-link:hover {
  background-color: #2F6BFF;
}

.page-blog-latest-nohu78-promotions__view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-blog-latest-nohu78-promotions__view-all-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-latest-nohu78-promotions__view-all-btn:hover {
  background-color: #4A8BFF;
  transform: translateY(-2px);
}

.page-blog-latest-nohu78-promotions__cta-section {
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-blog-latest-nohu78-promotions__cta-content {
  max-width: 800px;
}

.page-blog-latest-nohu78-promotions__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.page-blog-latest-nohu78-promotions__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-blog-latest-nohu78-promotions__cta-image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-blog-latest-nohu78-promotions__hero-section {
    flex-direction: column; /* Still column for image above text */
    padding: 60px 40px;
  }

  .page-blog-latest-nohu78-promotions__hero-image {
    margin-bottom: 30px;
  }

  .page-blog-latest-nohu78-promotions__cta-section {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .page-blog-latest-nohu78-promotions__cta-content {
    margin-right: 40px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-nohu78-promotions__main-title {
    font-size: 2em;
  }

  .page-blog-latest-nohu78-promotions__section-title {
    font-size: 2em;
  }

  .page-blog-latest-nohu78-promotions__cta-title {
    font-size: 1.8em;
  }

  .page-blog-latest-nohu78-promotions__grid-container {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-nohu78-promotions__hero-image,
  .page-blog-latest-nohu78-promotions__card-image,
  .page-blog-latest-nohu78-promotions__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure content images are not styled smaller than 200px */
  .page-blog-latest-nohu78-promotions img {
    max-width: 100%;
    height: auto;
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

@media (max-width: 549px) {
  .page-blog-latest-nohu78-promotions__hero-section,
  .page-blog-latest-nohu78-promotions__promotions-grid,
  .page-blog-latest-nohu78-promotions__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-nohu78-promotions__hero-cta,
  .page-blog-latest-nohu78-promotions__cta-btn {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  .page-blog-latest-nohu78-promotions__card-image {
    height: 180px;
  }
}