/* OU Foundation Privacy Policy */

:root {
    --ouf-crimson: #841617;
    --ouf-lavender: #9595D2;
}

/* Base */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #292929;
    background: #f7f6f7;
}

h1 {
    font-size: 1.6rem;
}

/* Header and navigation */
.header {
    background: #ffffff;
}

.ouf-logo {
    height: auto;
}

.title-caption {
    font-weight: 300;
    font-style: normal;
    color: var(--ouf-lavender);
    font-size: 2rem;
}

.subTitle-caption {
    color: var(--ouf-crimson);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Layout regions */
.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    background: #ffffff;
}

/* Consent + policy layout */
.consent-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.show-more-link {
    cursor: pointer;
}

/* Links */
a {
    text-decoration: none !important;
    color: var(--ouf-crimson) !important;
    font-weight: 500;
}

a:focus, a:hover {
    color: var(--ouf-crimson);
}

.alert-link {
    font-weight: 700;
}

.login-button {
    min-width: 100px;
}

/* Full policy page */
.policy-page .card-body {
    padding: 2rem;
}

.policy-page h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ouf-crimson);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-page h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.policy-page p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.policy-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-page ul li {
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

/* Responsive title sizing */
@media (max-width: 767px) {
    .title-caption {
        font-size: 1.5rem;
    }

    .subTitle-caption {
        font-size: 0.9em;
    }
}

@media (min-width: 1200px) {
    .title-caption {
        font-size: 1.875em;
    }

    .subTitle-caption {
        font-size: 1.1em;
    }
}
