/**
 * Brand Shared Styles
 * 
 * Common styles for brand templates (Eurodib, Atmovac, Resolute, Archive)
 * Contains returns-section, returns-items, returns-item, and divider styles
 * 
 * @package Website_Theme
 */

/* Returns Section (Features) */
.returns-section {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  background: #009CFF;
  padding-right: 120px;
  padding-left: 120px;
  padding-top: 25px;
  padding-bottom: 35px;
}

.returns-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: white;
}

.returns-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
}

.returns-item {
  flex: 1;
  max-width: 220px;
  padding: 0 10px;
}

.returns-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: white;
}

.returns-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: white;
}

.divider {
  width: 1px;
  background-color: #001037;
  height: 150px;
  align-self: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .returns-section {
    padding: 40px 40px;
  }
  .returns-items {
    flex-wrap: wrap;
    gap: 40px;
  }
  .divider {
    display: none;
  }
  .returns-item {
    max-width: 100%;
  }
}
