<hash style="display:none;">-1655423409</hash>

{{#features}}
<li class="item fiche-local">

    {{#NomA}}
    <h2 class="titre">{{NomA}}</h2>
    {{/NomA}}

	
    {{#Photos}}
    <div class="photo">
        <img src="{{Photos}}" alt="Photo du bâtiment">
    </div>
    {{/Photos}}

    <div class="bloc">
        <h4>📋 Informations générales</h4>

        {{#Statut}}
        <p><b>Statut :</b> {{Statut}}</p>
        {{/Statut}}

        {{#Activites}}
        <p><b>Activités possibles :</b> {{Activites}}</p>
        {{/Activites}}

        {{#Disponibil}}
        <p><b>Disponibilité :</b> {{Disponibil}}</p>
        {{/Disponibil}}
    </div>

    <div class="bloc">
        <h4>🏢 Caractéristiques</h4>

        {{#Surface}}
        <p><b>Surface :</b> {{Surface}} m&sup2;</p>
        {{/Surface}}

        {{#PrixHT}}
        <p><b>Prix de vente :</b> {{PrixHT}} HT</p>
        {{/PrixHT}}
    </div>

    <div class="bloc">
        <h4>⚙️ Équipements</h4>

        {{#Equipemen}}
        <p>{{Equipemen}}</p>
        {{/Equipemen}}

        {{#Reseaux}}
        <p><b>Réseaux :</b> {{Reseaux}}</p>
        {{/Reseaux}}

        {{#Stationnem}}
        <p><b>Stationnement :</b> {{Stationnem}}</p>
        {{/Stationnem}}
    </div>

    <div class="bloc">
        <h4>👤 Contact</h4>

        <p>
            <strong>Guillaume MARTIN</strong><br>
            Chargé de développement économique
        </p>

        <p>
            📧 <a href="mailto:gmartin@couesnon-marchesdebretagne.fr">
                gmartin@couesnon-marchesdebretagne.fr
            </a><br>
            ☎ 02 99 98 78 17<br>
            📱 06 23 55 66 22
        </p>
    </div>


</li>
{{/features}}

<style>

.fiche-local{
    font-family:Raleway, Helvetica, sans-serif;
    color:#333;
    padding:8px;
}

.titre{
    color:#2E7D32;
    font-size:20px;
	font-weight: bold;
    margin-bottom:15px;
    border-bottom:3px solid #2E7D32;
    padding-bottom:6px;
}

.bloc{
    background:#ede6e6;
    border-left:5px solid #203580;
    padding:12px;
    margin-bottom:12px;
    border-radius:6px;
    box-shadow:0 1px 3px rgba(0,0,0,.15);
}

.bloc h4{
    margin-top:0;
    margin-bottom:10px;
    color:#203580;
    font-size:17px;
}

.bloc p{
    margin:6px 0;
    line-height:1.5;
}

.photo{
    margin-top:15px;
    text-align:center;
}

.photo img{
    width:100%;
    max-height:320px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #ccc;
}

a{
    color:#2E7D32;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

</style>