/* ===========================================
   BASE STYLES & RESETS
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2 {
    font-family: 'Inter', sans-serif;
}

/* Main content wrapper - pushes footer to bottom */
.main-content {
    flex: 1;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    text-align: center;
    padding: 20px;
    background-color: #EEF8FE;
    margin-top: auto;
}

.site-footer p {
    color: #04507E;
    font-size: 0.85rem;
    margin: 0;
}

/* Index page footer - white to match partners section */
.index-page .site-footer {
    background-color: #FFFFFF;
}

/* Technology page footer - dark blue to match details section */
.technology-page .site-footer {
    background-color: #04507E;
}

.technology-page .site-footer p {
    color: #EEF8FE;
}

/* News page footer - dark background */
.news-page .site-footer {
    background-color: #04507E;
}

.news-page .site-footer p {
    color: #EEF8FE;
}

/* ===========================================
   SVG LINE OVERLAY
   =========================================== */
#animated-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================================
   MOBILE STYLES (Default - Base)
   =========================================== */

/* --- Header Section --- */
.header-section {
    background-color: #EEF8FE;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

/* Technology page header - white background */
.technology-page .header-section {
    background-color: #EEF8FE;
}

.header-section .container {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    height: 35px;
}

.logo-link {
    display: flex;
    align-items: center;
}

/* Desktop Navigation - Hidden, using hamburger for all sizes */
.main-nav {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #04507E;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #46B3F9;
}

/* Menu Wrapper - positions the dropdown relative to hamburger */
.menu-wrapper {
    position: relative;
}

/* Hamburger Icon - CSS-based for smooth animation */
.menu-icon {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #04507E;
    border-radius: 2px;
    left: 0;
    transition: all 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
    bottom: 0;
}

/* X state when menu is open */
.menu-icon.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Overlay Menu - positioned below hamburger, doesn't affect content */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background-color: rgba(238, 248, 254, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(4, 80, 126, 0.15);
    z-index: 1000;
    min-width: 180px;
    text-align: left;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(4, 80, 126, 0.1);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #04507E;
    font-weight: 500;
    font-size: 1rem;
    display: block;
}

.mobile-nav-links a:hover {
    color: #46B3F9;
}

/* Tablet+ menu font size */
@media (min-width: 768px) {
    .mobile-nav-links a {
        font-size: 1.15rem;
    }
    
    .menu-icon {
        width: 32px;
        height: 24px;
    }
    
    .menu-icon span {
        height: 3.5px;
    }
}

/* Desktop menu font size */
@media (min-width: 1200px) {
    .mobile-nav-links a {
        font-size: 1.25rem;
    }
}

/* --- Slogan Section --- */
.slogan-section {
    background-color: #EEF8FE;
    padding: 60px 0;
}

.slogan-section .container {
    padding-left: 20vw;
}

.slogan-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #04507E;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.highlight-blue {
    color: #46B3F9;
}

.highlight-black {
    color: #000000;
}

.rectangle-bg {
    background-color: #CCCCCC;
    display: inline-block;
    position: relative;
    z-index: 10;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 2px 10px;
}

/* --- Applications Section --- */
.applications-section {
    background-color: #04507E;
    color: white;
    position: relative;
    padding: 60px 0;
}

.applications-section .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.applications-section h2 {
    max-width: 60%;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #EEF8FE;
}

.applications-intro {
    max-width: 60%;
    line-height: 1.4;
    color: #EEF8FE;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.application-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.app-text {
    font-weight: bold;
    text-align: right;
    flex: 1 1 auto;
    max-width: 70%;
    font-size: 1.0rem;
    padding-left: 40px;
    padding-right: 20px;
    margin-bottom: 1rem;
    color: #EEF8FE;
}

.app-icon {
    position: absolute;
    left: calc(72% + 20px);
    height: 50px;
    padding-left: 20px;
    margin-bottom: 1rem;
}

/* --- Partners Section --- */
.partners-section {
    background-color: white;
    padding: 60px 0;
}

.partners-section .container {
    max-width: 100%;
    padding-left: 20px;
    overflow: hidden;
}

