/* 
 * Components Styles
 */

/* Department Cards */
.department-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.department-card .card {
  height: 100%;
}

.department-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(32, 201, 151, 0.1);
}

/* Post Cards */
.post-card,
.news-card {
  transition: all 0.3s ease;
}

.post-image,
.news-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.post-image img,
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-image img,
.news-card:hover .news-image img {
  transform: scale(1.1);
}

.post-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.post-category,
.news-category {
  font-size: 0.875rem;
  font-weight: 600;
}

.post-meta,
.news-footer {
  font-size: 0.875rem;
  color: var(--gray-color);
}

/* Emergency Section */
.emergency-section {
  background: linear-gradient(135deg, var(--danger-color), #c82333);
  color: white;
}

.emergency-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Gallery Items */
.gallery-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gallery-item .card {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
