.content-card {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  max-width: 650px;
  font-family: sans-serif;
  border-radius: 25px;
  overflow: hidden;
  padding: 50px;
  border: 2px solid #51636F;
  color: #51636F;
  gap: 20px;
}

.content-card .logo {
  align-self: start;
  height: 17px;
}

.content-card .image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.content-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card .skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.content-card .description {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.content-card-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0px;
}

.content-card-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
