.rpg-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 2px;
}

.rpg-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
}

.rpg-item-0 { grid-column: span 2; grid-row: 1; }
.rpg-item-1 { grid-column: 3; grid-row: 1; }

.rpg-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 1;
}

.rpg-item:hover .rpg-bg-image {
    transform: scale(1.1);
}

.rpg-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.rpg-post-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.rpg-post-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
}

.rpg-item-0 .rpg-post-title { font-size: 26px; }

.rpg-meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.rpg-post-category {
    font-size: 14px;
    font-weight: 500;
}

.rpg-read-more {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.rpg-read-more i, .rpg-read-more svg {
    margin-right: 5px;
    width: 1em;
    height: 1em;
}

@media (max-width: 768px) {
    .rpg-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .rpg-item {
        height: 250px;
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}