.pctipsrp {
    margin: 2rem 0;
}

.pctipsrp__heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7b61ff;
    margin: 0 0 0.75rem 0;
}

.pctipsrp__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pctipsrp__item {
    list-style: none;
}

.pctipsrp__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f7f7fb;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.pctipsrp__link:hover {
    background: #f0f0ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.pctipsrp__thumb {
    flex: 0 0 140px;
    max-width: 140px;
}

.pctipsrp__thumb img {
    display: block;
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.pctipsrp__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pctipsrp__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    margin: 0;
}

.pctipsrp__excerpt {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.4;
}

/* Responsive */

@media (max-width: 768px) {
    .pctipsrp__link {
        flex-direction: row;
        align-items: flex-start;
    }

    .pctipsrp__thumb {
        flex: 0 0 120px;
    }

    .pctipsrp__thumb img {
        width: 120px;
        height: 70px;
        object-fit: cover;
        border-radius: 0.75rem;
    }

    .pctipsrp__content {
        width: calc(100% - 130px);
    }
}
