.pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pt-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.5rem;
    padding: 1.4rem 1.4rem 1.2rem;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.pt-card:hover {
    filter: brightness(1.08);
    transform: translateY(-2px) scale(1);
    text-decoration: none;
    color: #fff;
}

.pt-card.is-visible {
    animation: pt-drop 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--pt-delay, 0s);
}

@keyframes pt-drop {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.pt-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 0.35rem;
}

.pt-card__desc {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin: 0;
}

.pt-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.1rem;
}

.pt-card__count {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.pt-card__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.pt-card:hover .pt-card__arrow {
    background: rgba(255, 255, 255, 0.35);
}

.pt-card__arrow svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .pt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .pt-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .pt-card { opacity: 1; transform: none; animation: none !important; }
}
