

/* Base */
*,
*::after,
*::before {
    box-sizing: border-box;
}


body {
    background-color: var(--color-white);
    margin: 0;
    color: var(--color-secondary-black);
	background-color:  #F1EBE2;;
    font-family:  'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
	font-size: var(--line-height-body-m);
	font-weight:var(--font-weight-regular);

    @media screen and (max-width: 768px) {
		font-size: 16px;
		font-weight: 300;
    }
}

/* New-UI (non-admin) branch bg — base.ftlh applies class="new-ui" to <body>
   only inside the newUI branch, so admin/MainManager/Transit pages keep the
   legacy beige (#F1EBE2). */
body.new-ui {
	background-color: var(--bg-page);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

ul {
    list-style-type: none;
    
}
li{
	list-style-type: none;
	display: list-item;
	unicode-bidi: isolate;
}


a {
    display: inline-block;
}

img{
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

address {
    font-style: normal;
}

