/* News Page Specific Styles */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 32px; }
.news-card { background: var(--color-white); border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--color-primary); transition: all 0.3s ease; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.news-card-img { height: 200px; width: 100%; background-color: var(--color-primary-dark); }
.news-card-content { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.news-date { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-text-light); }
.badge { display: inline-block; padding: 4px 12px; background-color: var(--color-secondary); color: var(--color-white); border-radius: 20px; font-size: 14px; font-weight: 600; }
.news-card h3 { font-size: 22px; color: var(--color-primary-dark); margin-bottom: 16px; }
.news-card p { color: var(--color-text-light); margin-bottom: 24px; flex-grow: 1; }
.read-more { display: inline-flex; align-items: center; gap: 4px; color: var(--color-primary); font-weight: 600; font-family: var(--font-primary); }
.read-more:hover { gap: 8px; color: var(--color-secondary); }

/* Press Coverage Gallery */
.press-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
.press-gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
}
.press-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.press-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  transition: transform 0.3s;
}
.lightbox-close:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .lightbox-close {
    top: -40px;
    right: 0;
  }
}
