/* Fade-in animation for bento box sentence */
.fade-in-text {
    opacity: 0;
    transition: opacity 2s ease-in;
}

.fade-in-text.visible {
    opacity: 1;
}

/* === Bento Box Base Styles === */
.bento-tile-base {
    border-radius: 0.5rem;
    padding: -1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
    object-fit: cover;
}

.bento-tile-base:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bento-tile-base:focus {
    outline: 2px solid #1ACECE;
    box-shadow: 0 0 0 4px rgba(26, 206, 206, 0.3);
}

.tile-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.tile-content p {
    margin: 0;
    font-size: 1rem;
}