/* style/lottery.css */
.page-lottery {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-lottery__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.page-lottery__section:first-of-type {
  padding-top: var(--header-offset, 120px);
}

.page-lottery__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-lottery__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-lottery__hero-section {
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background-color: #017439;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

.page-lottery__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-lottery__hero-content {
  flex: 1;
  padding-right: 20px;
}

.page-lottery__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-lottery__hero-image {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
  display: block;
}

.page-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00;
}

.page-lottery__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-lottery__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-lottery__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit;
}

.page-lottery__dark-bg .page-lottery__section-title {
  color: #FFFF00;
}

.page-lottery__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-lottery__text-block .page-lottery__text-link {
  color: #FFFF00;
  text-decoration: underline;
}

.page-lottery__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}