.bento-grid-801 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    width: 100%;
}

.bento-item-801 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}

.bento-item-801:hover {
    transform: translateY(-5px);
}

.bento-bg-801 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.bento-item-801:hover .bento-bg-801 {
    transform: scale(1.05);
}

.bento-overlay-801 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.bento-item-801:hover .bento-overlay-801 {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}

.bento-content-801 {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}

.bento-cat-801 {
    background: #ff5722;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

.bento-title-801 {
    margin: 0 0 10px;
    font-size: 20px;
}

.bento-title-801 a {
    color: #fff;
    text-decoration: none;
}

.bento-meta-801 {
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.bento-excerpt-801 {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .bento-grid-801 { grid-template-columns: repeat(2, 1fr); }
}

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