/* Shared only by the property calculation pages that opt in to this asset. */
.property-scope-card {
    margin: 0 0 1.5rem;
    overflow: hidden;
    border: 1px solid #cfe2ed;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7fcff 0%, #ffffff 56%, #f6fbf8 100%);
    box-shadow: 0 10px 24px rgba(15, 66, 92, 0.05);
}

.property-scope-card__header {
    padding: 1rem 1.15rem 0.8rem;
    border-bottom: 1px solid #dceaf0;
}

.property-scope-card__eyebrow {
    margin: 0 0 0.3rem;
    color: #00778d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.property-scope-card__title {
    margin: 0;
    color: #102f48;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.45;
}

.property-scope-card__intro {
    margin: 0.3rem 0 0;
    color: #557080;
    font-size: 0.88rem;
    line-height: 1.65;
}

.property-scope-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0.9rem 1.15rem 1.1rem;
}

.property-scope-card__item {
    min-width: 0;
    padding: 0.8rem 0.85rem;
    border: 1px solid #d7e5ec;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.property-scope-card__item--notice {
    border-color: #e8d9b6;
    background: #fffdf7;
}

.property-scope-card__item dt {
    margin: 0 0 0.28rem;
    color: #0e6480;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
}

.property-scope-card__item dd {
    margin: 0;
    color: #304c5e;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Keep temperature/pressure pairs legible on the property calculators. */
.ui-refresh-slice .tool-ui-form-grid--property-conditions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 1.45fr);
}

/* Humidity is a condition of the same air state, so it gets a full readable row. */
.tool-ui-page--air-density .tool-ui-field--humidity {
    grid-column: 1 / -1;
}

@media (max-width: 1199.98px) {
    .ui-refresh-slice .tool-ui-form-grid--property-conditions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .property-scope-card {
        border-radius: 13px;
    }

    .property-scope-card__header,
    .property-scope-card__grid {
        padding-right: 0.9rem;
        padding-left: 0.9rem;
    }

    .property-scope-card__grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

@media (max-width: 576px) {
    .ui-refresh-slice .tool-ui-form-grid--property-conditions {
        grid-template-columns: 1fr;
    }
}
