/* Home Card Component Styles */

.home-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.home-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 10px);
  min-width: 280px;
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  height: 232px;
}

.home-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.home-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-card-icon {
  width: 24px;
  height: 24px;
}

.home-card-title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  color: #121213;
  white-space: nowrap;
}

.home-card-desc {
  color: #121213;
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.home-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.home-card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #005dd0;
  text-transform: uppercase;
  text-decoration: none;
}

.home-card-cta-link:hover {
  text-decoration: none;
  color: #0046a0;
}

.home-card-cta-link:hover .home-card-arrow {
  filter: brightness(0.7);
}

.home-card-arrow {
  width: 14px;
  height: 14px;
}
