﻿
/* Local styles (move into site.css if you prefer) */
.tsh-calc-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .tsh-calc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tsh-calc-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.tsh-label {
    display: block;
    font-size: 14px;
    margin: 12px 0 6px;
}

.tsh-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.14);
}

.tsh-results {
    font-size: 15px;
    line-height: 1.5;
}

.tsh-divider {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 14px 0;
}

.tsh-result-kicker {
    font-size: 12px;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tsh-result-big {
    font-size: 28px;
    font-weight: 700;
    margin: 4px 0 6px;
}

.tsh-result-list {
    margin: 10px 0 0;
    padding-left: 18px;
}

.tsh-result-note {
    margin-top: 10px;
    font-size: 13px;
    opacity: .85;
}

.tsh-hint {
    margin-top: 10px;
    font-size: 13px;
    opacity: .75;
}


