.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--emerald-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-700);
}

.btn-bright {
  background: var(--emerald-500);
  color: var(--white);
}

.btn-bright:hover {
  background: var(--emerald-600);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.95);
  color: var(--emerald-700);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  border-color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.86);
  color: var(--white);
}

.btn-outline {
  border-color: var(--emerald-500);
  background: var(--white);
  color: var(--emerald-700);
}

.btn-outline:hover {
  background: var(--emerald-50);
}

.arrow {
  font-size: 18px;
  line-height: 0;
}

.icon-box {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-weight: 800;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-card:hover img,
.card:hover img,
.news-card:hover img {
  transform: scale(1.05);
}

.card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  padding: 7px 14px;
  color: var(--emerald-300);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald-400);
  animation: pulse 1.8s ease-in-out infinite;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  animation: fadeUp 0.7s ease forwards;
}
