/* Manifesto Page Styles */

.manifesto-content {
    padding: 4rem 0;
}

.manifesto-content .manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.manifesto-content .manifesto-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.manifesto-icon {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.manifesto-content .manifesto-item:hover .manifesto-icon {
    opacity: 1;
    transform: scale(1.15);
}

.manifesto-content .manifesto-item:hover .manifesto-icon path,
.manifesto-content .manifesto-item:hover .manifesto-icon circle,
.manifesto-content .manifesto-item:hover .manifesto-icon rect {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw 0.8s ease forwards;
}

.manifesto-content .manifesto-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px var(--shadow);
}

.manifesto-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    opacity: 0.4;
    line-height: 1;
}

.manifesto-content .manifesto-item h3 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.manifesto-content .manifesto-item p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* Closing Section */
.manifesto-closing {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    margin-top: 5rem;
    text-align: center;
}

.closing-content {
    max-width: 700px;
    margin: 0 auto;
}

.closing-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.manifesto-closing p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.manifesto-closing .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.manifesto-closing .btn-primary:hover {
    background-color: var(--light-gray);
}

.manifesto-closing .btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.manifesto-closing .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .manifesto-content .manifesto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

@media (max-width: 768px) {
    .manifesto-content .manifesto-item {
        padding: 2rem;
    }

    .manifesto-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .manifesto-content .manifesto-item h3 {
        font-size: 1.2rem;
    }

    .closing-content p {
        font-size: 1.1rem;
    }
}
