.pl-page {
    max-width: 1200px;
}

.pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.pl-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pl-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.pl-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    overflow: hidden;
}

.pl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pl-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.pl-card__body {
    padding: 0.875rem 1rem 1rem;
}

.pl-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.pl-card__title a {
    color: #0f172a;
    text-decoration: none;
}

.pl-card__title a:hover {
    color: #2563eb;
}

.pl-card__link-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.pl-card__link-input {
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.72rem;
    color: #475569;
    background: #f8fafc;
}

.pl-card__copy-btn {
    flex-shrink: 0;
    width: 38px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.pl-card__copy-btn:hover {
    background: rgba(37, 99, 235, 0.16);
    border-color: rgba(37, 99, 235, 0.4);
}

@media (max-width: 576px) {
    .pl-grid {
        grid-template-columns: 1fr;
    }
}
