/* themes-list.css - Styles for the themes list on about.html */
.themes-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.theme-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-left: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-left-color: #667eea;
}

.theme-num {
    font-size: 24px;
    font-weight: 800;
    color: #eef2ff;
    -webkit-text-stroke: 2px #667eea;
    min-width: 50px;
    line-height: 1;
    margin-top: 2px;
}

.theme-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #1a2b4e;
}

.theme-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

@media (max-width: 900px) {
    .themes-list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
}