.partners-section h2 {
    color: #46B3F9;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}

.partner-logo {
    height: 53px;
    max-width: 106px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===========================================
   TABLET STYLES (768px+)
   =========================================== */
@media (min-width: 768px) {
    /* --- Header Section --- */
    .header-section {
        padding: 25px 0;
    }

    .header-section .container {
        padding: 0 60px;
    }

    .logo {
        height: 53px;
    }

    /* --- Slogan Section --- */
    .slogan-section {
        padding: 80px 0;
    }

    .slogan-text {
        font-size: 3.5rem;
    }

    .rectangle-bg {
        border-width: 3px;
        border-radius: 20px;
        padding: 3px 20px;
    }

    /* --- Applications Section --- */
    .applications-section {
        padding: 80px 0;
    }

    .applications-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .applications-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .applications-intro {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }

    .application-item {
        margin-bottom: 2.5rem;
    }

    .app-text {
        font-size: 1.5rem;
        padding-right: 30px;
        margin-bottom: 2rem;
    }

    .app-icon {
        height: 70px;
        padding-left: 80px;
        margin-bottom: 2rem;
    }

    /* --- Partners Section --- */
    .partners-section {
        padding: 80px 0;
    }

    .partners-section .container {
        padding-left: 60px;
    }

    .partners-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .partner-logos {
        gap: 60px;
    }

    .partner-logo {
        height: 73px;
        max-width: 146px;
    }
}

/* ===========================================
   DESKTOP STYLES (1200px+)
   =========================================== */
@media (min-width: 1200px) {
    /* --- Header Section --- */
    .header-section {
        padding: 30px 0;
    }

    .header-section .container {
        padding: 0 80px;
    }

    .logo {
        height: 70px;
    }

    .menu-icon {
        font-size: 2rem;
    }

    /* --- Slogan Section --- */
    .slogan-section {
        padding: 100px 0;
    }

    .slogan-section .container {
        padding-left: 8vw;
    }

    .slogan-text {
        font-size: 5rem;
    }

    .rectangle-bg {
        border-width: 4px;
        border-radius: 25px;
        padding: 4px 25px;
    }

    /* --- Applications Section --- */
    .applications-section {
        padding: 100px 0;
    }

    .applications-section .container {
        padding-left: 200px;
        padding-right: 80px;
    }

    .applications-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .applications-intro {
        font-size: 1.7rem;
        margin-bottom: 5rem;
    }

    .application-item {
        margin-bottom: 3rem;
    }

    .app-text {
        font-size: 2rem;
        padding-right: 40px;
        margin-bottom: 2.5rem;
    }

    .app-icon {
        height: 100px;
        padding-left: 130px;
        margin-bottom: 2.5rem;
    }

    /* --- Partners Section --- */
    .partners-section {
        padding: 100px 0;
    }

    .partners-section .container {
        padding-left: 200px;
    }

    .partners-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .partner-logos {
        gap: 80px;
    }

    .partner-logo {
        height: 93px;
        max-width: 186px;
    }
}

/* ===========================================
   TECHNOLOGY PAGE STYLES
   =========================================== */

/* --- Technology Intro Section --- */
.tech-intro-section {
    background-color: #EEF8FE;
    padding: 60px 0;
}

.tech-intro-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

.tech-title {
    color: #46B3F9;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tech-description {
    color: #04507E;
    font-size: 1.0rem;
    line-height: 1.5;
}

.highlight-tech {
    color: #46B3F9;
    font-weight: bold;
}

.tech-process {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.process-arrow {
    flex: 1;
    height: 20px;
    min-width: 30px;
    margin: 0 5px;
}

.process-black {
    color: #000000;
    flex-shrink: 0;
}

.process-teal {
    color: #047E7E;
    flex-shrink: 0;
}

.process-blue {
    color: #46B3F9;
    flex-shrink: 0;
}

/* --- Technology Images --- */
.tech-images {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: center;
}

.tech-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- Technology Details Section --- */
.tech-details-section {
    background-color: #04507E;
    padding: 60px 0;
}

.tech-details-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

.tech-benefits {
    list-style: none;
    color: #EEF8FE;
    font-size: 0.9rem;
    line-height: 2;
    padding-left: 0;
}

.tech-benefits li {
    margin-bottom: 0.5rem;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

/* --- Technology Graph Container --- */
.tech-graph-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.tech-graph {
    width: 70%;
    max-width: 680px;
    height: auto;
    border-radius: 8px;
}

/* ===========================================
   TEAM PAGE STYLES
   =========================================== */
.team-page {
    background-color: #EEF8FE;
    min-height: 100vh;
}

.team-page .header-section {
    background-color: #EEF8FE;
}

.page-title-section {
    padding: 60px 0;
}

.page-title-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

.page-title {
    color: #46B3F9;
    font-weight: bold;
    font-size: 1.5rem;
}

.team-content-section {
    padding: 40px 0;
    min-height: 50vh;
}

.team-content-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Team Member Cards --- */
.team-member {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.team-member-marker {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 1px;
}

.team-headshot {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: transparent;
    margin-left: calc(5vw + 30px);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.team-headshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-info {
    flex: 1;
}

.team-name {
    color: #04507E;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.team-title-role {
    color: #46B3F9;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.bio-toggle {
    color: #04507E;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    user-select: none;
    transition: transform 0.2s ease;
}

.bio-toggle:hover {
    transform: scale(1.2);
}

.team-bio {
    color: #04507E;
    font-size: 0.8rem;
    line-height: 1.4;
    display: none;
    margin-top: 0.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.team-bio.expanded {
    display: block;
}

/* ===========================================
   CAREERS PAGE STYLES
   =========================================== */
.careers-page {
    background-color: #EEF8FE;
    min-height: 100vh;
}

.careers-title-section {
    background-color: #EEF8FE;
    padding: 40px 0 20px;
}

.careers-title {
    color: #46B3F9;
}

.careers-content-section {
    background-color: #EEF8FE;
    padding: 20px 0 60px;
    flex: 1;
}

.careers-content-section .container {
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.job-listing {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(4, 80, 126, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.job-header:hover {
    background-color: rgba(70, 179, 249, 0.1);
}

.job-title-wrapper {
    flex: 1;
}

.job-title {
    color: #04507E;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.job-location {
    color: #46B3F9;
    font-size: 0.9rem;
    margin: 0;
}

.job-toggle {
    color: #04507E;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    user-select: none;
    transition: transform 0.2s ease;
    margin-left: 15px;
}

.job-toggle:hover {
    transform: scale(1.2);
}

.job-details {
    display: none;
    padding: 0 25px 25px;
    border-top: 1px solid rgba(4, 80, 126, 0.1);
}

.job-details.expanded {
    display: block;
}

.job-section {
    margin-top: 20px;
}

.job-section h4 {
    color: #04507E;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.job-section p {
    color: #04507E;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.job-section ul {
    margin: 0;
    padding-left: 20px;
    color: #04507E;
}

.job-section ul li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.job-section a {
    color: #46B3F9;
    text-decoration: none;
}

.job-section a:hover {
    text-decoration: underline;
}

.job-eeo {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(4, 80, 126, 0.1);
}

.job-eeo p {
    color: #04507E;
    opacity: 0.7;
    font-size: 0.85rem;
}

.no-jobs-message {
    color: #04507E;
    font-size: 1.1rem;
    text-align: center;
    padding: 40px 20px;
}

/* ===========================================
   NEWS PAGE STYLES
   =========================================== */
.news-page {
    background-color: #04507E;
    min-height: 100vh;
}

.news-page .header-section {
    background-color: #EEF8FE;
}

.news-title {
    color: #EEF8FE;
}

.news-content-section {
    padding: 40px 0;
    min-height: 50vh;
}

.news-content-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* --- News Item Cards --- */
.news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.news-item-marker {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 1px;
}

.news-info {
    flex: 1;
    margin-left: calc(5vw + 30px);
}

.news-headline {
    color: #EEF8FE;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.news-date {
    font-size: 0.9rem;
    color: #46B3F9;
    margin-bottom: 0.5rem;
}

.news-text {
    color: #CCCCCC;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #46B3F9;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: #EEF8FE;
    text-decoration: underline;
}

.news-link .link-icon {
    width: 14px;
    height: 14px;
}

/* ===========================================
   CAREERS PAGE - TABLET STYLES (768px+)
   =========================================== */
@media (min-width: 768px) {
    .careers-title-section {
        padding: 60px 0 30px;
    }
    
    .careers-title {
        font-size: 3rem;
    }
    
    .careers-content-section .container {
        padding: 0 60px;
    }
    
    .job-title {
        font-size: 1.25rem;
    }
    
    .job-location {
        font-size: 1rem;
    }
    
    .job-section h4 {
        font-size: 1.1rem;
    }
    
    .job-section p,
    .job-section ul li {
        font-size: 1rem;
    }
}

/* ===========================================
   CAREERS PAGE - DESKTOP STYLES (1200px+)
   =========================================== */
@media (min-width: 1200px) {
    .careers-title-section {
        padding: 80px 0 40px;
    }
    
    .careers-title {
        font-size: 4rem;
    }
    
    .careers-content-section .container {
        max-width: 1000px;
    }
    
    .job-header {
        padding: 25px 30px;
    }
    
    .job-title {
        font-size: 1.4rem;
    }
    
    .job-details {
        padding: 0 30px 30px;
    }
}

/* ===========================================
   TECHNOLOGY PAGE - TABLET STYLES (768px+)
   =========================================== */
@media (min-width: 768px) {
    .tech-intro-section {
        padding: 80px 0;
    }

    .tech-intro-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .tech-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .tech-description {
        font-size: 1.5rem;
    }

    .tech-process {
        font-size: 1.3rem;
        margin-top: 2.5rem;
    }

    .process-arrow {
        height: 25px;
        margin: 0 8px;
    }

    .tech-images {
        gap: 3rem;
        margin-top: 4rem;
    }

    .tech-details-section {
        padding: 80px 0;
    }

    .tech-details-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .tech-benefits {
        font-size: 1.2rem;
    }

    .page-title-section {
        padding: 80px 0;
    }

    .page-title-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .page-title {
        font-size: 3.5rem;
    }

    .team-content-section .container,
    .news-content-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    /* --- Team Member Cards - Tablet --- */
    .team-headshot {
        width: 120px;
        height: 120px;
        min-width: 120px;
        margin-left: calc(5vw + 80px);
        margin-right: 20px;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-title-role {
        font-size: 1rem;
    }

    .bio-toggle {
        font-size: 1.8rem;
    }

    .team-bio {
        font-size: 0.95rem;
    }

    /* --- News Item Cards - Tablet --- */
    .news-info {
        margin-left: calc(5vw + 80px);
    }

    .news-headline {
        font-size: 1.3rem;
    }

    .news-date {
        font-size: 1.1rem;
    }

    .news-text {
        font-size: 1rem;
    }

    .news-link {
        font-size: 1rem;
    }
}

/* ===========================================
   TECHNOLOGY PAGE - DESKTOP STYLES (1200px+)
   =========================================== */
@media (min-width: 1200px) {
    .tech-intro-section {
        padding: 100px 0;
    }

    .tech-intro-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }

    .tech-title {
        font-size: 5rem;
        margin-bottom: 2.5rem;
    }

    .tech-description {
        font-size: 2rem;
    }

    .tech-process {
        font-size: 1.7rem;
        margin-top: 3rem;
    }

    .process-arrow {
        height: 30px;
        margin: 0 12px;
    }

    .tech-images {
        gap: 4rem;
        margin-top: 5rem;
    }

    .tech-details-section {
        padding: 100px 0;
    }

    .tech-details-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }

    .tech-benefits {
        font-size: 1.7rem;
    }

    .page-title-section {
        padding: 100px 0;
    }

    .page-title-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }

    .page-title {
        font-size: 5rem;
    }

    .team-content-section .container,
    .news-content-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }

    /* --- Team Member Cards - Desktop --- */
    .team-member {
        margin-bottom: 4rem;
    }

    .team-headshot {
        width: 160px;
        height: 160px;
        min-width: 160px;
        margin-left: calc(5vw + 130px);
        margin-right: 30px;
    }

    .team-name {
        font-size: 1.6rem;
    }

    .team-title-role {
        font-size: 1.2rem;
    }

    .team-bio {
        font-size: 1.1rem;
    }

    /* --- News Item Cards - Desktop --- */
    .news-item {
        margin-bottom: 4rem;
    }

    .news-info {
        margin-left: calc(5vw + 130px);
    }

    .news-headline {
        font-size: 1.6rem;
    }

    .news-date {
        font-size: 1.3rem;
    }

    .news-text {
        font-size: 1.1rem;
    }

    .news-link {
        font-size: 1.1rem;
    }

    .news-link .link-icon {
        width: 16px;
        height: 16px;
    }
}

/* ===========================================
   RESPONSIVE LINE BREAKS
   =========================================== */
/* Hide desktop breaks on mobile */
@media (max-width: 768px) {
  .desktop-break { display: none; }
}

/* Hide mobile breaks on desktop and tablet */
@media (min-width: 769px) {
  .mobile-break { display: none; }
}

/* ===========================================
   TEAM PAGE LOADING/ERROR MESSAGES
   =========================================== */
.loading-message,
.error-message {
    color: #04507E;
    text-align: center;
    padding: 2rem;
    font-size: 1rem;
}

.error-message {
    color: #c00;
}

.error-message small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}
