.main-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 2rem;
    margin-bottom: 2rem;
}

.text-column {
    min-width: 0;
}

.mechanism-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mechanism-sidebar-title {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.mechanism-card-compact {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.mechanism-card-compact:hover {
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.15);
}

.mechanism-card-compact h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
}

.mechanism-card-compact p {
    font-size: 0.75rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0.3rem;
}

@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .mechanism-sidebar {
        order: 2;
    }
}