.user-showcase {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(68, 52, 40, 0.1);
  color: #2d241f;
}

.user-showcase-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.user-showcase-header h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}

.user-showcase-header p {
  max-width: 190px;
  margin: 4px 0 0;
  color: #857970;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0;
}

.user-showcase-header a {
  flex: none;
  color: #7b553c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.user-showcase-header a:hover {
  color: #3c2a20;
}

.user-showcase-card {
  overflow: hidden;
  border: 1px solid rgba(78, 56, 42, 0.11);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(59, 42, 31, 0.07);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.user-showcase-card:hover,
.user-showcase-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(126, 84, 54, 0.32);
  box-shadow: 0 14px 30px rgba(59, 42, 31, 0.11);
}

.user-showcase-profile {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 11px 11px 9px;
}

.user-showcase-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #1f7e7b, #d6a75d);
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.user-showcase-avatar.has-image {
  color: transparent;
}

.user-showcase-profile > div {
  min-width: 0;
}

.user-showcase-profile strong,
.user-showcase-profile span {
  display: block;
  letter-spacing: 0;
}

.user-showcase-profile strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-showcase-profile div span {
  width: fit-content;
  margin-top: 3px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f4eee8;
  color: #7d563d;
  font-size: 9px;
  font-weight: 700;
}

.user-showcase-rating {
  color: #c58d35;
  font-size: 9px;
  white-space: nowrap;
}

.user-showcase-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2eee9;
}

.user-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.35s ease;
}

.user-showcase-card.is-changing .user-showcase-media img {
  opacity: 0.38;
}

.user-showcase-card:hover .user-showcase-media img {
  transform: scale(1.018);
}

.user-showcase-media-label {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(37, 28, 23, 0.7);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.user-showcase-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(37, 28, 23, 0.58);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.user-showcase-nav.previous { left: 8px; }
.user-showcase-nav.next { right: 8px; }

.user-showcase-card:hover .user-showcase-nav,
.user-showcase-nav:focus-visible {
  opacity: 1;
}

.user-showcase-nav:hover {
  background: rgba(37, 28, 23, 0.82);
}

.user-showcase-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.user-showcase-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.user-showcase-dots i.active {
  width: 14px;
  border-radius: 999px;
  background: #fff;
}

.user-showcase-card blockquote {
  margin: 0;
  padding: 10px 11px 7px;
  color: #3d3028;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.user-showcase-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 11px 11px;
  color: #988d84;
  font-size: 9px;
}

.user-showcase-card footer span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-showcase-card footer time {
  flex: none;
}

@media (max-width: 1180px) {
  .user-showcase-header p { max-width: 160px; }
  .user-showcase-profile { grid-template-columns: 32px minmax(0, 1fr); }
  .user-showcase-rating { grid-column: 2; }
}

@media (max-width: 900px) {
  .user-showcase-header p { max-width: 260px; }
  .user-showcase-profile { grid-template-columns: 34px minmax(0, 1fr) auto; }
  .user-showcase-rating { grid-column: auto; }
  .user-showcase-nav { opacity: 1; }
}
