.content-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  outline: 1px solid transparent;
  transition: 0.2s ease;
  min-height: 100%;
  max-width: 360px;
}

@media screen and (max-width: 768px) {
  .content-card {
    max-width: 100%;
  }
}

.content-card:has(a):hover {
  outline: 1px solid #0B9444;
}

.content-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.content-card-content p {
  margin: 0;
}

.content-card-label {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.content-card-icon {
  display: flex;
  justify-content: center;
}

.content-card-image i {
  color: #0B9444;
  font-size: 46px;
  line-height: 100%;
  padding: 24px 24px 0 24px;
}

.content-card-image i:hover {
  color: #0B9444 !important;
  text-decoration: none !important;
}

.content-card-label span,
.content-card-label a {
  border-radius: 4px;
  color: #000;
  padding: 4px 8px;
  background-color: #f0f0f0;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.content-card-label span:empty,
.content-card-label a:empty {
  display: none;
}

.content-card-label span:hover,
.content-card-label a:hover {
  background-color: #f0f0f0;
  color: #000;
  text-decoration: none !important;
}

.content-card-image img {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  object-fit: cover;
}

.content-card-image {
  max-height: 200px;
  overflow: hidden;
}

.content-card .content-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;        /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #0B9444;
}

.content-card .content-card-title:hover {
  color: #0B9444;
  text-decoration: none !important;
}

.content-card .content-card-description, .content-card p {
  max-height: 76px;
  font-size: 14px;
  color: #000;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-card .content-card-description:hover, .content-card p:hover {
  color: #000;
  text-decoration: none !important;
}

.content-card .content-card-subtitle {
  font-size: 12px;
  margin: 0;
  color: #000;
}

.content-card .content-card-subtitle:hover {
  color: #000;
  text-decoration: none !important;
}

.content-card-wrapper {
  text-decoration: none !important;
}

.content-card-wrapper:hover {
  text-decoration: none !important;
}

.content-description-wrapper {
  flex: 1;
  flex-grow: 1;
}