/* =========================================================
   PRAXIS STUDENT IT PAGE
   ========================================================= */

.student-it-page {
    --sit-burgundy: #9d2235;
    --sit-burgundy-dark: #641320;
    --sit-burgundy-deep: #360912;
    --sit-soft: #fae9ec;
    --sit-text: #202020;
    --sit-muted: #666;
    --sit-border: #dedede;
    --sit-surface: #fff;
    --sit-surface-muted: #f5f5f5;
    --sit-cream: #fff8ef;
    --sit-navy: #24395f;
    --sit-radius: 10px;
}

.student-it-page *,
.student-it-page *::before,
.student-it-page *::after {
    box-sizing: border-box;
}

.student-it-page main {
    overflow: hidden;
}

.student-it-page img {
    max-width: 100%;
}

.student-it-page .container {
    max-width: 1320px;
}

.student-it-page section[id] {
    scroll-margin-top: 115px;
}


/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */

.student-it-page .student-it-section {
    padding: 100px 0;
    background: #fff;
}

.student-it-page .student-it-muted-section {
    background: var(--sit-surface-muted);
}

.student-it-page .student-it-section-heading {
    max-width: 830px;
    margin-bottom: 40px;
}

.student-it-page .student-it-section-heading-wide {
    max-width: 980px;
}

