.rpg-e87b423e-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.rpg-e87b423e-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rpg-e87b423e-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.rpg-e87b423e-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
}

.rpg-e87b423e-image-link {
    display: block;
    text-decoration: none;
}

.rpg-e87b423e-content {
    padding: 20px;
}

.rpg-e87b423e-date {
    display: inline-block;
    font-size: 13px;
    color: #888888;
    margin-bottom: 8px;
}

.rpg-e87b423e-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

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

.rpg-e87b423e-title a:hover {
    color: #6c63ff;
}

.rpg-e87b423e-excerpt {
    margin: 0 0 14px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.rpg-e87b423e-read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rpg-e87b423e-read-more:hover {
    color: #1a1a2e;
}

/* Pagination */
.rpg-e87b423e-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.rpg-e87b423e-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: #6c63ff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.rpg-e87b423e-nav-btn:hover:not(:disabled) {
    background-color: #1a1a2e;
}

.rpg-e87b423e-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.rpg-e87b423e-page-info {
    font-size: 14px;
    color: #888888;
}

.rpg-e87b423e-grid.rpg-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

@media (max-width: 1024px) {
    .rpg-e87b423e-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .rpg-e87b423e-grid {
        grid-template-columns: 1fr !important;
    }

    .rpg-e87b423e-pagination {
        flex-wrap: wrap;
    }
}
