/* Rewards / Cars Section (used for modules) */
.rewards-section {
  padding-top: 60px;
  background-color: #fff;
}

.rewards-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.rewards-section h3.above {
  font-size: 32px; /* was 24px, +8 */
  letter-spacing: -0.05em;
  margin-bottom: 0px;
  color: #000;
  text-transform: uppercase;
  font-family: 'ArchivoBlack-2', sans-serif;
  line-height: 0.9;
  text-align: left;
  padding: 0 10px;
  box-sizing: border-box;
}

.rewards-section h2.above {
  font-size: 48px; /* was 40px, +8 */
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  color: #000;
  text-transform: uppercase;
  font-family: 'ArchivoBlack-2', sans-serif;
  line-height: 0.9;
  text-align: left;
  padding: 0 10px;
  box-sizing: border-box;
}

.rewards-section .property-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.rewards-section .property-item.reverse {
  flex-direction: row-reverse;
}

.rewards-section .property-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.rewards-section .property-details {
  flex: 1;
  text-align: left;
  line-height: 1.6;
}

.rewards-section .property-details p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.rewards-section h2.inline {
  font-size: 48px; /* was 40px, +8 */
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  color: #000;
  text-transform: uppercase;
  font-family: 'ArchivoBlack-2', sans-serif;
  line-height: 0.9;
  text-align: left;
  box-sizing: border-box;
  display: inline-block;
}

.rewards-section h3.inline {
  font-size: 32px; /* was 24px, +8 */
  letter-spacing: -0.05em;
  margin-bottom: 0px;
  color: #D3FC01;
  text-transform: uppercase;
  font-family: 'ArchivoBlack-2', sans-serif;
  line-height: 0.9;
  text-align: left;
  box-sizing: border-box;
  display: inline-block;
}

/* Section heading that was originally used */
.section-title {
  font-size: 40px; /* was 32px, +8 */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}

/* Original cars-grid and related styles - keeping these for reference */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.car-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.car-item:hover {
  transform: translateY(-5px);
}

.car-number, .ps-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #D3FC01;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.car-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.car-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.playstation-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.playstation-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.playstation-item img {
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Adding media queries for responsive design similar to property-info */
@media (max-width: 768px) {
  .rewards-section .property-item, 
  .rewards-section .property-item.reverse {
    flex-direction: column;
    gap: 30px;
  }
  
  .rewards-section .property-image {
    max-width: 100%;
  }
  
  .rewards-section .property-details {
    text-align: center;
  }
  
  .rewards-section h2.inline,
  .rewards-section h3.inline,
  .rewards-section h2.above,
  .rewards-section h3.above {
    text-align: center;
    width: 100%;
    transform: none;
  }
}
