/* front.css : Styles de base pour le questionnaire Atom Suite côté front */

.asc-questionnaire {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.asc-questionnaire h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.asc-question {
	width:900px;
    padding: 20px;
    margin-bottom: 20px;
}

.asc-question p {
    font-size: 1.2em;
    line-height: 1.5;
}

.asc-answer {
    margin: 10px 0;
}

.asc-answer button {
    padding: 10px 20px;
    background-color: #223222;
    color: #fff;
    border:none;
    border-radius: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	display: inline-block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
	font-weight: 800;
    font-size: 1.3em;
}

.asc-answer button:hover {
    background-color: #22322299;
}

/*custom front double colonne */

.asc-answers {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 777px;
    margin: 0 auto;
}

.asc-answers.twocols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.asc-answers.twocols .asc-answer {
    width: 100%;
}

@media (max-width: 700px) {
    .asc-answers.twocols {
        grid-template-columns: 1fr;
    }
}

