/* Students page styles.

   developer:   marionm
   requires:    framework.css
   ========================================================================== */

/* ==========================================================================
   page setup
   ========================================================================== */

html {
    color: #151515;
    font-family: 'Microsoft YaHei', 'Hiragino Sans GB', Arial, sans-serif;
}

main {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2rem;
}

/* ==========================================================================
   header
   ========================================================================== */

#header { margin-top: 2.5rem; }

#header .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    padding-bottom: 4px;
}

#header h1 {
    color: #dd1100;
    float: left;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .button {
    background: #dd1100;
    color: #fff;
    float: right;
    font-size: 1rem;
    font-weight: 400;
    margin-top: .625rem;
    padding: .5rem .8rem;
}

#header .button:hover { background: #f57300; }

/* ==========================================================================
   content
   ========================================================================== */

#content { margin: .625rem auto 3.75rem auto; }

#content .intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

#content a { color: #dd1100; }

#content a:hover { color: #f57300; }

#content hr {
    border: none;
    border-top: 1px solid #ddd;
    display: block;
}

#content hr.separator { margin: 2.5rem 0 2.5rem 0; }

#content hr.separator-with-title { margin: 2.5rem 0 -1.25rem 0; }

#content h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 1.5625rem 0 2.8125rem 0;
    text-transform: uppercase;
}

#content .cgrid.cols2 {
    column-gap: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
}

#content .cgrid.cols2 a .image { width: 68px; }

#content .cgrid.cols2 p {
    color: #393939;
    font-size: 0.875rem;
    line-height: 19px;
}

#content .cgrid.cols3 {
    column-gap: 140px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
}

#content .cgrid.cols3 img {
    border: 1px solid #ddd;
    height: auto;
    margin-bottom: 12px;
    max-width: 100%;
    width: 285px;
}

#content .cgrid h3 {
    color: #222;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
}

#content a:hover h3 { color: #f57300; }

#content .cgrid.cols3 p {
    color: #393939;
    font-size: 0.875rem;
    line-height: 22px;
    margin: 0.5em 0 0;
}

/* ==========================================================================
   responsive breakpoint styles
   ========================================================================== */

/* styles for large screens (1200px)
   ========================================================================== */

@media all and (max-width: 1200px) {
    #content .cgrid.cols3 { column-gap: 70px; }
}

/* styles for medium screens (900px)
   ========================================================================== */

@media all and (max-width: 900px) {
    #content .cgrid.cols3 { column-gap: 35px; }
}

/* styles for small screens (600px)
   ========================================================================== */

@media all and (max-width: 600px) {
    #content .cgrid.cols2,
    #content .cgrid.cols3 { grid-template-columns: 1fr; }
}

/* styles for minimum supported screen width (320px)
   ========================================================================== */

@media all and (max-width: 320px) {
}

/* printer styles
   ========================================================================== */

@media print {
}