/* Universal deployment systems page styles.

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

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

/* variables
   ========================================================================== */

:root {
    /* colors */
    --uds-red: #dd1100;
    --uds-orange: #f77700;
    --uds-blue: #1d96bd;
    --uds-gray: #656565;
}

/* elements
   ========================================================================== */

main {
    color: var(--uds-gray);
    font-family: 'Source Sans Pro', Arial, sans-serif;
}

main hr {
    border: none;
    border-bottom: 1px solid #b7b7b7;
    height: 0;
    margin: 2.5rem 0;
    width: 100%;
}

main a { color: var(--uds-red); }

main a:hover { color: var(--uds-orange); }

main h2 {
    color: var(--uds-blue);
    font-size: 2.1875rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* classes
   ========================================================================== */

main .page-width {
    margin: 0 auto;
    max-width: calc(900px + 4rem);
    padding: 0 2rem;
}

/* grids
   ================================== */

main .two-col-grid {
    display: grid;
    gap: 2rem 3.125rem;
    grid-template-columns: 1fr 1fr;
    margin: 3rem 0;
}

main .three-col-grid {
    display: grid;
    gap: 2rem 3.125rem;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 3rem 0;
}

main .two-col-grid h3,
main .two-col-grid h4,
main .three-col-grid h3 {
    color: var(--uds-orange);
    font-weight: 600;
    margin-bottom: .5rem;
    text-transform: uppercase;
}

main .two-col-grid > a:hover h3,
main .two-col-grid > a:hover h4,
main .three-col-grid > a:hover h3 { color: var(--uds-red); }

main .two-col-grid p,
main .three-col-grid p { color: var(--uds-gray); }

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

#header {
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #ececec 100%);
    background: -ms-linear-gradient(top, #fff 0%, #ececec 100%);
    background: -o-linear-gradient(top, #fff 0%, #ececec 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #ececec));
    background: -webkit-linear-gradient(top, #fff 0%, #ececec 100%);
    background: linear-gradient(to bottom, #fff 0%, #ececec 100%);
    padding-bottom: 2rem;
}

#header a {
    background: var(--uds-blue);
    color: #fff;
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    padding: .3125rem 1.25rem;
    text-transform: uppercase;
}

#header a:hover { background: #1284a9; }

#header h1 {
    color: #000;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 3rem 0 .25rem;
}

#header h1 .tm {
    color: #c1c1c1;
    display: inline-block;
    font-size: .9375rem;
    font-weight: 200;
    margin: .25rem 0 0 .1rem;
    vertical-align: top;
}

#header p {
    font-size: 1.25rem;
    font-weight: 300;
}

/* ==========================================================================
   intro section
   ========================================================================== */

#intro p:nth-of-type(1) {
    color: var(--uds-blue);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: .5em;
}

#intro p:nth-of-type(2) {
    line-height: 1.9;
    margin-top: .5rem;
}

/* ==========================================================================
   supported deployment technologies section
   ========================================================================== */

#supported h3 {
    color: var(--uds-gray);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: .5rem;
    margin-top: 3rem;
    text-transform: uppercase;
}

#supported h3 + p {
    line-height: 1.9;
    margin-bottom: 3rem;
}

/* ==========================================================================
   deployment scenarios section
   ========================================================================== */

#scenarios img { margin-bottom: 1rem; }

/* ==========================================================================
   deployment infrastructures section
   ========================================================================== */

#infrastructures img { margin-right: 1rem; }

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

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

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

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

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

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

@media all and (max-width: 600px) {
    main .two-col-grid,
    main .three-col-grid { grid-template-columns: 1fr; }

    #header h1 { font-size: 2.25rem; }
}

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

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

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

@media print {
}