/* Piero Geo — Public CSS
   Tutto lo stile frontend è qui. Cambia solo questo file per reskin completo.
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.pg-body {
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #222;
    line-height: 1.6;
}

.pg-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* HEADER */
.pg-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.pg-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.pg-name {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.pg-sector {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}

/* DESCRIPTION */
.pg-description {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* SECTIONS */
.pg-section {
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.pg-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #888;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* COLUMNS */
.pg-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .pg-columns { grid-template-columns: 1fr; }
    .pg-header { flex-direction: column; text-align: center; }
}

/* INFO LIST */
.pg-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pg-info-list li {
    font-size: 14px;
    color: #333;
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.pg-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
    min-width: 90px;
    flex-shrink: 0;
}

.pg-info-list a {
    color: #1a56db;
    text-decoration: none;
}
.pg-info-list a:hover { text-decoration: underline; }

/* MAP */
.pg-map-wrap { }

.pg-map iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 6px;
    display: block;
}

/* KEYWORDS */
.pg-kw-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pg-kw-chip {
    background: #eef2ff;
    color: #3730a3;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .02em;
}
