@charset "UTF-8";

/* =========================================================================
   Scenario Page Styles
   ========================================================================= */

/* Scenario List Grid
   ------------------------------------------------------------------------- */
.scenario-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Scenario Item Card
   ------------------------------------------------------------------------- */
.scenario-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

/* Card Thumbnail
   ------------------------------------------------------------------------- */
.scenario-thumb {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Card Information
   ------------------------------------------------------------------------- */
.scenario-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card Title
   ------------------------------------------------------------------------- */
.scenario-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 9px;
    /* slightly adjusted for visual balance */
    color: var(--c-accent-dark);
}

/* Card Description
   ------------------------------------------------------------------------- */
.scenario-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.scenario-desc.scenario-desc--klee {
    font-family: "Klee One", cursive;
    font-size: 1.0rem;
    line-height: 1.5;
    color: #555;
}

/* TALTO Link Button
   ------------------------------------------------------------------------- */
.scenario-link {
    display: block;
    text-align: center;
    background: var(--c-accent-blue);
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
    /* Ensure no underline by default */
}

/* Hover state for link (optional addition for better UX) */
.scenario-link:hover {
    opacity: 0.9;
}