.student-it-page .student-it-section-heading > span {
    display: block;
    margin-bottom: 11px;
    color: var(--sit-burgundy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.student-it-page .student-it-section-heading h2 {
    margin: 0;
    color: var(--sit-text);
    font-family: "Sora", "Montserrat", sans-serif;
    font-size: clamp(37px, 4vw, 53px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.18;
}

.student-it-page .student-it-section-heading h2 em {
    color: var(--sit-burgundy);
    font-style: normal;
}

.student-it-page .student-it-section-heading > p {
    max-width: 880px;
    margin: 16px 0 0;
    color: var(--sit-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.student-it-page .student-it-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.student-it-page .student-it-btn:hover {
    transform: translateY(-2px);
}

.student-it-page .student-it-btn-primary {
    color: #fff !important;
    background: var(--sit-burgundy);
    border-color: var(--sit-burgundy);
}

.student-it-page .student-it-btn-primary:hover {
    background: var(--sit-burgundy-dark);
    border-color: var(--sit-burgundy-dark);
}

.student-it-page .student-it-btn-outline-light {
    color: #fff !important;
    background: transparent;
    border-color: rgba(255,255,255,.68);
}

.student-it-page .student-it-btn-outline-light:hover {
    color: var(--sit-burgundy-dark) !important;
    background: #fff;
    border-color: #fff;
}

.student-it-page .student-it-btn-light {
    color: var(--sit-burgundy-dark) !important;
    background: #fff;
    border-color: #fff;
}


/* =========================================================
   HERO
   ========================================================= */

.student-it-page .student-it-hero {
    display: flex;
    align-items: center;
    min-height: 590px;
    padding: 150px 0 90px;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.student-it-page .student-it-hero-content {
    max-width: 900px;
}

.student-it-page .student-it-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 11px;
    color: var(--sit-burgundy);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.student-it-page .student-it-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Sora", "Montserrat", sans-serif;
    font-size: clamp(50px, 5.5vw, 76px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.student-it-page .student-it-hero h1 em {
    color: #f36b82;
    font-style: normal;
}

.student-it-page .student-it-hero p {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.75;
}

.student-it-page .student-it-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


/* =========================================================
   JUMP NAV
   ========================================================= */

.student-it-page .student-it-jump-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--sit-border);
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
}

.student-it-page .student-it-jump-links {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 67px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.student-it-page .student-it-jump-links a {
    flex: 0 0 auto;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.student-it-page .student-it-jump-links a:hover {
    color: var(--sit-burgundy);
}


/* =========================================================
   INTRO
   ========================================================= */

.student-it-page .student-it-intro-section {
    padding: 90px 0 70px;
    background: #fff;
}

.student-it-page .student-it-intro-grid {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 65px;
    align-items: start;
}

.student-it-page .student-it-intro-copy p {
    color: var(--sit-muted);
    font-size: 16px;
    line-height: 1.8;
}

.student-it-page .student-it-intro-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NOTICE
   ========================================================= */

.student-it-page .student-it-notice-section {
    padding: 0 0 90px;
    background: #fff;
}

.student-it-page .student-it-service-notice {
    display: grid;
    grid-template-columns: 74px minmax(0,1fr);
    gap: 22px;
    padding: 28px;
    background: var(--sit-cream);
    border: 1px solid #ead4b8;
    border-left: 5px solid var(--sit-burgundy);
    border-radius: 9px;
}

.student-it-page .student-it-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: #fff;
    background: var(--sit-burgundy);
    border-radius: 10px;
    font-size: 25px;
}

.student-it-page .student-it-service-notice span {
    display: block;
    margin-bottom: 7px;
    color: var(--sit-burgundy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.student-it-page .student-it-service-notice h2 {
    margin: 0 0 8px;
    color: var(--sit-text);
    font-size: 23px;
}

.student-it-page .student-it-service-notice p {
    margin: 0;
    color: var(--sit-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.student-it-page .student-it-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 15px;
}

.student-it-page .student-it-service-card {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 24px;
    color: var(--sit-text);
    background: #fff;
    border: 1px solid var(--sit-border);
    border-radius: 9px;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.student-it-page .student-it-service-card:hover {
    color: var(--sit-text);
    transform: translateY(-3px);
    border-color: #d4a4ac;
    box-shadow: 0 12px 28px rgba(0,0,0,.07);
}

.student-it-page .student-it-service-card > i {
    margin-bottom: 20px;
    color: var(--sit-burgundy);
    font-size: 25px;
}

.student-it-page .student-it-service-card h3 {
    margin: 0 0 9px;
    color: var(--sit-text);
    font-size: 18px;
    line-height: 1.4;
}

.student-it-page .student-it-service-card p {
    margin: 0;
    color: var(--sit-muted);
    font-size: 13px;
    line-height: 1.65;
}

.student-it-page .student-it-service-card > span {
    margin-top: auto;
    padding-top: 17px;
    color: var(--sit-burgundy);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   DETAIL CARDS
   ========================================================= */

.student-it-page .student-it-two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

.student-it-page .student-it-detail-card {
    padding: 31px;
    background: var(--sit-surface-muted);
    border: 1px solid var(--sit-border);
    border-radius: var(--sit-radius);
}

.student-it-page .student-it-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    color: #fff;
    background: var(--sit-burgundy);
    border-radius: 10px;
    font-size: 24px;
}

.student-it-page .student-it-detail-card h3 {
    margin: 0 0 12px;
    color: var(--sit-text);
    font-size: 24px;
}

.student-it-page .student-it-detail-card > p {
    color: var(--sit-muted);
    font-size: 14px;
    line-height: 1.75;
}

.student-it-page .student-it-check-list {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.student-it-page .student-it-check-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}

.student-it-page .student-it-check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--sit-burgundy);
    content: "✓";
    font-weight: 800;
}

.student-it-page .student-it-text-link {
    color: var(--sit-burgundy);
    font-size: 13px;
    font-weight: 800;
}

.student-it-page .student-it-text-link span {
    margin-left: 5px;
}


/* =========================================================
   SOFTWARE
   ========================================================= */

.student-it-page .student-it-software-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.student-it-page .student-it-software-card {
    padding: 27px;
    background: var(--sit-surface-muted);
    border: 1px solid var(--sit-border);
    border-radius: 9px;
}

.student-it-page .student-it-software-card > i {
    margin-bottom: 21px;
    color: var(--sit-burgundy);
    font-size: 27px;
}

.student-it-page .student-it-software-card h3 {
    margin: 0 0 10px;
    color: var(--sit-text);
    font-size: 20px;
}

.student-it-page .student-it-software-card h3 a {
    color: inherit;
    text-decoration: none;
}

.student-it-page .student-it-software-card h3 a:hover {
    color: var(--sit-burgundy);
}

.student-it-page .student-it-software-card > p {
    min-height: 70px;
    color: var(--sit-muted);
    font-size: 13px;
    line-height: 1.65;
}

.student-it-page .student-it-software-card > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.student-it-page .student-it-software-card span {
    padding: 6px 8px;
    color: var(--sit-burgundy-dark);
    background: #fff;
    border: 1px solid #e6cbd0;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   SECURITY
   ========================================================= */

.student-it-page .student-it-security-section {
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.10), transparent 35%),
        linear-gradient(135deg, var(--sit-burgundy-dark), var(--sit-burgundy-deep));
}

.student-it-page .student-it-security-section .student-it-section-heading > span {
    color: #ffc2cd;
}

.student-it-page .student-it-security-section .student-it-section-heading h2 {
    color: #fff;
}

.student-it-page .student-it-security-section .student-it-section-heading h2 em {
    color: #ff9caf;
}

.student-it-page .student-it-security-section .student-it-section-heading > p {
    color: rgba(255,255,255,.78);
}

.student-it-page .student-it-security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}

.student-it-page .student-it-security-card {
    padding: 29px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 9px;
}

.student-it-page .student-it-security-card > i {
    margin-bottom: 25px;
    color: #ffb5c2;
    font-size: 30px;
}

.student-it-page .student-it-security-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 21px;
}

.student-it-page .student-it-security-card p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.75;
}

.student-it-page .student-it-security-card a {
    display: inline-block;
    margin-top: 21px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   GET CONNECTED
   ========================================================= */

.student-it-page .student-it-connected-section {
    background: #fff;
}

.student-it-page .student-it-connected-grid {
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 60px;
    align-items: center;
}

.student-it-page .student-it-connected-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #eee;
    border-radius: var(--sit-radius);
}

.student-it-page .student-it-connected-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-it-page .student-it-video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    color: #fff !important;
    background: var(--sit-burgundy);
    border: 7px solid rgba(255,255,255,.55);
    border-radius: 50%;
    transform: translate(-50%,-50%);
}

.student-it-page .student-it-video-button:hover {
    background: var(--sit-burgundy-dark);
}

.student-it-page .student-it-connected-content > p {
    color: var(--sit-muted);
    font-size: 15px;
    line-height: 1.8;
}

.student-it-page .student-it-numbered-list {
    counter-reset: student-it-steps;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.student-it-page .student-it-numbered-list li {
    position: relative;
    min-height: 36px;
    margin-bottom: 12px;
    padding: 7px 0 7px 48px;
    color: #4c4c4c;
    font-size: 14px;
    line-height: 1.55;
}

.student-it-page .student-it-numbered-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--sit-burgundy);
    border-radius: 50%;
    content: counter(student-it-steps);
    counter-increment: student-it-steps;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   HELPDESK
   ========================================================= */

.student-it-page .student-it-help-section {
    background: var(--sit-surface-muted);
}

.student-it-page .student-it-help-grid {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 18px;
}

.student-it-page .student-it-related-card,
.student-it-page .student-it-helpdesk-card {
    padding: 32px;
    border-radius: var(--sit-radius);
}

.student-it-page .student-it-related-card {
    background: #fff;
    border: 1px solid var(--sit-border);
}

.student-it-page .student-it-related-card > span,
.student-it-page .student-it-helpdesk-card > span {
    display: block;
    margin-bottom: 10px;
    color: var(--sit-burgundy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.student-it-page .student-it-related-card h2,
.student-it-page .student-it-helpdesk-card h2 {
    margin: 0;
    color: var(--sit-text);
    font-size: 29px;
    line-height: 1.3;
}

.student-it-page .student-it-related-links {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.student-it-page .student-it-related-links a {
    display: grid;
    grid-template-columns: 28px minmax(0,1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 15px;
    color: var(--sit-text);
    background: var(--sit-surface-muted);
    border: 1px solid var(--sit-border);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.student-it-page .student-it-related-links a > i {
    color: var(--sit-burgundy);
}

.student-it-page .student-it-helpdesk-card {
    color: #fff;
    background: var(--sit-navy);
}

.student-it-page .student-it-helpdesk-card > span {
    color: #cdd8f0;
}

.student-it-page .student-it-helpdesk-card h2 {
    color: #fff;
}

.student-it-page .student-it-helpdesk-card > p {
    margin: 14px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.75;
}

.student-it-page .student-it-helpdesk-details {
    display: grid;
    gap: 17px;
    margin: 27px 0;
}

.student-it-page .student-it-helpdesk-details > div {
    display: grid;
    grid-template-columns: 24px minmax(0,1fr);
    gap: 12px;
}

.student-it-page .student-it-helpdesk-details i {
    margin-top: 4px;
    color: #fff;
}

.student-it-page .student-it-helpdesk-details p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
}

.student-it-page .student-it-helpdesk-details strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
}

.student-it-page .student-it-helpdesk-details a {
    color: #fff;
}


/* =========================================================
   FOOTER
   ========================================================= */

.student-it-page #site-footer {
    position: relative;
    clear: both;
}

.student-it-page #site-footer .footer-three,
.student-it-page footer.footer-three {
    margin-top: 0 !important;
    padding-top: 110px !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
    .student-it-page .student-it-services-grid,
    .student-it-page .student-it-software-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 991px) {
    .student-it-page .student-it-section {
        padding: 80px 0;
    }

    .student-it-page .student-it-hero {
        min-height: 530px;
        padding: 130px 0 75px;
    }

    .student-it-page .student-it-jump-nav {
        position: relative;
        top: auto;
    }

    .student-it-page .student-it-intro-grid,
    .student-it-page .student-it-connected-grid,
    .student-it-page .student-it-help-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .student-it-page .student-it-services-grid,
    .student-it-page .student-it-software-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .student-it-page .student-it-process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .student-it-page .student-it-process-card:last-child {
        grid-column: 1 / -1;
    }

    .student-it-page #site-footer .footer-three,
    .student-it-page footer.footer-three {
        padding-top: 90px !important;
    }
}

@media (max-width: 767px) {
    .student-it-page .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .student-it-page .student-it-section {
        padding: 60px 0;
    }

    .student-it-page .student-it-section-heading {
        margin-bottom: 30px;
    }

    .student-it-page .student-it-section-heading h2 {
        font-size: 31px;
    }

    .student-it-page .student-it-section-heading > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .student-it-page .student-it-hero {
        min-height: 500px;
        padding: 110px 0 60px;
    }

    .student-it-page .student-it-hero h1 {
        font-size: 40px;
    }

    .student-it-page .student-it-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .student-it-page .student-it-hero-actions {
        flex-direction: column;
    }

    .student-it-page .student-it-hero-actions .student-it-btn {
        width: 100%;
    }

    .student-it-page .student-it-intro-section {
        padding: 60px 0 45px;
    }

    .student-it-page .student-it-notice-section {
        padding-bottom: 60px;
    }

    .student-it-page .student-it-service-notice {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .student-it-page .student-it-services-grid,
    .student-it-page .student-it-two-column-grid,
    .student-it-page .student-it-process-grid,
    .student-it-page .student-it-software-grid,
    .student-it-page .student-it-security-grid {
        grid-template-columns: 1fr;
    }

    .student-it-page .student-it-process-card:last-child {
        grid-column: auto;
    }

    .student-it-page .student-it-service-card {
        min-height: 0;
    }

    .student-it-page .student-it-software-card > p {
        min-height: 0;
    }

    .student-it-page .student-it-tip-panel {
        grid-template-columns: 1fr;
    }

    .student-it-page .student-it-connected-media {
        aspect-ratio: 4 / 3;
    }

    .student-it-page .student-it-related-card,
    .student-it-page .student-it-helpdesk-card {
        padding: 24px 20px;
    }

    .student-it-page #site-footer .footer-three,
    .student-it-page footer.footer-three {
        padding-top: 70px !important;
    }
}

@media (max-width: 575px) {
    .student-it-page .student-it-hero h1 {
        font-size: 35px;
    }

    .student-it-page .student-it-jump-links {
        gap: 20px;
    }

    .student-it-page .student-it-video-button {
        width: 68px;
        height: 68px;
    }
}
