<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:5px;
}


/* Titre */
.titre{
    color:#2E7D32;
    font-size:18px;
    font-weight:bold;
    margin:0 0 8px 0;
    border-bottom:2px solid #2E7D32;
    padding-bottom:4px;
    line-height:1.2;
}


/* Image */
.photo{
    margin:8px 0;
    text-align:center;
}

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


/* Blocs */
.bloc{
    background:#ede6e6;
    border-left:4px solid #203580;
    padding:8px 10px;
    margin-bottom:8px;
    border-radius:5px;
    box-shadow:0 1px 2px rgba(0,0,0,.12);
}


.bloc h4{
    margin:0 0 6px 0;
    color:#203580;
    font-size:15px;
}


.bloc p{
    margin:3px 0;
    line-height:1.25;
    font-size:14px;
}


/* Contact */
.bloc a{
    color:#2E7D32;
    text-decoration:none;
}


/* Evite les débordements */
.bloc{
    overflow-wrap:break-word;
}

</style>