/* ============================================
   MANIFESTO.CSS - PUNKROCK GADGETS
   ============================================ */

/* ==== LAYOUT ==== */

.manifesto-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

/* ==== MANIFESTO SECTION ==== */

.manifesto-item {
    border: 2px solid var(--border);
    padding: 1rem;
    background: var(--bg-primary);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.manifesto-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 1px 1px 15px 6px rgba(255, 0, 128, 0.2);
    transform: translateY(-2px);
}

.manifesto-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    padding: 0 0 1rem;
}

.manifesto-item p.font-mono {
    font-size: 0.9rem;
    text-align: left;
}

.manifesto-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.manifesto-icon svg {
    width: 3rem;
    height: 3rem;
    transition: transform 0.3s ease;
}

.manifesto-item:hover .manifesto-icon svg {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
}