/*
Theme Name: Heritage Assessment Clean
Theme URI: https://heritageprepassessment.com
Author: Heritage Academy Preparatory School
Description: A minimal, distraction-free WordPress theme created exclusively for the Heritage Academy Preparatory School placement assessment.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: heritage-assessment-clean
*/

html {
    box-sizing: border-box;
    background: #f4f1f7;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    color: #231d2b;
    background: #f4f1f7;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #2f1267;
}

.hac-site {
    min-height: 100vh;
}

.hac-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hac-standard-page {
    width: min(920px, calc(100% - 36px));
    margin: 36px auto;
    padding: clamp(24px, 5vw, 54px);
    background: #fff;
    border-top: 5px solid #e6ad24;
    box-shadow: 0 10px 30px rgba(34, 15, 61, .12);
}

.hac-standard-page h1,
.hac-standard-page h2,
.hac-standard-page h3 {
    color: #2f1267;
}

.hac-entry-title {
    margin-top: 0;
}

.hac-skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 99999;
    padding: 10px 14px;
    color: #fff;
    background: #2f1267;
}

.hac-skip-link:focus {
    left: 8px;
}

/* Remove the automatic page title on the assessment page. */
.page-placement-assessment .hac-entry-title {
    display: none;
}

@media (max-width: 700px) {
    .hac-standard-page {
        width: 100%;
        margin: 0;
        padding: 22px 16px;
        border-top-width: 3px;
        box-shadow: none;
    }
}

