/**
 * Base element overrides from the original plugin.css.
 *
 * palmconcept.vn loads Bootstrap 4.0.0, then plugin.css — a 173KB bundle whose
 * first block is a *customised* Bootstrap 4.5.3 reboot. Loading second, that
 * reboot wins on every bare element. The bundle was deliberately not ported
 * (the rest of it is slick + fancybox, neither of which this theme uses), which
 * left Bootstrap 4.0.0's stock defaults showing through: bare headings came out
 * a size too large and a line too tight.
 *
 * Only the deltas are restored here, found by diffing the computed styles of
 * every bare element against the original stylesheet stack.
 *
 * Load order matters: this must come BEFORE palm-main.css, exactly as
 * plugin.css comes before main.scss.css upstream. Anything main.scss.css says
 * about these elements has to keep winning.
 */

body {
	font-weight: 600;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.4;
}

/* Bootstrap 4's scale is 2.5 / 2 / 1.75 / 1.5 / 1.25 / 1rem; the original
   flattens the top four so h1 does not tower over the body copy. */
.h1,
h1 {
	font-size: 2rem;
}

.h2,
h2 {
	font-size: 1.3rem;
}

.h3,
h3 {
	font-size: 1.2rem;
}

.h4,
h4 {
	font-size: 1.1rem;
}

.h5,
h5 {
	font-size: 1.25rem;
}

.h6,
h6 {
	font-size: 1rem;
}
