/* Analisi Sensoriale – Frontend SVG */
:root {
    --as-bg:         #f5f3ee;
    --as-text:       #3d3530;
    --as-title-font: Georgia,'Times New Roman',serif;
    --as-body-font:  'Helvetica Neue',Arial,sans-serif;
}
.as-wrapper {
    background: var(--as-bg);
    border-radius: 20px;
    padding: 36px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--as-body-font);
    box-sizing: border-box;
}
.as-title {
    font-family: var(--as-title-font);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--as-text);
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: -.01em;
}
.as-wrapper svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}
