.rpbt-wrapper {
    margin: 60px 0;
}

.rpbt-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.rpbt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rpbt-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
    transition: .3s ease;
}

.rpbt-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.12);
}

.rpbt-image {
    display: block;
}

.rpbt-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.rpbt-content {
    padding: 20px;
}

.rpbt-date {
    display: inline-block;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.rpbt-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.4;
}

.rpbt-content h3 a {
    color: #222;
    text-decoration: none;
}

.rpbt-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.rpbt-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #0066ff;
}

.rpbt-button:hover {
    color: #004ec7;
}

@media (max-width: 991px) {

    .rpbt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .rpbt-grid {
        grid-template-columns: 1fr;
    }

    .rpbt-title {
        font-size: 26px;
    }

    .rpbt-image img {
        height: 220px;
    }

}