/* Ultimate Post Kit - Post Card */
.upk-post-card {
  display: grid;
  grid-template-columns: 1fr;
}

.upk-post-card-item {
  height: 100%;
  background-color: #fff;
}

.upk-post-card > .upk-post-card-col:nth-child(2) .upk-post-card-item {
  box-shadow: 0 0 0 var(--upk-post-card-shadow-size, 20px) var(--upk-post-card-shadow-color, rgba(30, 135, 240, 0.7));
  position: relative;
}

.upk-post-card-thumb {
  display: block;
  overflow: hidden;
}

.upk-post-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.upk-post-card-title {
  margin-block-start: 0;
  margin-block-end: 10px;
  color: #666666;
}

.upk-post-card-title a {
  text-decoration: none;
  color: inherit;
}

.upk-post-card-button {
  font-weight: bolder;
  padding-inline-start: 0;
  padding-inline-end: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.upk-post-card-button svg {
  inline-size: 1em;
  block-size: 1em;
}

.upk-post-card-tag {
  margin-block-end: 10px;
}

.upk-post-card-tag span a {
  padding: 2px 6px;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  background: #1e87f0;
}

.upk-post-card-desc {
  padding: 50px;
}

.upk-post-card-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  color: #999;
  text-transform: uppercase;
  font-weight: bolder;
  margin-block-start: 0;
  font-size: 12px;
  margin-block-end: 20px;
  text-decoration: none;
}

.upk-post-card-meta span {
  display: inline-flex;
  align-items: center;
  margin-block-end: 10px;
}

.upk-post-card-meta span + span {
  margin-inline-start: 10px;
}

.upk-post-card-meta span:not(:last-child):after {
  content: "";
  display: inline-block;
  block-size: 4px;
  inline-size: 4px;
  border-radius: 50%;
  margin-inline-start: 10px;
  background: #adb5bd;
}

.upk-post-card-meta a {
  display: inline-block;
  color: #1e87f0;
  transition: color 0.5s cubic-bezier(0.4, 0.7, 0.04, 0.88);
}

.upk-post-card-meta a:hover {
  color: #666;
}

.upk-post-card-meta a + a {
  margin-inline-end: 5px;
  color: #999;
}

.upk-post-card-excerpt {
  margin-block-end: 15px;
}

.upk-post-card-excerpt p {
  margin: 0;
}

@media (min-width: 960px) {
  .upk-post-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .upk-post-card > .upk-post-card-col:nth-child(2) .upk-post-card-item {
    margin-block-start: -20px;
    margin-block-end: -20px;
  }
  .upk-post-card > .upk-post-card-col:nth-child(2) .upk-post-card-thumb {
    display: block;
    overflow: hidden;
  }
  .upk-post-card > .upk-post-card-col:nth-child(2) .upk-post-card-thumb img {
    padding-block-start: 20px;
    transform: scale(1.33);
  }
}