/* ============================================================
   Award Feature & Gallery Strip Styles
   ============================================================ */

/* --- Award Ticker Banner --- */
#award-ticker {
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  padding: 12px 0;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 998;
}

.ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ticker-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  flex: 1;
}

.ticker-text strong { color: var(--white); }

.ticker-link {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.ticker-link:hover { color: #ff2040; }

/* Adjust hero top padding when ticker is present */
#hero { padding-top: 0; }

/* --- Award Feature Section --- */
#award-feature {
  background: var(--white);
  border-top: 4px solid var(--accent);
}

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.award-image-col { position: relative; }

.award-badge-wrap { position: relative; display: inline-block; width: 100%; }

.award-office-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.award-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

.award-badge-inner {
  text-align: center;
  color: var(--white);
  padding: 10px;
}

.award-badge-inner .award-year {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.award-badge-inner .award-title {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 4px 0;
}

.award-badge-inner .award-pub {
  display: block;
  font-size: 0.5rem;
  opacity: 0.8;
  line-height: 1.3;
}

.award-text-col .award-lead {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.award-text-col p { color: #555; line-height: 1.85; }

.award-detail-box {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

.award-detail-item { display: flex; flex-direction: column; gap: 3px; }

.detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-value {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
}

/* --- Office Gallery Strip --- */
#office-gallery {
  overflow: hidden;
  background: var(--primary);
}

.gallery-strip {
  display: flex;
  height: 260px;
}

.gallery-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.gallery-item:hover img {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.06);
}

/* --- Person Photo Placeholder --- */
.person-photo-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.person-photo-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.person-photo-placeholder svg {
  width: 64px;
  height: 64px;
}

.person-photo-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.person-photo-real {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
}

/* --- Featured News Card --- */
.news-card.featured-news {
  border-top-color: var(--accent);
  border-top-width: 3px;
  background: linear-gradient(135deg, rgba(192,0,26,0.04) 0%, transparent 60%);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .award-grid { grid-template-columns: 1fr; gap: 3rem; }
  .award-badge { bottom: -16px; right: 16px; width: 120px; height: 120px; }
  .award-office-img { height: 340px; }
}

@media (max-width: 768px) {
  .gallery-strip { height: 160px; }
  .award-detail-box { grid-template-columns: 1fr; }
  .ticker-inner { gap: 0.5rem; }
  .ticker-text { font-size: 0.78rem; }
}
