.custom-link-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;

  padding: 24px 16px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--greyscale-200);
  box-shadow: 1px 4px 12px 0px rgba(0, 0, 0, 0.04) !important;
  font-family: Sarabun !important;
}
.custom-link-col:hover {
  text-decoration: none !important;
}

.custom-link-col-image {
  min-width: 72px;
  width: 72px !important;
  height: 72px !important;
  object-fit: cover;
  object-position: center;
}

.custom-link-col-detail {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.custom-link-col-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
}
.custom-link-col:hover .custom-link-col-title {
  text-decoration: underline !important;
}

.custom-link-col-description {
  color: var(--dark-text) !important;
  height: 48px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

@media only screen and (min-width: 767px) {
  .custom-link-col {
    height: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .custom-link-col-image {
    min-width: 72px;
    width: 72px !important;
    height: 72px !important;
    object-fit: cover;
    object-position: center;
  }
}
