.rp-35211426-grid {
    display: grid;
    gap: 24px;
}

.rp-35211426-cols-1 {
    grid-template-columns: 1fr;
}

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

.rp-35211426-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.rp-35211426-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.rp-35211426-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rp-35211426-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.rp-35211426-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e9ecef;
}

.rp-35211426-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rp-35211426-title {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.3;
}

.rp-35211426-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rp-35211426-title a:hover {
    color: #4361ee;
}

.rp-35211426-date {
    font-size: 0.85em;
    color: #6c757d;
    margin-bottom: 10px;
}

.rp-35211426-excerpt {
    font-size: 0.95em;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.rp-35211426-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #4361ee;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.rp-35211426-btn:hover {
    background-color: #3a56d4;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .rp-35211426-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .rp-35211426-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .rp-35211426-cols-2,
    .rp-35211426-cols-3,
    .rp-35211426-cols-4 {
        grid-template-columns: 1fr;
    }
}
