/* style/resources-latest-promotions.css */

/* Base styles */
.page-resources-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

.page-resources-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-latest-promotions__heading {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-latest-promotions__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555555;
}

.page-resources-latest-promotions__content-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.page-resources-latest-promotions__content-block p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-latest-promotions__content-block img {
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Buttons */
.page-resources-latest-promotions__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-promotions__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.page-resources-latest-promotions__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  font-size: 0.95em;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-promotions__btn-secondary:hover {
  background: #FFD700;
  color: #ffffff;
  transform: translateY(-2px);
}