/* Shared desktop short-drama card. Keep all visual changes for this component here. */
@media (min-width: 769px) {
  .pc-short-drama-grid,
  .person-center-page .mobile-profile-grid.pc-short-drama-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .pc-short-drama-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
  }

  .pc-short-drama-card__link {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    color: inherit;
    text-decoration: none;
  }

  .pc-short-drama-card__cover {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3 / 4;
    background: #15181a url("/static/images/placeholder.png?v=20260904-jhs-1") center / cover no-repeat;
  }

  .pc-short-drama-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .25s ease;
  }

  .pc-short-drama-card__shade {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
    pointer-events: none;
  }

  .pc-short-drama-card__status {
    position: absolute;
    z-index: 2;
    right: 8px;
    bottom: 8px;
    display: inline-flex;
    min-width: 32px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    line-height: 16px;
  }

  .pc-short-drama-card__status--hot {
    min-width: 0;
    min-height: 18px;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(247, 68, 78, .9);
    font-weight: 600;
  }

  .pc-short-drama-card__title {
    display: -webkit-box;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    transition: color .2s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .pc-short-drama-card__footer {
    display: flex;
    min-width: 0;
    height: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .pc-short-drama-card__meta {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }

  .pc-short-drama-card__meta span:first-child,
  .pc-short-drama-card__meta span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pc-short-drama-card__metric,
  .pc-short-drama-card__favorite {
    display: inline-flex;
    min-width: 0;
    height: 18px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
  }

  .pc-short-drama-card__favorite { cursor: pointer; }
  .pc-short-drama-card__metric { color: rgba(255, 255, 255, .72); }
  .pc-short-drama-card__metric:not(.pc-short-drama-card__metric--like) img {
    filter: grayscale(1) brightness(1.45) opacity(.68);
  }
  .pc-short-drama-card__favorite[aria-pressed="true"] { color: #facd15; }
  .pc-short-drama-card__metric--like { color: #ff4d67; }
  .pc-short-drama-card__metric img { width: 14px; height: 14px; object-fit: contain; }
  .pc-short-drama-card__metric b,
  .pc-short-drama-card__favorite b { font-weight: 400; }
  .pc-short-drama-card__favorite .favorite-motion--card { --favorite-motion-icon-size: 16px; }
  .pc-short-drama-card__favorite:focus-visible,
  .pc-short-drama-card__link:focus-visible { border-radius: 8px; outline: 2px solid #e9b54b; outline-offset: 3px; }
  .pc-short-drama-card__link:hover .pc-short-drama-card__image { transform: scale(1.035); }
  .pc-short-drama-card__link:hover .pc-short-drama-card__title { color: #f2c65d; }
}
