/* Studio Icon — Prijslijst frontend styling
   Scoped onder .si-pl-wrapper zodat het niet leakt naar de rest van de pagina,
   en niet door theme-CSS (zoals Divi h3 in uppercase) wordt overschreven. */

.si-pl-wrapper {
    background: #faf4ef;
    padding: 2.5rem 1.75rem;
    margin: 2rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
    color: #2c2c2c;
    font-family: inherit;
}

.si-pl-title {
    text-align: center;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: .04em;
    margin: 0 0 2rem;
    color: #3a3a3a;
    text-transform: none;   /* defeat Divi uppercase */
}

.si-pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem 3rem;
    align-items: start;
}
.si-pl-grid--single {
    grid-template-columns: 1fr;
}

.si-pl-section {
    min-width: 0;   /* prevent grid overflow */
}

.si-pl-section-title {
    text-align: center;
    font-weight: 400;
    font-size: 1.45rem;
    letter-spacing: .05em;
    margin: .5rem 0 1rem;
    color: #3a3a3a;
    text-transform: none !important;  /* defeat Divi h3 uppercase */
    line-height: 1.3;
}

.si-pl-subsection-title {
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;
    margin: 1.25rem 0 .25rem;
    color: rgba(60, 60, 60, .72);
    text-transform: none !important;
    letter-spacing: 0;
}

.si-pl-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 .5rem;
    background: transparent;
}
.si-pl-table tbody tr {
    border-bottom: 1px dashed rgba(0, 0, 0, .14);
}
.si-pl-table tbody tr:last-child {
    border-bottom: 0;
}
.si-pl-table td {
    padding: .55rem .25rem;
    font-size: .95rem;
    line-height: 1.35;
    vertical-align: top;
    border: 0;
    background: transparent;
}

.si-pl-table .si-pl-label {
    text-align: left;
    color: #2c2c2c;
    padding-right: .5rem;
}
.si-pl-table .si-pl-from {
    text-align: right;
    color: rgba(60, 60, 60, .6);
    font-size: .85rem;
    width: 38px;
    padding-right: 4px;
    white-space: nowrap;
}
.si-pl-table .si-pl-currency {
    text-align: right;
    width: 14px;
    color: rgba(60, 60, 60, .8);
    padding-right: 2px;
}
.si-pl-table .si-pl-price {
    text-align: right;
    width: 80px;
    white-space: nowrap;
    color: #2c2c2c;
    font-variant-numeric: tabular-nums;
}
.si-pl-table .si-pl-price--text {
    width: auto;
    color: rgba(60, 60, 60, .75);
    font-style: italic;
    text-align: right;
}

.si-pl-note {
    display: block;
    font-size: .8rem;
    color: rgba(60, 60, 60, .6);
    margin-top: .15rem;
}

.si-pl-section-footer {
    font-size: .8rem;
    color: rgba(60, 60, 60, .65);
    margin: 1rem 0 0;
    font-style: italic;
    line-height: 1.45;
}

.si-pl-footer {
    text-align: center;
    font-size: .85rem;
    color: rgba(60, 60, 60, .7);
    margin: 2.5rem 0 0;
}

@media (max-width: 720px) {
    .si-pl-wrapper { padding: 1.5rem 1rem; }
    .si-pl-grid    { gap: 1rem; grid-template-columns: 1fr; }
    .si-pl-section-title { font-size: 1.25rem; }
}
