.bento-grid-container-05fd55ee {
    width: 100%;
}

.bento-grid-05fd55ee {
    --bento-min-col: 280px;
    --bento-row-height: 250px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--bento-min-col), 1fr));
    grid-auto-rows: var(--bento-row-height);
    grid-auto-flow: dense;
    gap: 20px;
}

.bento-box-wrap-05fd55ee {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f1f5f9; /* Fallback */
}

a.bento-box-wrap-05fd55ee {
    cursor: pointer;
}

.bento-box-wrap-05fd55ee.has-hover-movement:hover {
    transform: translateY(-4px);
}

/* Size Modifications */
.bento-box-wrap-05fd55ee.size-span-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-box-wrap-05fd55ee.size-span-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-box-wrap-05fd55ee.size-span-1x2 { grid-column: span 1; grid-row: span 2; }

/* Responsive Grid Adjustments */
@media (max-width: 767px) {
    .bento-box-wrap-05fd55ee.size-span-2x2,
    .bento-box-wrap-05fd55ee.size-span-2x1,
    .bento-box-wrap-05fd55ee.size-span-1x2 {
        grid-column: span 1;
        grid-row: span 1; /* Reset on mobile so it stacks naturally */
    }
}

.bento-box-bg-05fd55ee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.5s ease;
}

.bento-box-wrap-05fd55ee.has-hover-movement:hover .bento-box-bg-05fd55ee {
    transform: scale(1.05);
}

.bento-box-overlay-05fd55ee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.bento-box-content-05fd55ee {
    position: relative;
    z-index: 3;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.bento-tag-wrap-05fd55ee {
    margin-top: 0;
    margin-bottom: auto; /* Pushes the tag to the top */
    align-self: flex-start;
}

.bento-tag-05fd55ee {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bento-title-05fd55ee {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.bento-subtitle-05fd55ee {
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.bento-desc-05fd55ee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.bento-desc-05fd55ee p {
    margin: 0 0 10px 0;
}
.bento-desc-05fd55ee p:last-child {
    margin-bottom: 0;
}

/* Button Styling */
.bento-btn-wrap-05fd55ee {
    margin-top: 16px;
    align-self: flex-start;
}

.bento-btn-05fd55ee {
    display: inline-block;
    padding: 10px 24px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bento-btn-05fd55ee:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}