.huu-rp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.huu-rp-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.huu-rp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.huu-rp-thumb {
    display: block;
    overflow: hidden;
}

.huu-rp-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.huu-rp-card:hover .huu-rp-thumb img {
    transform: scale(1.03);
}

.huu-rp-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 18px 18px 20px;
}

.huu-rp-title {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.25;
    text-align: center;
    color: #d56a00;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.huu-rp-title a {
    color: inherit;
    text-decoration: none;
}

.huu-rp-excerpt {
    margin: 0 0 18px;
    color: #44372c;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.huu-rp-actions {
    margin-top: auto;
}

.huu-rp-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 10px 18px;
    border: 2px solid #d56a00;
    border-radius: 8px;
    color: #d56a00;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
    box-sizing: border-box;
}

.huu-rp-button:hover,
.huu-rp-button:focus {
    background: #d56a00;
    color: #fff;
    text-decoration: none;
}

.huu-rp-empty {
    padding: 14px 18px;
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 1024px) {
    .huu-rp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .huu-rp-grid {
        grid-template-columns: 1fr;
    }

    .huu-rp-title {
        font-size: 22px;
    }
}
