.profile_img {
  display: inline-block;
}

.thumbnail-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
}

.thumb-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease-in-out;
  background-color: #c51a70 !important;
}

.thumb-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 30px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 80%);
  color: #fff;
  font-family: Arial, sans-serif;
}

.thumb-title {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.2em;
  max-height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.thumb-views {
  font-size: 0.75rem;
  margin: 2px 0 0;
  opacity: 0.85;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 0.3rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.thumbnail-card:hover .thumb-img {
  transform: scale(1.03);
}

a {
  text-decoration: none;
  color: var(--bs-dark);
}

.description-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.profile_description {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.description-wrapper {
}

