/* *** WARNING: This file must be edited from within the Content Manager. Any edits made via other means may be overwritten. *** */

		/* ============================================================
   NC ONE WATER - SITE-WIDE CUSTOM CSS
   ============================================================ */


/* ============================================================
   1. PROFILE GRID
   Used on Leadership, Boards, Staff, and similar profile pages.
   ============================================================ */

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 900px) {
    .profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   2. NOTIFICATION BAR
   Sticky announcement bar at the top of the page.
   ============================================================ */

.notification-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--color-secondary-dark-blue) 0%, var(--color-primary-blue) 100%);
    color: var(--white);
    padding: 12px 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.notification-bar .notification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}


/* ============================================================
   3. FULL-WIDTH HEADER WRAPPER
   Makes the top header (logo + Login/Join area) extend
   edge-to-edge while keeping content centered within 1200px.
   ============================================================ */

html body header.wrapper,
html body header#top.wrapper,
html body header.wrapper#top {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-1 * (100vw - 100%) / 2) !important;
    margin-right: calc(-1 * (100vw - 100%) / 2) !important;
    padding-left: calc((100vw - 1200px) / 2) !important;
    padding-right: calc((100vw - 1200px) / 2) !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
}

@media (max-width: 1240px) {
    html body header.wrapper,
    html body header#top.wrapper,
    html body header.wrapper#top {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}