/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* Awards Winners Wrapper */
.awards-section {
  /* background: #fff;
  border-radius: 8px;
  padding: 24px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: "Helvetica Neue", Arial, sans-serif; */
}

/* Section Heading */
.awards-heading {
  color: #e67e22; /* orange accent */
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.awards-divider {
  border: 0;
  height: 2px;
  background: #e67e22;
  margin: 0 0 20px;
}

/* List Layout */
.awards-list {
  display: flex;
  flex-direction: column;
}

/* Each Row */
.awards-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.awards-row:last-child {
  border-bottom: none;
}

/* Category (left side) */
.awards-category {
  color: #555;
  font-size: 15px;
  font-weight: 500;
}

/* Winner (right side) */
.awards-winner {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

/* Responsive (stacked layout on mobile) */
@media (max-width: 600px) {
  .awards-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .awards-winner {
    text-align: left;
    font-size: 14px;
  }
}
