/* HOMEPAGE About — award enhancement for the interior-about-intro section.
   Shrinks the award logo and adds a WINNER tag + title + year beside it.
   Overrides the .awards-row / .award-item rules in theme.css (loads after it). */

.about-intro-content .awards-row { gap: 40px; align-items: center; }
.about-intro-content .award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: none;
}
.about-intro-content .award-item img {
  height: 60px !important;
  max-height: 60px !important;
  width: auto;
}
.about-intro-content .award-item img:hover { transform: none; }

.award-item__winner {
  display: inline-block;
  border: 1px solid #c08a3e;
  color: #c08a3e;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 3px;
  line-height: 1.3;
}
.award-item__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #0d1018;
  margin-top: 8px;
  line-height: 1.3;
  max-width: 240px;
}
.award-item__year {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #8a8a8a;
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .about-intro-content .award-item { gap: 12px; }
  .about-intro-content .award-item img { height: 50px !important; }
}
