/* 2026-08-21 v1.3
 * - Included letter spacing and the general content gap in the 75-percent scale.
 * 2026-08-21 v1.2
 * - Scaled the complete visible button presentation to 75 percent.
 * - Preserved a transparent 40px minimum touch target.
 * 2026-08-21 v1.1
 * - Kept homepage CTA hit areas at the compact 40px height.
 * 2026-08-21 v1.0
 * - Added compact CTA and submit button dimensions below tablet portrait.
 */

.button:is(a, button),
button[type="submit"] {
    position:relative;
    box-sizing:border-box;
    align-items:center;
    min-height:30px;
    padding:4.125px 8.4375px;
    gap:3.75px;
    border-width:1.5px;
    font-size:11.25px;
    line-height:1.2;
    letter-spacing:1.05px;
}

.home-actions .button:is(a, button) {
    min-height:30px;
    gap:16.5px;
    font-size:11.25px;
}

.button:is(a, button)::before,
button[type="submit"]::before {
    position:absolute;
    top:50%;
    left:50%;
    width:max(100%,40px);
    height:40px;
    transform:translate(-50%,-50%);
    content:"";
}
