.owl-carousel,
.owl-carousel .owl-stage-outer {
    touch-action: pan-y;
}

/* CNCC frontend enhancements — news listing, article detail, pagination */

.cncc-news-toolbar {
    display: flex;
    justify-content: flex-end;
    margin: 8px 0 18px;
}

.cncc-news-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 380px;
    border: 1px solid #d7e3ec;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.cncc-news-search input[type="search"] {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 10px 12px;
    color: #575756;
    background: transparent;
}

.cncc-news-search input[type="search"]:focus {
    outline: none;
}

.cncc-news-search__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    color: #808080;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}

.cncc-news-search__clear:hover {
    color: #0087d7;
}

.cncc-news-search button {
    width: 46px;
    border: 0;
    background: #0087d7;
    color: #fff;
    cursor: pointer;
}

.cncc-news-search button:hover {
    background: #006bb0;
}

.cncc-news-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 10px 0 30px;
}

.cncc-news-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cncc-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 87, 215, 0.12);
}

.cncc-news-card__media {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    background: #f4f8fb;
}

.cncc-news-card__media-link {
    display: block;
    height: 100%;
}

.cncc-news-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cncc-news-card__body {
    flex: 1 1 0;
    padding: 22px 24px 24px;
    min-width: 0;
}

.cncc-news-card__date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0087d7;
    margin-bottom: 10px;
}

.cncc-news-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.cncc-news-card__title a {
    color: #575756;
    text-decoration: none;
}

.cncc-news-card__title a:hover {
    color: #0087d7;
}

.cncc-news-card__excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.cncc-news-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cncc-news-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0087d7;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.cncc-news-card__read-more:hover {
    background: #006bb0;
    color: #fff !important;
}

.cncc-news-empty {
    text-align: center;
    padding: 48px 20px;
    color: #808080;
    font-size: 18px;
}

.cncc-pagination {
    display: flex;
    justify-content: center;
    margin: 10px 0 40px;
}

.cncc-pagination .pagination {
    margin: 0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.cncc-pagination .pagination > li > a,
.cncc-pagination .pagination > li > span {
    border: none;
    color: #575756;
    padding: 10px 15px;
    background: #fff;
}

.cncc-pagination .pagination > li > a:hover,
.cncc-pagination .pagination > li > a.current-page {
    background: #0087d7;
    color: #fff;
}

.cncc-mission-page {
    padding: 60px 0 72px;
}

.cncc-mission-page > .container > .single_title {
    margin: 0 0 28px;
    padding-bottom: 12px;
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #575756;
    border-bottom: 1px solid #e8eef3;
}

.cncc-mission-item {
    padding: 22px 0;
    border-bottom: 1px solid #eef2f5;
}

.cncc-mission-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cncc-mission-item__body {
    min-width: 0;
}

.cncc-mission-item__title {
    margin: 0 0 10px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #575756;
}

.cncc-mission-item__media {
    margin: 0 0 14px;
}

.cncc-mission-item__media img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cncc-mission-item__content,
.cncc-mission-item__content p,
.cncc-mission-item__content li,
.cncc-mission-item__content a {
    color: #59595b;
}

.cncc-mission-item__content p {
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.7;
    color: #59595b;
    font-size: 16px;
}

.cncc-mission-item__content p:last-child {
    margin-bottom: 0;
}

.cncc-mission-item__content ul,
.cncc-mission-item__content ol {
    margin: 0 0 10px;
    padding-left: 20px;
}

.cncc-mission-item__content li {
    margin-bottom: 6px;
    line-height: 1.65;
    color: #59595b;
}

.cncc-mission-item__content a {
    color: #0087d7;
}

.cncc-mission-page__empty {
    margin: 0;
    text-align: center;
    color: #808080;
    font-size: 18px;
}

@media (max-width: 767px) {
    .cncc-mission-item {
        padding: 18px 0;
    }

    .cncc-mission-item__title {
        font-size: 18px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.cncc-about-tight {
    padding: 72px 0;
}

.cncc-about-tight .our_about_left_content {
    padding-top: 0;
}

.cncc-about-tight .our_about_left_content .single_title {
    padding-bottom: 18px;
}

.cncc-about-tight .our_about_left_content p {
    line-height: 1.7;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.cncc-history-page .our_about_left_content a {
    color: #0087d7;
}

.cncc-coming-soon {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.cncc-coming-soon__text {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #575756;
    font-family: "Roboto", sans-serif;
}

.cncc-article-hero {
    margin-bottom: 28px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f8fb;
}

.cncc-article-hero img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cncc-article-meta {
    margin-bottom: 18px;
    color: #808080;
    font-size: 14px;
}

.cncc-article-share {
    display: flex;
    justify-content: flex-end;
    margin: 24px 0 32px;
}

.cncc-article-share .cncc-share {
    margin: 0;
    justify-content: flex-end;
}

.cncc-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 18px;
}

.cncc-share__label {
    font-size: 13px;
    font-weight: 700;
    color: #575756;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cncc-share__btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    background: #808080;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cncc-share__btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #fff !important;
}

.cncc-share__btn--facebook { background: #1877f2; }
.cncc-share__btn--twitter { background: #111; }
.cncc-share__x {
    width: 14px;
    height: 14px;
    display: block;
}
.cncc-share--compact .cncc-share__x {
    width: 12px;
    height: 12px;
}
.cncc-share__btn--linkedin { background: #0a66c2; }
.cncc-share__btn--whatsapp { background: #25d366; }
.cncc-share__btn--email { background: #0087d7; }
.cncc-share__btn--copy { background: #575756; cursor: pointer; }
.cncc-share__btn--copy.is-copied { background: #2e7d32; }

.cncc-share--compact {
    margin: 0;
}

.cncc-share--compact .cncc-share__btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.cncc-seminar__header {
    margin-bottom: 18px;
}

.cncc-seminar__eyebrow {
    margin: 0 0 4px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-seminar__header h2 {
    margin: 0;
    color: #575756;
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.cncc-year-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.cncc-year-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cncc-year-picker__label {
    font-weight: 700;
    color: #575756;
}

.cncc-year-picker__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 132px;
    padding: 8px 14px;
    border: 1px solid #d7e3ec;
    border-radius: 8px;
    background: #fff;
    color: #575756;
    font-weight: 700;
    cursor: pointer;
}

.cncc-year-picker.is-open .cncc-year-picker__toggle,
.cncc-year-picker__toggle:hover,
.cncc-year-picker__toggle:focus {
    border-color: #0087d7;
    outline: none;
}

.cncc-year-picker__toggle .fa-calendar {
    color: #0087d7;
}

.cncc-year-picker__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: 248px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 87, 215, 0.12);
}

.cncc-year-picker__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cncc-year-picker__range {
    font-weight: 700;
    color: #575756;
}

.cncc-year-picker__nav-btn {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #f4f8fb;
    color: #0087d7;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.cncc-year-picker__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.cncc-year-picker__year {
    padding: 8px 0;
    border: 0;
    border-radius: 6px;
    background: #f4f8fb;
    color: #575756;
    font-weight: 700;
    cursor: pointer;
}

.cncc-year-picker__year.is-today {
    box-shadow: inset 0 0 0 1px #0087d7;
}

.cncc-year-picker__year.is-selected,
.cncc-year-picker__year:hover:not(:disabled) {
    background: #0087d7;
    color: #fff;
}

.cncc-year-picker__year:disabled {
    opacity: 0.35;
    cursor: default;
}

.cncc-seminar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cncc-seminar-card {
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    padding: 18px 20px 16px;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.06);
}

.cncc-seminar-card__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.cncc-seminar-card__top h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    color: #575756;
}

.cncc-seminar-card__status {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.cncc-seminar-card__status.is-open {
    background: rgba(0, 135, 215, 0.12);
    color: #0087d7;
}

.cncc-seminar-card__status.is-closed {
    background: #f3f3f3;
    color: #808080;
}

.cncc-seminar-card__meta {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    color: #666;
}

.cncc-seminar-card__meta li {
    margin-bottom: 6px;
}

.cncc-seminar-card__meta i {
    color: #0087d7;
    width: 16px;
    margin-right: 6px;
}

.cncc-seminar-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.cncc-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f8fb;
    color: #0087d7 !important;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
}

.cncc-doc-btn:hover {
    background: #e6f3fb;
}

.cncc-doc-btn--primary {
    background: #0087d7;
    color: #fff !important;
}

.cncc-doc-btn--primary:hover {
    background: #006bb0;
    color: #fff !important;
}

.cncc-empty {
    text-align: center;
    color: #808080;
    padding: 28px 12px;
}

.cncc-pub-tabs {
    border: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px !important;
}

.cncc-pub-tabs > li {
    float: none !important;
    margin: 0 !important;
}

.cncc-pub-tabs > li > a {
    border: 0 !important;
    border-radius: 999px !important;
    background: #f4f8fb !important;
    color: #575756 !important;
    padding: 9px 14px !important;
    font-weight: 700;
}

.cncc-pub-tabs > li.active > a,
.cncc-pub-tabs > li > a:hover {
    background: #0087d7 !important;
    color: #fff !important;
}

.cncc-pub-panes {
    padding: 0 !important;
}

.cncc-pub-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cncc-pub-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.06);
}

.cncc-pub-card__cover {
    flex: 0 0 140px;
    background: #f4f8fb;
}

.cncc-pub-card__cover img {
    width: 140px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.cncc-pub-card__body {
    padding: 16px 16px 16px 0;
    min-width: 0;
}

.cncc-pub-card__body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #575756;
    line-height: 1.35;
}

.cncc-pub-card__period {
    margin: 0 0 8px;
    color: #0087d7;
    font-weight: 600;
    font-size: 13px;
}

.cncc-pub-card__excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .cncc-pub-card {
        flex-direction: column;
    }

    .cncc-pub-card__cover,
    .cncc-pub-card__cover img {
        width: 100%;
        height: 200px;
        flex-basis: auto;
    }

    .cncc-pub-card__body {
        padding: 0 16px 16px;
    }

    .cncc-seminar-card__top {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .cncc-news-card__media {
        flex: 0 0 34%;
        max-width: 34%;
    }

    .cncc-news-card__image {
        height: 100%;
        min-height: 240px;
    }

    .cncc-news-card__body {
        flex: 0 0 66%;
        max-width: 66%;
    }
}

/* Banner left title — h1 used on news/article pages */
.banner_area .pull-left h1,
.banner_area .pull-left h2 {
    font-size: 45px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #ffffff;
}

@media (max-width: 480px) {
    .banner_area .pull-left h1,
    .banner_area .pull-left h2 {
        font-size: 38px;
    }
}

.cncc-service-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.cncc-service-page .service_details_inner {
    max-width: 960px;
    margin: 0 auto;
}

.service_details_inner .service_d_image_text > img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.service_details_inner .service_d_image_text .cncc-richtext img,
.cncc-service-page .cncc-richtext img {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    display: inline-block;
    vertical-align: middle;
}

.service_details_inner .service_d_image_text .cncc-richtext p {
    font-size: 16px;
    line-height: 1.7;
    padding-bottom: 0;
}

div.bhoechie-tab-menu div.list-group > a .glyphicon,
div.bhoechie-tab-menu div.list-group > a .fa {
    color: #0087d7;
}

div.bhoechie-tab-menu div.list-group > a:hover,
div.bhoechie-tab-menu div.list-group > a:hover .glyphicon,
div.bhoechie-tab-menu div.list-group > a:hover .fa,
div.bhoechie-tab-menu div.list-group > a.active,
div.bhoechie-tab-menu div.list-group > a.active .glyphicon,
div.bhoechie-tab-menu div.list-group > a.active .fa {
    background-color: #0087d7 !important;
    background-image: none !important;
    color: #fff !important;
}

div.bhoechie-tab-menu div.list-group > a.active:after {
    border-left-color: #0087d7 !important;
}

/* Documentation centre service page */
.cncc-doc-centre__header {
    margin-bottom: 22px;
}

.cncc-doc-centre__eyebrow {
    margin: 0 0 4px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-doc-centre__header h2 {
    margin: 0;
    color: #575756;
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.cncc-doc-centre__hero {
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f8fb;
}

.cncc-doc-centre__hero img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.cncc-doc-centre__body {
    color: #59595b;
    font-size: 16px;
    line-height: 1.75;
}

.cncc-doc-centre__body p {
    margin: 0 0 18px;
    text-align: justify;
}

.cncc-doc-centre__body p:last-child {
    margin-bottom: 0;
}

.cncc-doc-centre__gallery {
    margin: 8px 0 18px;
}

.cncc-doc-centre__gallery-item {
    margin-bottom: 16px;
}

.cncc-doc-centre__gallery-item img {
    display: block;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cncc-doc-centre__cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8eef3;
    text-align: center;
}

.cncc-doc-centre__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    border-radius: 999px;
}

.cncc-header-brand {
    display: flex;
    align-items: center;
    float: left;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
}

.cncc-header-logo {
    flex: 0 0 auto;
    line-height: 0;
}

.cncc-header-logo img {
    display: block;
    height: 52px;
    width: auto;
}

.header-company-name {
    flex: 1 1 auto;
    min-width: 0;
}

@media (min-width: 768px) {
    .cncc-header-logo img {
        height: 72px;
    }
}

@media (min-width: 992px) {
    .cncc-header-logo img {
        height: 85px;
    }
}

/* Menu + social: one row on desktop, social pinned right */
.main_menu_area .navbar.navbar-default {
    min-height: 0;
}

@media (min-width: 1200px) {
    .main_menu_area .navbar.navbar-default .nav.navbar-nav {
        margin-left: 0;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav li {
        margin-right: 0;
    }
}

.main_menu_area .cncc-menu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.main_menu_area .cncc-menu-row > .navbar-header {
    float: none;
    margin: 0;
}

.main_menu_area .cncc-nav-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 3;
}

.cncc-nav-meta__lang,
.cncc-nav-meta__social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cncc-nav-meta__lang {
    gap: 4px;
}

.cncc-nav-meta__lang a,
.cncc-nav-meta__social a {
    color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    font-size: 12px;
    font-weight: 700;
}

.cncc-nav-meta__social a {
    font-size: 14px;
}

.cncc-nav-meta__social a.nav-social-x {
    line-height: 1 !important;
}

.cncc-nav-meta__sep {
    color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 1200px) {
    .main_menu_area .navbar-header {
        display: none;
    }

    .main_menu_area .container.cncc-menu-row {
        width: 100%;
        max-width: 1340px;
    }

    .main_menu_area .cncc-menu-row {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .main_menu_area .cncc-menu-row > .navbar-collapse {
        order: 1;
        display: flex !important;
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        height: auto !important;
        overflow: visible !important;
        margin: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        float: none;
        margin: 0;
        width: auto;
        max-width: 100%;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li {
        float: none;
        margin-right: 0;
        flex: 0 0 auto;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li > a {
        line-height: 52px;
        font-size: 11px;
        letter-spacing: 0.01em;
        padding: 0 7px;
        white-space: nowrap;
    }

    .main_menu_area .cncc-nav-tools {
        order: 2;
        height: 52px;
        padding-left: 8px;
        margin-left: auto;
        gap: 8px;
    }

    .cncc-nav-meta__lang a,
    .cncc-nav-meta__social a {
        min-width: 18px;
        min-height: 18px;
    }

    .cncc-nav-meta__social a {
        font-size: 13px;
    }

    .cncc-nav-meta__social a.nav-social-x .fa-x-icon {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 1400px) {
    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li > a {
        font-size: 14px;
        line-height: 58px;
        padding: 0 9px;
    }

    .main_menu_area .cncc-nav-tools {
        height: 58px;
        padding-left: 12px;
        gap: 10px;
    }
}

@media (min-width: 1600px) {
    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li > a {
        font-size: 13px;
        line-height: 64px;
        padding: 0 11px;
    }

    .main_menu_area .cncc-nav-tools {
        height: 64px;
        padding-left: 16px;
        gap: 12px;
    }

    .cncc-nav-meta__social a {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .main_menu_area .navbar-header {
        order: 1;
        float: none;
        display: flex;
        align-items: center;
    }

    .main_menu_area .navbar.navbar-default .navbar-header .navbar-toggle {
        display: block;
        float: none;
        margin: 12px 0;
    }

    .main_menu_area .navbar.navbar-default .navbar-header .navbar-toggle .icon-bar {
        background: #fff;
    }

    .main_menu_area .cncc-nav-tools {
        order: 2;
        height: 50px;
    }

    .cncc-nav-meta__lang {
        gap: 2px;
    }

    .cncc-nav-meta__lang a,
    .cncc-nav-meta__sep {
        font-size: 16px;
        min-width: 0;
        min-height: 24px;
        padding: 0;
    }

    .cncc-nav-meta__social a {
        font-size: 16px;
        min-width: 24px;
        min-height: 24px;
    }

    .cncc-nav-meta__social a.nav-social-x .fa-x-icon {
        width: 16px;
        height: 16px;
    }

    .main_menu_area .cncc-menu-row > .navbar-collapse {
        order: 3;
        flex: 1 0 100%;
        width: 100%;
        max-height: none;
        margin: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .main_menu_area .navbar.navbar-default .navbar-collapse.collapse {
        display: none !important;
    }

    .main_menu_area .navbar.navbar-default .navbar-collapse.collapse.in,
    .main_menu_area .navbar.navbar-default .navbar-collapse.collapsing {
        display: block !important;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav {
        display: block;
        float: none;
        width: 100%;
        margin: 0;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li {
        float: none;
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li > a {
        line-height: 42px;
        padding: 0 4px;
        white-space: normal;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li.submenu > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav > li.submenu > a .fa {
        float: none;
        margin: 0;
    }

    .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        box-shadow: none;
        border: 0;
        background: rgba(0, 0, 0, 0.2);
    }
}

.main_menu_area .navbar.navbar-default .nav.navbar-nav > li.active > a,
.main_menu_area .navbar.navbar-default .nav.navbar-nav > li.active > a:hover,
.main_menu_area .navbar.navbar-default .nav.navbar-nav > li.active > a:focus {
    color: #0087d7;
    background: transparent;
}

.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li.active > a,
.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li.active > a:hover,
.main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li.active > a:focus {
    color: #0087d7;
    background: #f4f8fb;
}

@media (max-width: 1199px) {
    .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li.active > a,
    .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li.active > a:hover,
    .main_menu_area .navbar.navbar-default .nav.navbar-nav li.submenu ul li.active > a:focus {
        color: #0087d7;
        background: rgba(0, 135, 215, 0.12);
    }
}

/* Contact page */
.cncc-contact {
    padding: 70px 0 80px;
    background: #f8fafc;
}

.cncc-contact__intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.cncc-contact__eyebrow {
    margin: 0 0 6px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-contact__intro h2 {
    margin: 0 0 12px;
    color: #575756;
    font-size: 32px;
    font-weight: 700;
}

.cncc-contact__lead {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.cncc-contact__offices {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cncc-contact__offices > .cncc-contact__col {
    display: flex;
    margin-bottom: 24px;
}

.cncc-contact-card.panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.05);
}

.cncc-contact-card__heading {
    background: #0087d7 !important;
    border-bottom: 1px solid #0087d7 !important;
    border-radius: 0 !important;
    padding: 14px 18px !important;
}

.cncc-contact-card__heading .panel-title {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.cncc-contact-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px !important;
}

.cncc-contact-card__body p {
    margin: 0 0 14px;
    color: #666;
    line-height: 1.65;
    flex: 1 1 auto;
}

.cncc-contact-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
}

.cncc-contact-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #575756;
    line-height: 1.5;
}

.cncc-contact-card__meta li:last-child {
    margin-bottom: 0;
}

.cncc-contact-card__meta i {
    color: #0087d7;
    margin-top: 3px;
    flex-shrink: 0;
}

.cncc-contact-card__meta a {
    color: #0087d7;
    word-break: break-word;
}

.cncc-contact__main {
    margin-top: 8px;
}

.cncc-contact-panel {
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.05);
}

.cncc-contact-panel__header {
    margin-bottom: 18px;
}

.cncc-contact-panel__header h3 {
    margin: 0;
    color: #575756;
    font-size: 24px;
    font-weight: 700;
}

.cncc-contact-panel__result {
    min-height: 0;
    margin-bottom: 12px;
    color: #2e7d32;
    font-weight: 600;
}

.cncc-contact-form .form-control {
    border: 1px solid #dbe4ec;
    border-radius: 8px;
    box-shadow: none;
    min-height: 46px;
}

.cncc-contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.cncc-contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: #0087d7;
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    transition: background 0.2s ease;
}

.cncc-contact-form__submit:hover {
    background: #006bb0;
    color: #fff;
}

.cncc-contact-panel--map .cncc-map {
    height: 420px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8eef3;
}

.cncc-map-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px 0 0;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 135, 215, 0.12), rgba(0, 135, 215, 0.04));
    border: 1px solid rgba(0, 135, 215, 0.28);
    color: #0087d7;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 135, 215, 0.12);
    transform-origin: center;
    animation: cncc-map-hint-zoom 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cncc-map-hint__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #0087d7;
    color: #fff;
    font-size: 14px;
    animation: cncc-map-hint-pulse 1.8s ease-in-out 0.7s infinite;
}

.cncc-map-hint__text {
    color: #575756;
}

@keyframes cncc-map-hint-zoom {
    0% {
        opacity: 0;
        transform: scale(0.72);
    }
    70% {
        opacity: 1;
        transform: scale(1.04);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cncc-map-hint-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 135, 215, 0.35);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(0, 135, 215, 0);
    }
}

@media (max-width: 991px) {
    .cncc-contact-panel {
        margin-bottom: 24px;
    }

    .cncc-contact-panel--map .cncc-map {
        height: 340px;
    }
}

/* Realisations */
.cncc-realisation {
    padding: 70px 0 80px;
    background: #f8fafc;
}

.cncc-realisation__panel {
    background: #ffffff;
    border: 1px solid #e8eef3;
    border-radius: 12px;
    padding: 28px 28px 32px;
    box-shadow: 0 2px 14px rgba(0, 87, 215, 0.05);
    overflow: hidden;
}

.cncc-realisation__intro-content {
    margin: 0 0 22px;
}

.cncc-realisation-accordion {
    margin: 0;
}

.cncc-realisation-accordion .panel {
    background: transparent;
    box-shadow: none;
}

.cncc-realisation-accordion__panel {
    margin: 0 0 12px;
    border: 1px solid #d9e6f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.cncc-realisation-accordion__panel:last-child {
    margin-bottom: 0;
}

.cncc-realisation-accordion .panel-heading {
    padding: 0;
    background: #f4f8fb;
    border: 0;
    border-radius: 0;
}

.cncc-realisation-accordion__title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.cncc-realisation-accordion__title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    color: #1a2b3c;
    text-decoration: none !important;
}

.cncc-realisation-accordion__title a:hover,
.cncc-realisation-accordion__title a:focus {
    color: #0087d7;
}

.cncc-realisation-accordion__title a i {
    flex: 0 0 auto;
    color: #0087d7;
    transition: transform 0.2s ease;
}

.cncc-realisation-accordion__title a:not(.collapsed) i,
.cncc-realisation-accordion__panel.is-open .cncc-realisation-accordion__title a i {
    transform: rotate(180deg);
}

.cncc-realisation-accordion__panel.is-open .panel-heading,
.cncc-realisation-accordion__title a:not(.collapsed) {
    background: #eaf4fb;
}

.cncc-realisation-accordion__body {
    padding: 18px 20px 22px;
    border-top: 1px solid #e6eef4;
}

.cncc-realisation-accordion__panel.is-open > .panel-collapse.collapse {
    display: block;
    height: auto !important;
}

.cncc-realisation-accordion__body .cncc-realisation-carousel,
.cncc-realisation-accordion__body .cncc-realisation__hero {
    margin-bottom: 16px;
}

.cncc-realisation__intro {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.cncc-realisation__eyebrow {
    margin: 0 0 8px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-realisation__title {
    margin: 0 0 14px;
    color: #575756;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.cncc-realisation__coming-soon {
    min-height: 220px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #808080;
    font-family: "Roboto", sans-serif;
}

.cncc-realisation__lead {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.cncc-realisation__hero {
    margin: 0 0 22px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f8fb;
}

.cncc-realisation__hero img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.cncc-realisation-carousel {
    position: relative;
    margin: 0 0 22px;
    border-radius: 10px;
    overflow: hidden;
    background: #0f1c2a;
}

.cncc-realisation-carousel .owl-stage-outer {
    border-radius: 10px;
}

.cncc-realisation-carousel__item {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f1c2a;
}

.cncc-realisation-carousel__item img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

/* Full-bleed overlay so prev/next can sit mid-left / mid-right */
.cncc-realisation-carousel .owl-nav {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none;
    z-index: 6;
    text-align: left !important;
}

.cncc-realisation-carousel .owl-nav .owl-prev,
.cncc-realisation-carousel .owl-nav .owl-next,
.cncc-realisation-carousel .owl-nav button.owl-prev,
.cncc-realisation-carousel .owl-nav button.owl-next,
.cncc-realisation-carousel .owl-nav div.owl-prev,
.cncc-realisation-carousel .owl-nav div.owl-next {
    pointer-events: auto;
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    z-index: 7;
    display: flex !important;
    align-items: center;
    justify-content: center;
    float: none !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 0 !important;
    line-height: 1 !important;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cncc-realisation-carousel .owl-nav .owl-prev,
.cncc-realisation-carousel .owl-nav button.owl-prev,
.cncc-realisation-carousel .owl-nav div.owl-prev {
    left: 12px !important;
    right: auto !important;
}

.cncc-realisation-carousel .owl-nav .owl-next,
.cncc-realisation-carousel .owl-nav button.owl-next,
.cncc-realisation-carousel .owl-nav div.owl-next {
    right: 12px !important;
    left: auto !important;
}

.cncc-realisation-carousel .owl-nav .owl-prev:hover,
.cncc-realisation-carousel .owl-nav .owl-next:hover,
.cncc-realisation-carousel .owl-nav .owl-prev:focus,
.cncc-realisation-carousel .owl-nav .owl-next:focus,
.cncc-realisation-carousel .owl-nav button.owl-prev:hover,
.cncc-realisation-carousel .owl-nav button.owl-next:hover,
.cncc-realisation-carousel .owl-nav button.owl-prev:focus,
.cncc-realisation-carousel .owl-nav button.owl-next:focus {
    background: transparent !important;
    border: 0 !important;
    color: #fff !important;
    opacity: 0.85 !important;
    -webkit-transform: translateY(-50%) scale(1.08) !important;
    -ms-transform: translateY(-50%) scale(1.08) !important;
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: none !important;
}

.cncc-realisation-carousel .owl-nav .owl-prev i,
.cncc-realisation-carousel .owl-nav .owl-next i,
.cncc-realisation-carousel .owl-nav button.owl-prev i,
.cncc-realisation-carousel .owl-nav button.owl-next i,
.cncc-realisation-carousel .owl-nav div.owl-prev i,
.cncc-realisation-carousel .owl-nav div.owl-next i {
    font-size: 32px !important;
    line-height: 1 !important;
    color: #fff !important;
    display: block;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
    margin: 0 !important;
}

.cncc-realisation-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    text-align: center;
    z-index: 5;
}

.cncc-realisation-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 4px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.cncc-realisation-carousel .owl-dot.active span {
    background: #0087d7;
}

@media (max-width: 767px) {
    .cncc-realisation-carousel .owl-nav .owl-prev,
    .cncc-realisation-carousel .owl-nav .owl-next,
    .cncc-realisation-carousel .owl-nav button.owl-prev,
    .cncc-realisation-carousel .owl-nav button.owl-next,
    .cncc-realisation-carousel .owl-nav div.owl-prev,
    .cncc-realisation-carousel .owl-nav div.owl-next {
        width: 40px !important;
        height: 40px !important;
    }

    .cncc-realisation-carousel .owl-nav .owl-prev,
    .cncc-realisation-carousel .owl-nav button.owl-prev,
    .cncc-realisation-carousel .owl-nav div.owl-prev {
        left: 6px !important;
    }

    .cncc-realisation-carousel .owl-nav .owl-next,
    .cncc-realisation-carousel .owl-nav button.owl-next,
    .cncc-realisation-carousel .owl-nav div.owl-next {
        right: 6px !important;
    }

    .cncc-realisation-carousel .owl-nav .owl-prev i,
    .cncc-realisation-carousel .owl-nav .owl-next i {
        font-size: 26px !important;
    }
}

.cncc-realisation__contact {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: 22px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid #e6eef4;
}

.cncc-realisation__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #59595b;
    font-size: 15px;
    line-height: 1.4;
}

.cncc-realisation__contact-item i {
    width: 18px;
    text-align: center;
    color: #0087d7;
    font-size: 16px;
}

.cncc-realisation__contact-item a {
    color: #0087d7;
    word-break: break-word;
}

.cncc-realisation__contact-item a:hover,
.cncc-realisation__contact-item a:focus {
    color: #0069a8;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cncc-realisation-carousel__item {
        aspect-ratio: 4 / 3;
    }

    .cncc-realisation__contact {
        flex-direction: column;
        gap: 10px;
    }
}

.cncc-realisation__body {
    color: #59595b;
    font-size: 16px;
    line-height: 1.75;
    overflow: hidden;
    max-width: 100%;
    text-align: justify;
}

.cncc-realisation__body p {
    margin: 0 0 16px;
    max-width: 100%;
}

.cncc-realisation__body p:last-child {
    margin-bottom: 0;
}

.cncc-realisation__body a {
    color: #0087d7;
    font-weight: 600;
    word-break: break-word;
}

.cncc-realisation__body table {
    max-width: 100%;
}

.cncc-realisation__body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cncc-realisation__panel--article {
    max-width: 1100px;
    margin: 0 auto;
}

.cncc-realisation__split {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.cncc-realisation__split--right {
    flex-direction: row-reverse;
}

.cncc-realisation__split-media {
    flex: 0 0 42%;
    max-width: 450px;
    width: 42%;
}

.cncc-realisation__split-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    float: none !important;
    margin: 0 !important;
    border-radius: 10px;
    background: #f4f8fb;
    object-fit: contain;
    object-position: top center;
}

.cncc-realisation__split-copy {
    flex: 1 1 auto;
    min-width: 0;
}

/* Side-by-side photos (float left/right in editor) keep original layout */
.cncc-realisation__body img[style*="float:left"],
.cncc-realisation__body img[style*="float: left"] {
    float: left;
    display: inline;
    width: auto;
    max-width: min(100%, 448px);
    margin: 10px 20px 10px 0;
}

.cncc-realisation__body img[style*="float:right"],
.cncc-realisation__body img[style*="float: right"] {
    float: right;
    display: inline;
    width: auto;
    max-width: min(100%, 448px);
    margin: 10px 0 10px 20px;
}

/* Full-width only when the photo is alone in its paragraph */
.cncc-realisation__body p > img:only-child {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    float: none;
    border-radius: 10px;
    object-fit: cover;
    background: #f4f8fb;
}

.cncc-realisation__body p:has(> img:only-child) {
    margin-bottom: 22px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f8fb;
}

@media (max-width: 767px) {
    .cncc-realisation__split,
    .cncc-realisation__split--right {
        flex-direction: column;
    }

    .cncc-realisation__split-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

.cncc-realisation__body ul,
.cncc-realisation__missions ul {
    margin: 0 0 18px;
    padding-left: 1.25em;
}

.cncc-realisation__body li,
.cncc-realisation__missions li {
    margin-bottom: 8px;
}

.cncc-realisation__offices {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.cncc-realisation__col {
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.cncc-realisation-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #e8eef3;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.05);
}

.cncc-realisation-card__heading {
    background: #0087d7;
    padding: 14px 18px;
}

.cncc-realisation-card__heading h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.cncc-realisation-card__since {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cncc-realisation-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.cncc-realisation-card__body p {
    margin: 0 0 14px;
    color: #575756;
    line-height: 1.55;
}

.cncc-realisation-card__address {
    margin-bottom: 14px;
    color: #575756;
    line-height: 1.55;
}

.cncc-realisation-card__address p {
    margin: 0 0 8px;
}

.cncc-realisation-card__address p:last-child {
    margin-bottom: 0;
}

.cncc-realisation__body--lead {
    text-align: left;
    max-width: 820px;
    margin: 0 auto;
}

.cncc-realisation__body--lead ul {
    text-align: left;
}

.cncc-realisation-card__meta {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
}

.cncc-realisation-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.cncc-realisation-card__meta li:last-child {
    margin-bottom: 0;
}

.cncc-realisation-card__meta i {
    margin-top: 3px;
    color: #0087d7;
}

.cncc-realisation-card__meta a {
    color: #0087d7;
    word-break: break-all;
}

.cncc-realisation__missions {
    margin-top: 8px;
    padding: 22px 24px;
    border-radius: 10px;
    background: #f4f8fb;
    border: 1px solid #e8eef3;
}

.cncc-realisation__missions h3 {
    margin: 0 0 12px;
    color: #575756;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .cncc-realisation {
        padding: 40px 0 50px;
    }

    .cncc-realisation__panel {
        padding: 20px 16px 24px;
    }

    .cncc-realisation__title {
        font-size: 24px;
    }
}

/* Homepage slider image overlay — none (title has its own background) */
.main_slider_area .rev_slider .tp-revslider-mainul li .slotholder:before {
    background: transparent;
    display: none;
}

/* Homepage slider text — title only, uppercase */
.main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .first_text,
.main_slider_area .rev_slider .tp-caption.first_text {
    width: auto !important;
    max-width: min(760px, 90vw) !important;
    display: inline-block !important;
    white-space: normal !important;
    font-size: 55px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase !important;
    color: #ffffff !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: rgb(0 0 0 / 45%) !important;
    padding: 0.22em 0.4em !important;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Keep Revolution wrappers from stretching the title background */
.main_slider_area .rev_slider .tp-parallax-wrap:has(.first_text),
.main_slider_area .rev_slider .tp-loop-wrap:has(.first_text),
.main_slider_area .rev_slider .tp-mask-wrap:has(.first_text) {
    width: auto !important;
    max-width: min(760px, 90vw) !important;
}

.main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .secand_text,
.main_slider_area .rev_slider .tp-caption.secand_text {
    display: none !important;
}

@media (max-width: 991px) {
    .main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .first_text,
    .main_slider_area .rev_slider .tp-caption.first_text {
        font-size: 36px !important;
        max-width: 90% !important;
    }
}

@media (max-width: 767px) {
    .main_slider_area .rev_slider .tp-revslider-mainul li .slider_text_box .first_text,
    .main_slider_area .rev_slider .tp-caption.first_text {
        font-size: 40px !important;
        line-height: 1.2 !important;
        max-width: 92vw !important;
        width: auto !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        display: inline-block !important;
        height: auto !important;
        max-height: none !important;
        padding: 0.35em 0.55em !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .main_slider_area .rev_slider .tp-parallax-wrap:has(.first_text),
    .main_slider_area .rev_slider .tp-loop-wrap:has(.first_text),
    .main_slider_area .rev_slider .tp-mask-wrap:has(.first_text) {
        max-width: 92vw !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        -webkit-transform: translateX(-50%) !important;
    }

    .cncc-mission-item__title {
        font-size: 18px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main_slider_area .rev_slider .tp-parallax-wrap:has(.slider_btn) {
        left: 35% !important;
        right: auto !important;
        top: auto !important;
        bottom: 72px !important;
        transform: translateX(-50%) !important;
        -webkit-transform: translateX(-50%) !important;
        width: auto !important;
        z-index: 15 !important;
    }

    .main_slider_area .rev_slider .tp-caption.slider_btn {
        text-align: center !important;
        left: 0 !important;
        top: 0 !important;
    }

    .main_slider_area .rev_slider .tp-caption.slider_btn .quote_btn {
        display: inline-block;
        float: none;
        margin: 0 auto;
    }
}

/* Opportunities — tenders & job offers */
.cncc-opp {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.cncc-opp__intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.cncc-opp__eyebrow {
    margin: 0 0 6px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-opp__intro h2,
.cncc-opp-notice h2 {
    margin: 0 0 12px;
    color: #575756;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.cncc-opp__lead {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.cncc-opp__empty {
    margin: 0;
    padding: 48px 20px;
    text-align: center;
    background: #fff;
    border: 1px dashed #dbe4ec;
    border-radius: 12px;
    color: #808080;
    font-size: 16px;
}

.cncc-opp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cncc-opp-card {
    display: flex;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.05);
}

.cncc-opp-card__rail {
    flex: 0 0 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 12px;
    background: #f4f8fb;
    border-right: 1px solid #e8eef3;
    text-align: center;
}

.cncc-opp-card--tender .cncc-opp-card__rail {
    background: linear-gradient(180deg, #f4f8fb 0%, #eaf3fa 100%);
}

.cncc-opp-card--communique .cncc-opp-card__rail {
    background: linear-gradient(180deg, #0087d7 0%, #005fa3 100%);
    color: #fff;
    border-right: 0;
}

.cncc-opp-card--communique .cncc-opp-card__icon,
.cncc-opp-card--communique .cncc-opp-card__ref {
    color: #fff;
}

.cncc-opp-card--agenda .cncc-opp-card__rail {
    background: linear-gradient(180deg, #00b3e6 0%, #0099cc 100%);
    color: #fff;
    border-right: 0;
}

.cncc-opp-card--agenda .cncc-opp-card__icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.cncc-opp-card--agenda .cncc-opp-card__ref {
    color: #fff;
}

.cncc-opp-card--agenda .cncc-opp-card__badge {
    background: rgba(0, 153, 204, 0.14);
    color: #0099cc;
}

.cncc-agenda-card__facts {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.cncc-agenda-card__facts li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}

.cncc-agenda-card__facts li:last-child {
    margin-bottom: 0;
}

.cncc-agenda-card__facts i {
    margin-top: 2px;
    color: #0087d7;
    width: 14px;
    text-align: center;
}

.cncc-agenda-card__facts strong {
    color: #575756;
}

.cncc-opp-card--job .cncc-opp-card__rail {
    background: linear-gradient(180deg, #0087d7 0%, #006bb0 100%);
    color: #fff;
    border-right: 0;
}

.cncc-opp-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #0087d7;
    font-size: 18px;
}

.cncc-opp-card--job .cncc-opp-card__icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.cncc-opp-card__ref {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0087d7;
    word-break: break-all;
}

.cncc-opp-card--job .cncc-opp-card__ref {
    color: #fff;
}

.cncc-opp-card__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 20px 22px 18px;
}

.cncc-opp-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 8px;
    color: #808080;
    font-size: 13px;
}

.cncc-opp-card__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(0, 135, 215, 0.1);
    color: #0087d7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cncc-opp-card--job .cncc-opp-card__badge {
    background: rgba(0, 135, 215, 0.12);
}

.cncc-opp-card__badge--closed {
    background: rgba(87, 87, 86, 0.14);
    color: #575756;
}

.cncc-opp-card__deadline {
    color: #575756;
}

.cncc-opp-card.is-closed {
    opacity: 0.92;
}

.cncc-opp-status {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.cncc-opp-status--closed {
    background: rgba(87, 87, 86, 0.14);
    color: #575756;
}

.cncc-opp-cta--closed {
    margin-top: 28px;
    padding: 18px 20px;
    background: #f3f5f7;
    border-left: 4px solid #575756;
}

.cncc-opp-cta--closed p {
    margin: 0;
    color: #575756;
}

.cncc-opp-card__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.cncc-opp-card__title a {
    color: #575756;
}

.cncc-opp-card__title a:hover {
    color: #0087d7;
    text-decoration: none;
}

.cncc-opp-card__excerpt {
    margin: 0 0 14px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.cncc-opp-card__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cncc-opp-card--communique .cncc-opp-card__footer {
    justify-content: space-between;
}

.cncc-opp-card__footer .cncc-share {
    margin: 0;
}

.cncc-opp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0087d7;
    font-weight: 700;
    font-size: 14px;
}

.cncc-opp-card__cta:hover {
    color: #006bb0;
    text-decoration: none;
}

.cncc-opp-notice {
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 12px;
    padding: 28px 30px 32px;
    box-shadow: 0 2px 14px rgba(0, 87, 215, 0.05);
}

.cncc-opp-notice--tender {
    border-top: 4px solid #0087d7;
}

.cncc-opp-notice--job {
    border-top: 4px solid #006bb0;
}

.cncc-opp-notice__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin: 0 0 22px;
    padding: 14px 0;
    border-top: 1px solid #e8eef3;
    border-bottom: 1px solid #e8eef3;
}

.cncc-opp-notice__meta div {
    margin: 0;
}

.cncc-opp-notice__meta dt {
    margin: 0 0 4px;
    color: #808080;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cncc-opp-notice__meta dd {
    margin: 0;
    color: #575756;
    font-size: 15px;
    font-weight: 600;
}

.cncc-opp-notice__body {
    color: #59595b;
    font-size: 16px;
    line-height: 1.75;
}

.cncc-opp-notice__body h3 {
    margin: 22px 0 10px;
    color: #575756;
    font-size: 18px;
    font-weight: 700;
}

.cncc-opp-notice__body p {
    margin: 0 0 14px;
}

.cncc-opp-notice__body ul {
    margin: 0 0 16px;
    padding-left: 1.25em;
}

.cncc-opp-notice__body li {
    margin-bottom: 6px;
}

.cncc-opp-notice__share {
    margin-top: 24px;
}

.cncc-opp-docs {
    margin: 28px 0 8px;
    padding: 20px 20px 18px;
    border-radius: 10px;
    background: #f4f8fb;
    border: 1px solid #e8eef3;
}

.cncc-opp-docs h3 {
    margin: 0 0 14px;
    color: #575756;
    font-size: 18px;
    font-weight: 700;
}

.cncc-opp-docs__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cncc-opp-docs__preview {
    display: block;
    flex: 0 0 120px;
    max-width: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef3;
}

.cncc-opp-docs__preview img {
    display: block;
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.cncc-opp-docs__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #fff;
    color: #c0392b;
    font-size: 28px;
    border: 1px solid #e8eef3;
}

.cncc-opp-docs__meta {
    min-width: 0;
    flex: 1 1 auto;
}

.cncc-opp-docs__name {
    margin: 0 0 4px;
    color: #575756;
    font-weight: 700;
    word-break: break-word;
}

.cncc-opp-docs__type {
    margin: 0 0 10px;
    color: #808080;
    font-size: 13px;
}

.cncc-opp-docs__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #0087d7;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.cncc-opp-docs__btn:hover {
    background: #006bb0;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .cncc-opp-docs__item {
        align-items: flex-start;
        flex-direction: column;
    }
}

.cncc-gov-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cncc-gov-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.05);
}

.cncc-gov-card__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f4f8fb;
    color: #0087d7;
    font-size: 26px;
}

.cncc-gov-card__body {
    min-width: 0;
    flex: 1 1 auto;
}

.cncc-gov-card__ref {
    margin: 0 0 4px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cncc-gov-card__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.cncc-gov-card__title a {
    color: #575756;
}

.cncc-gov-card__title a:hover {
    color: #0087d7;
    text-decoration: none;
}

.cncc-gov-card__period {
    margin: 0 0 12px;
    color: #666;
    line-height: 1.55;
}

.cncc-gov-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cncc-gov-card__cta,
.cncc-gov-card__download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #0087d7;
}

.cncc-gov-card__cta:hover,
.cncc-gov-card__download:hover {
    color: #006bb0;
    text-decoration: none;
}

@media (max-width: 767px) {
    .cncc-gov-card {
        flex-direction: column;
    }
}

.cncc-opp-cta {
    margin-top: 28px;
    padding: 20px 22px;
    border-radius: 10px;
    background: #f4f8fb;
    border: 1px solid #e8eef3;
    text-align: center;
}

.cncc-opp-cta p {
    margin: 0 0 14px;
    color: #666;
}

.cncc-opp-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: #0087d7;
    color: #fff;
    font-weight: 700;
}

.cncc-opp-cta__btn:hover {
    background: #006bb0;
    color: #fff;
    text-decoration: none;
}

.cncc-opp-aside {
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 12px;
    padding: 20px 20px 22px;
    box-shadow: 0 2px 12px rgba(0, 87, 215, 0.05);
}

.cncc-opp-aside__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: #0087d7;
    font-weight: 700;
}

.cncc-opp-aside__back:hover {
    color: #006bb0;
    text-decoration: none;
}

.cncc-opp-aside h3 {
    margin: 0 0 12px;
    color: #575756;
    font-size: 16px;
    font-weight: 700;
}

.cncc-opp-aside__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cncc-opp-aside__list li {
    margin: 0;
    border-top: 1px solid #eef3f7;
}

.cncc-opp-aside__list a {
    display: block;
    padding: 12px 0;
    color: #575756;
    line-height: 1.4;
}

.cncc-opp-aside__list a span {
    display: block;
    margin-bottom: 2px;
    color: #0087d7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cncc-opp-aside__list a:hover {
    color: #0087d7;
    text-decoration: none;
}

@media (max-width: 767px) {
    .cncc-opp {
        padding: 36px 0 50px;
    }

    .cncc-opp-card {
        flex-direction: column;
    }

    .cncc-opp-card__rail {
        flex: 0 0 auto;
        flex-direction: row;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid #e8eef3;
        padding: 14px 16px;
    }

    .cncc-opp-notice {
        padding: 20px 16px 24px;
        margin-bottom: 24px;
    }

    .cncc-opp__intro h2,
    .cncc-opp-notice h2 {
        font-size: 24px;
    }
}

.cncc-apply {
    margin-top: 28px;
    padding: 24px 22px 26px;
    border-radius: 10px;
    background: #f4f8fb;
    border: 1px solid #e8eef3;
}

.cncc-apply h3 {
    margin: 0 0 8px;
    color: #575756;
    font-size: 22px;
    font-weight: 700;
}

.cncc-apply__lead {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.6;
}

.cncc-apply__alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
}

.cncc-apply__alert--success {
    background: #e8f6ee;
    color: #1e7a3a;
}

.cncc-apply__alert--error {
    background: #fdecea;
    color: #a12622;
}

.cncc-apply__alert ul {
    margin: 0;
    padding-left: 1.1em;
}

.cncc-apply-form .row {
    margin-bottom: 8px;
}

.cncc-apply-form label {
    display: block;
    margin-bottom: 6px;
    color: #575756;
    font-weight: 600;
}

.cncc-apply-form label span {
    color: #c0392b;
}

.cncc-apply-form .form-control {
    margin-bottom: 6px;
    border: 1px solid #dbe4ec;
    border-radius: 8px;
    box-shadow: none;
    min-height: 44px;
}

.cncc-apply-form small {
    display: block;
    margin-bottom: 12px;
    color: #808080;
}

.cncc-apply-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: #0087d7;
    color: #fff;
    font-weight: 700;
}

.cncc-apply-form__submit:hover {
    background: #006bb0;
    color: #fff;
}

/* Shared editor HTML — same look on every public page */
.cncc-richtext {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #59595b;
}

.cncc-richtext p,
.cncc-richtext li,
.cncc-richtext td,
.cncc-richtext th,
.cncc-richtext a {
    color: #59595b;
}

.cncc-richtext p {
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.7;
}

.cncc-richtext p:last-child {
    margin-bottom: 0;
}

.cncc-richtext h2,
.cncc-richtext h3,
.cncc-richtext h4 {
    margin: 18px 0 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1.35;
    color: #575756;
}

.cncc-richtext h2 { font-size: 24px; }
.cncc-richtext h3 { font-size: 20px; }
.cncc-richtext h4 { font-size: 18px; }

.cncc-richtext ul,
.cncc-richtext ol {
    margin: 0 0 10px;
    padding-left: 1.75rem;
    list-style: none;
}

.cncc-richtext li {
    display: list-item;
    margin-bottom: 6px;
    line-height: 1.65;
}

.cncc-richtext ul > li {
    list-style-type: disc;
    list-style-position: outside;
}

.cncc-richtext ol > li {
    list-style-type: decimal;
    list-style-position: outside;
}

.cncc-richtext ul ul > li {
    list-style-type: circle;
}

.cncc-richtext ol ol > li {
    list-style-type: lower-alpha;
}

.cncc-richtext a {
    color: #0087d7;
}

.cncc-richtext img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.cncc-richtext table {
    width: 100%;
    margin: 0 0 12px;
    border-collapse: collapse;
}

.cncc-richtext td,
.cncc-richtext th {
    padding: 8px;
    border: 1px solid #e8eef3;
    vertical-align: top;
}

.cncc-richtext blockquote {
    margin: 0 0 12px;
    padding: 8px 16px;
    border-left: 4px solid #0087d7;
    color: #575756;
}

.cncc-communique-panel {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #0087d7;
}

.cncc-communique-panel img {
    display: block;
    width: 100%;
    min-height: 280px;
    object-fit: contain;
    object-position: center;
    padding: 36px 28px 72px;
    background: linear-gradient(180deg, #0a7ec9 0%, #005fa3 100%);
}

.cncc-communique-panel__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cncc-communique-panel__lead {
    color: #59595b;
    line-height: 1.65;
    margin: 0 0 24px;
}

@media (max-width: 991px) {
    .cncc-communique-panel {
        min-height: 200px;
        margin-bottom: 12px;
    }

    .cncc-communique-panel img {
        min-height: 200px;
        padding: 24px 24px 64px;
    }
}

/* Gallery albums */
.cncc-gallery {
    padding: 48px 0 64px;
    background: #f3f5f7;
}

.cncc-gallery__intro {
    margin-bottom: 28px;
    max-width: 720px;
}

.cncc-gallery__eyebrow {
    margin: 0 0 6px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-gallery__intro h2 {
    margin: 0 0 10px;
    color: #575756;
    font-size: 28px;
    font-weight: 800;
}

.cncc-gallery__lead {
    margin: 0;
    color: #808080;
    line-height: 1.65;
}

.cncc-gallery__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    color: #0087d7;
    font-weight: 600;
}

.cncc-gallery__back:hover {
    color: #0099cc;
    text-decoration: none;
}

.cncc-gallery__empty {
    margin: 24px 0;
    padding: 36px 20px;
    background: #fff;
    border-radius: 14px;
    color: #808080;
    text-align: center;
    box-shadow: 0 8px 24px rgba(87, 87, 86, 0.06);
}

.cncc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.cncc-gallery-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(87, 87, 86, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cncc-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(87, 87, 86, 0.12);
}

.cncc-gallery-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #575756;
}

.cncc-gallery-card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.cncc-gallery-card:hover .cncc-gallery-card__media img {
    transform: scale(1.05);
}

.cncc-gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 135, 215, 0.72);
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cncc-gallery-card:hover .cncc-gallery-card__overlay {
    opacity: 1;
}

.cncc-gallery-card__overlay i {
    font-size: 28px;
}

.cncc-gallery-card__body {
    padding: 16px 18px 18px;
}

.cncc-gallery-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.cncc-gallery-card__title a {
    color: #575756;
}

.cncc-gallery-card__title a:hover {
    color: #0087d7;
    text-decoration: none;
}

.cncc-gallery-card__excerpt {
    margin: 0 0 12px;
    color: #808080;
    font-size: 14px;
    line-height: 1.5;
}

.cncc-gallery-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #808080;
    font-size: 13px;
}

.cncc-gallery-card__meta i {
    margin-right: 4px;
    color: #0087d7;
}

.cncc-gallery-card__cta {
    color: #0087d7;
    font-weight: 700;
    white-space: nowrap;
}

.cncc-gallery-card__cta:hover {
    color: #0099cc;
    text-decoration: none;
}

.cncc-gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 22px;
}

.cncc-gallery-tabs__btn {
    display: inline-flex;
    align-items: center;
    border: none;
    background: #fff;
    color: #575756;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    text-decoration: none;
}

.cncc-gallery-tabs__btn span {
    display: inline-block;
    margin-left: 8px;
    min-width: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f3f5f7;
    font-size: 12px;
}

.cncc-gallery-tabs__btn.is-active {
    background: #0087d7;
    color: #fff;
}

.cncc-gallery-tabs__btn.is-active span {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.cncc-gallery-panel {
    display: none;
}

.cncc-gallery-panel.is-active {
    display: block;
}

.cncc-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.cncc-gallery-mosaic__item {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: #575756;
    box-shadow: 0 6px 18px rgba(87, 87, 86, 0.1);
}

.cncc-gallery-mosaic__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cncc-gallery-mosaic__item:hover img {
    transform: scale(1.06);
}

.cncc-gallery-mosaic__zoom,
.cncc-gallery-mosaic__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 61, 122, 0.35);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cncc-gallery-mosaic__item:hover .cncc-gallery-mosaic__zoom,
.cncc-gallery-mosaic__item:hover .cncc-gallery-mosaic__play {
    opacity: 1;
}

.cncc-gallery-mosaic__play {
    opacity: 1;
    background: rgba(0, 61, 122, 0.28);
}

.cncc-gallery-mosaic__play i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fcee21;
    color: #3d3d3c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
}

@media (max-width: 991px) {
    .cncc-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cncc-gallery-mosaic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .cncc-gallery {
        padding: 32px 0 48px;
    }

    .cncc-gallery-grid,
    .cncc-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cncc-gallery__intro h2 {
        font-size: 22px;
    }
}

/* Homepage services / features (before gallery) */
.cncc-home-features {
    position: relative;
    padding: 72px 0 64px;
    background:
        radial-gradient(circle at top right, rgba(0, 135, 215, 0.12), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    overflow: hidden;
}

.cncc-home-features__header {
    margin-bottom: 28px;
    max-width: 640px;
}

.cncc-home-features__eyebrow {
    margin: 0 0 8px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-home-features__copy h2 {
    margin: 0 0 10px;
    color: #003d7a;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
}

.cncc-home-features__copy p {
    margin: 0;
    color: #575756;
    font-size: 16px;
    line-height: 1.65;
}

.cncc-home-features__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.cncc-home-features__visual-frame {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 61, 122, 0.16);
    background: #003d7a;
}

.cncc-home-features__visual-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.cncc-home-features__visual:hover img {
    transform: scale(1.06);
}

.cncc-home-features__visual-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 61, 122, 0.82);
    color: #fff;
    backdrop-filter: blur(6px);
}

.cncc-home-features__visual-caption span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.cncc-home-features__visual-caption strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}

.cncc-home-features__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cncc-home-feature {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 108px;
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 135, 215, 0.12);
    box-shadow: 0 8px 22px rgba(0, 61, 122, 0.06);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cncc-home-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 135, 215, 0.35);
    box-shadow: 0 14px 28px rgba(0, 61, 122, 0.12);
}

.cncc-home-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(0, 135, 215, 0.14), rgba(0, 61, 122, 0.08));
}

.cncc-home-feature__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cncc-home-feature__body strong {
    display: block;
    margin-bottom: 4px;
    color: #003d7a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.cncc-home-feature__body em {
    display: block;
    color: #575756;
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.cncc-home-feature__arrow {
    color: #0087d7;
    font-size: 18px;
    opacity: 0.55;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cncc-home-feature:hover .cncc-home-feature__arrow {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .cncc-home-features {
        padding: 56px 0 48px;
    }

    .cncc-home-features__layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cncc-home-features__visual-frame {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .cncc-home-features__grid {
        grid-template-columns: 1fr;
    }

    .cncc-home-feature {
        min-height: 0;
    }

    .cncc-home-features__visual-frame {
        min-height: 220px;
        border-radius: 16px;
    }
}

/* Homepage gallery */
.cncc-home-gallery {
    padding: 72px 0 80px;
    background:
        linear-gradient(180deg, #f8fafb 0%, #eef3f7 100%);
}

.cncc-home-gallery__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.cncc-home-gallery__eyebrow {
    margin: 0 0 6px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-home-gallery__copy h2 {
    margin: 0 0 8px;
    color: #575756;
    font-size: 30px;
    font-weight: 800;
}

.cncc-home-gallery__copy p {
    margin: 0;
    max-width: 520px;
    color: #808080;
    line-height: 1.6;
}

.cncc-home-gallery__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #0087d7;
    color: #fff !important;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 135, 215, 0.25);
}

.cncc-home-gallery__cta:hover {
    background: #0099cc;
    text-decoration: none;
}

.cncc-home-gallery__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(180px, 240px));
    gap: 14px;
}

.cncc-home-gallery__card {
    position: relative;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(87, 87, 86, 0.1);
}

.cncc-home-gallery__card.is-featured {
    grid-row: 1 / span 2;
}

.cncc-home-gallery__media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: #575756;
}

.cncc-home-gallery__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cncc-home-gallery__card:hover .cncc-home-gallery__media img {
    transform: scale(1.06);
}

.cncc-home-gallery__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 30, 40, 0.05) 20%, rgba(20, 30, 40, 0.78) 100%);
    z-index: 1;
}

.cncc-home-gallery__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 18px 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cncc-home-gallery__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-bottom: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(252, 238, 33, 0.92);
    color: #3d3d3c;
    font-size: 12px;
    font-weight: 700;
}

.cncc-home-gallery__label strong {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.cncc-home-gallery__card.is-featured .cncc-home-gallery__label strong {
    font-size: 24px;
}

.cncc-home-gallery__label em {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: #fcee21;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cncc-home-gallery__card:hover .cncc-home-gallery__label em {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .cncc-home-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .cncc-home-gallery__card.is-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 260px;
    }
}

@media (max-width: 575px) {
    .cncc-home-gallery {
        padding: 48px 0 56px;
    }

    .cncc-home-gallery__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cncc-home-gallery__copy h2 {
        font-size: 24px;
    }

    .cncc-home-gallery__grid {
        grid-template-columns: 1fr;
    }

    .cncc-home-gallery__card,
    .cncc-home-gallery__card.is-featured {
        min-height: 220px;
    }
}

/* Modern gallery albums page */
.cncc-gallery-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
    color: #fff;
    background: #0b3d5c;
}

.cncc-gallery-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(252, 238, 33, 0.22), transparent 42%),
        radial-gradient(circle at 88% 10%, rgba(0, 153, 204, 0.45), transparent 40%),
        linear-gradient(135deg, #0b3d5c 0%, #0087d7 55%, #575756 120%);
}

.cncc-gallery-hero .container {
    position: relative;
    z-index: 1;
}

.cncc-gallery-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.cncc-gallery-hero__crumbs a {
    color: #fcee21;
}

.cncc-gallery-hero__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fcee21;
}

.cncc-gallery-hero h1 {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
}

.cncc-gallery-hero__lead {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.65;
}

.cncc-gallery-hero__stats {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.cncc-gallery-hero__stats div {
    min-width: 120px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.cncc-gallery-hero__stats strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.cncc-gallery-hero__stats span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.cncc-gallery--modern {
    padding-top: 36px;
    background: #f5f7fa;
}

.cncc-gallery-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.cncc-gallery-bento__card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(87, 87, 86, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cncc-gallery-bento__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(87, 87, 86, 0.14);
}

.cncc-gallery-bento__card.is-featured {
    grid-column: span 8;
    grid-row: span 2;
}

.cncc-gallery-bento__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background: #575756;
    overflow: hidden;
}

.cncc-gallery-bento__card.is-featured .cncc-gallery-bento__media {
    aspect-ratio: auto;
    min-height: 340px;
    flex: 1;
}

.cncc-gallery-bento__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cncc-gallery-bento__card:hover .cncc-gallery-bento__media img {
    transform: scale(1.05);
}

.cncc-gallery-bento__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(11, 61, 92, 0.45) 100%);
    z-index: 1;
}

.cncc-gallery-bento__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(252, 238, 33, 0.95);
    color: #3d3d3c;
    font-size: 12px;
    font-weight: 700;
}

.cncc-gallery-bento__body {
    padding: 18px 18px 20px;
}

.cncc-gallery-bento__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.cncc-gallery-bento__card.is-featured .cncc-gallery-bento__title {
    font-size: 28px;
}

.cncc-gallery-bento__title a {
    color: #575756;
}

.cncc-gallery-bento__title a:hover {
    color: #0087d7;
    text-decoration: none;
}

.cncc-gallery-bento__excerpt {
    margin: 0 0 14px;
    color: #808080;
    font-size: 14px;
    line-height: 1.55;
}

.cncc-gallery-bento__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0087d7;
    font-weight: 700;
}

.cncc-gallery-bento__cta:hover {
    color: #0099cc;
    text-decoration: none;
}

@media (max-width: 991px) {
    .cncc-gallery-bento__card,
    .cncc-gallery-bento__card.is-featured {
        grid-column: span 6;
        grid-row: auto;
    }

    .cncc-gallery-bento__card.is-featured .cncc-gallery-bento__media {
        min-height: 240px;
    }
}

@media (max-width: 575px) {
    .cncc-gallery-hero {
        padding: 40px 0 36px;
    }

    .cncc-gallery-hero h1 {
        font-size: 28px;
    }

    .cncc-gallery-bento__card,
    .cncc-gallery-bento__card.is-featured {
        grid-column: span 12;
    }
}

/* Homepage Communiqué + Agenda pulse */
.cncc-home-pulse {
    position: relative;
    padding: 64px 0 56px;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 135, 215, 0.12), transparent 36%),
        radial-gradient(circle at 88% 12%, rgba(42, 157, 143, 0.12), transparent 34%),
        linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}

.cncc-home-pulse__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.cncc-home-pulse__col {
    position: relative;
    padding: 26px 24px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e5eef5;
    box-shadow: 0 14px 34px rgba(0, 61, 122, 0.07);
    overflow: hidden;
}

.cncc-home-pulse__col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.cncc-home-pulse__col--communique::before {
    background: linear-gradient(180deg, #0087d7 0%, #005fa3 100%);
}

.cncc-home-pulse__col--agenda::before {
    background: linear-gradient(180deg, #00b3e6 0%, #0099cc 100%);
}

.cncc-home-pulse__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cncc-home-pulse__eyebrow {
    margin: 0 0 6px;
    color: #0087d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cncc-home-pulse__col--agenda .cncc-home-pulse__eyebrow {
    color: #0099cc;
}

.cncc-home-pulse__header h2 {
    margin: 0 0 8px;
    color: #003d7a;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1.2;
}

.cncc-home-pulse__col--agenda .cncc-home-pulse__header h2 {
    color: #007aa3;
}

.cncc-home-pulse__lead {
    margin: 0;
    max-width: 36ch;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}

.cncc-home-pulse__all,
.cncc-home-pulse__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0087d7;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.cncc-home-pulse__col--agenda .cncc-home-pulse__all,
.cncc-home-pulse__col--agenda .cncc-home-pulse__cta {
    color: #0099cc;
}

.cncc-home-pulse__all:hover,
.cncc-home-pulse__cta:hover {
    text-decoration: underline;
}

.cncc-home-pulse__cta {
    margin-top: 14px;
}

.cncc-home-pulse--links .cncc-home-pulse__col {
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.cncc-home-pulse--links .cncc-home-pulse__header {
    flex: 1 1 auto;
    margin-bottom: 0;
}

.cncc-home-pulse--links .cncc-home-pulse__cta--block {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 6px;
    background: #0087d7;
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cncc-home-pulse--links .cncc-home-pulse__col--agenda .cncc-home-pulse__cta--block {
    background: #0099cc;
}

.cncc-home-pulse--links .cncc-home-pulse__cta--block:hover {
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none;
    opacity: 0.95;
}

.cncc-home-pulse__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cncc-home-pulse__item {
    border-radius: 14px;
    background: #f7fafc;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cncc-home-pulse__item.is-featured {
    background: linear-gradient(135deg, rgba(0, 135, 215, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(0, 135, 215, 0.18);
}

.cncc-home-pulse__col--agenda .cncc-home-pulse__item.is-featured {
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.1), rgba(255, 255, 255, 0.95));
    border-color: rgba(0, 153, 204, 0.22);
}

.cncc-home-pulse__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 61, 122, 0.1);
    border-color: rgba(0, 135, 215, 0.22);
}

.cncc-home-pulse__link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    color: inherit;
    text-decoration: none;
}

.cncc-home-pulse__link--static {
    cursor: default;
}

.cncc-home-pulse__icon,
.cncc-home-pulse__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #0087d7;
    color: #fff;
    flex: 0 0 auto;
}

.cncc-home-pulse__col--agenda .cncc-home-pulse__date {
    background: #0099cc;
}

.cncc-home-pulse__date strong {
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.cncc-home-pulse__date span {
    margin-top: 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.92;
}

.cncc-home-pulse__icon {
    font-size: 20px;
}

.cncc-home-pulse__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cncc-home-pulse__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    color: #808080;
    font-size: 12px;
}

.cncc-home-pulse__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(0, 135, 215, 0.12);
    color: #006bb0;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 10px;
}

.cncc-home-pulse__col--agenda .cncc-home-pulse__badge {
    background: rgba(0, 153, 204, 0.14);
    color: #0099cc;
}

.cncc-home-pulse__place {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cncc-home-pulse__title {
    color: #1f2d3d;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.cncc-home-pulse__excerpt {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cncc-home-pulse__chevron {
    color: #0087d7;
    font-size: 18px;
    opacity: 0.7;
}

.cncc-home-pulse__empty {
    margin: 8px 0 0;
    padding: 18px;
    border-radius: 12px;
    background: #f7fafc;
    color: #808080;
    text-align: center;
}

@media (max-width: 991px) {
    .cncc-home-pulse__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .cncc-home-pulse {
        padding: 44px 0 40px;
    }

    .cncc-home-pulse__col {
        padding: 20px 16px 16px;
    }

    .cncc-home-pulse__header {
        flex-direction: column;
    }

    .cncc-home-pulse__link {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cncc-home-pulse__chevron {
        display: none;
    }
}

/* ===== Équipe page layouts ===== */
.cncc-equipe-page h4.description {
    font-weight: bold;
    letter-spacing: 2px;
    color: #575756;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 28px;
}

.equipe-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.equipe-menu {
    width: 100%;
    padding: 0 10px 24px;
}

.equipe-menu .list-group {
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.equipe-menu .list-group-item {
    border: none;
    border-bottom: 1px solid #eef2f5;
    color: #575756;
    padding: 14px 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.equipe-menu .list-group-item:last-child {
    border-bottom: none;
}

.equipe-menu .list-group-item .glyphicon {
    color: #0087d7;
    margin-bottom: 6px;
}

.equipe-menu .list-group-item.active,
.equipe-menu .list-group-item.active:hover,
.equipe-menu .list-group-item.active:focus {
    background: #0087d7;
    color: #fff;
}

.equipe-menu .list-group-item.active .glyphicon {
    color: #fff;
}

.equipe-menu .list-group-item:hover,
.equipe-menu .list-group-item:hover .glyphicon {
    background: #0087d7;
    color: #fff;
}

.equipe-panels {
    width: 100%;
    padding: 0 10px;
}

.equipe-panels > .bhoechie-tab-content:not(.active) {
    display: none;
}

.equipe-panels > .bhoechie-tab-content.active {
    display: block;
}

.equipe-tree {
    max-width: 860px;
    margin: 0 auto;
}

.equipe-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -10px 8px;
    align-items: stretch;
}

.equipe-col {
    padding: 0 10px 22px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.equipe-col--first,
.equipe-col--next {
    flex: 1 1 calc(100% / var(--equipe-count, 1));
    width: calc(100% / var(--equipe-count, 1));
    max-width: calc(100% / var(--equipe-count, 1));
    min-width: 0;
}

.equipe-card {
    background: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: fit-content;
    max-width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 135, 215, 0.16);
}

.equipe-card--head,
.equipe-card--depth-1 {
    border-top: 3px solid #0087d7;
}

.equipe-row--first .equipe-card,
.equipe-row--depth-1 .equipe-card {
    align-items: stretch;
}

.equipe-row--first .equipe-card h3,
.equipe-row--first .equipe-card .role,
.equipe-row--depth-1 .equipe-card h3,
.equipe-row--depth-1 .equipe-card .role {
    width: 0;
    min-width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.equipe-photo {
    position: relative;
    width: fit-content;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
    box-sizing: border-box;
}

.equipe-photo--empty {
    width: 160px;
    height: 160px;
    background: #eef3f6;
}

.equipe-photo img {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    object-fit: contain !important;
    display: block;
}

.equipe-photo--empty i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #b3b3b3;
}

/* Depth sizing — organigramme (level 1 > 2 > 3) */
.equipe-card--depth-1 .equipe-photo img {
    max-height: 280px !important;
}

.equipe-card--depth-1 .equipe-photo--empty {
    width: 220px;
    height: 220px;
}

.equipe-card--depth-2 .equipe-photo img {
    max-height: 210px !important;
}

.equipe-card--depth-2 .equipe-photo--empty {
    width: 170px;
    height: 170px;
}

.equipe-card--depth-3 .equipe-photo img {
    max-height: 150px !important;
}

.equipe-card--depth-3 .equipe-photo--empty {
    width: 120px;
    height: 120px;
}

.equipe-card h3,
.equipe-card .role {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.equipe-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #575756;
    line-height: 1.35;
}

.equipe-card--depth-1 h3 {
    font-size: 18px;
    color: #0087d7;
}

.equipe-card--depth-2 h3 {
    font-size: 16px;
}

.equipe-card--depth-3 h3 {
    font-size: 14px;
}

.equipe-card .role {
    margin: 0;
    color: #808080;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.equipe-card--depth-1 .role {
    color: #0099cc;
    font-size: 14px;
}

.equipe-card--depth-3 .role {
    font-size: 12px;
}

.equipe-empty {
    width: 100%;
    padding: 40px 16px;
    text-align: center;
    color: #808080;
}

/* Grid layout — larger photos, still depth-scaled */
.equipe-grid-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.equipe-grid-filter {
    border: 1px solid #d9e4ec;
    background: #fff;
    color: #575756;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.equipe-grid-filter:hover,
.equipe-grid-filter.is-active {
    background: #0087d7;
    border-color: #0087d7;
    color: #fff;
}

.equipe-grid-section {
    margin-bottom: 36px;
}

.equipe-grid-section__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #575756;
    letter-spacing: 0.02em;
}

.equipe-tree--grid {
    max-width: none;
}

.equipe-tree--grid .equipe-col {
    flex: 0 1 auto;
    width: auto;
}

.equipe-tree--grid .equipe-col--depth-1 {
    max-width: 300px;
    flex-basis: 280px;
}

.equipe-tree--grid .equipe-col--depth-2 {
    max-width: 240px;
    flex-basis: 220px;
}

.equipe-tree--grid .equipe-col--depth-3 {
    max-width: 190px;
    flex-basis: 170px;
}

.equipe-tree--grid .equipe-card {
    width: 100%;
}

.equipe-tree--grid .equipe-photo,
.equipe-tree--grid .equipe-photo--empty {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: none;
}

.equipe-tree--grid .equipe-card--depth-1 .equipe-photo,
.equipe-tree--grid .equipe-card--depth-1 .equipe-photo--empty {
    width: 260px;
    max-width: 100%;
}

.equipe-tree--grid .equipe-card--depth-2 .equipe-photo,
.equipe-tree--grid .equipe-card--depth-2 .equipe-photo--empty {
    width: 200px;
    max-width: 100%;
}

.equipe-tree--grid .equipe-card--depth-3 .equipe-photo,
.equipe-tree--grid .equipe-card--depth-3 .equipe-photo--empty {
    width: 150px;
    max-width: 100%;
}

.equipe-tree--grid .equipe-photo img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
}

/* Directory layout */
.equipe-directory__section {
    border: 1px solid #e8eef3;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.equipe-directory__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 0;
    background: #f7fafc;
    color: #575756;
    text-align: left;
    cursor: pointer;
}

.equipe-directory__section.is-open .equipe-directory__toggle {
    background: #eef6fb;
    border-bottom: 1px solid #e8eef3;
}

.equipe-directory__name {
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 700;
}

.equipe-directory__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: #0087d7;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.equipe-directory__toggle .fa {
    color: #0087d7;
    transition: transform 0.2s ease;
}

.equipe-directory__section.is-open .equipe-directory__toggle .fa {
    transform: rotate(180deg);
}

.equipe-directory__body {
    padding: 8px 0;
}

.equipe-directory__tree {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.equipe-directory__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.equipe-directory__list--level {
    padding-left: 18px;
    border-left: 2px solid #e8eef3;
    margin-left: 24px;
}

.equipe-directory__list--depth-2 {
    margin-left: 20px;
}

.equipe-directory__list--depth-3 {
    margin-left: 36px;
}

.equipe-directory__list--level + .equipe-directory__list--level {
    margin-top: 2px;
}

.equipe-directory__row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 16px;
    border-top: 1px solid #f0f4f7;
}

.equipe-directory__list--head .equipe-directory__row:first-child,
.equipe-directory__list--level .equipe-directory__row:first-child {
    border-top: 0;
}

.equipe-directory__row--head,
.equipe-directory__row--depth-1 {
    background: rgba(0, 135, 215, 0.04);
}

.equipe-directory__photo {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eef3f6;
    position: relative;
}

.equipe-directory__row--depth-1 .equipe-directory__photo {
    width: 160px;
    height: 160px;
}

.equipe-directory__row--depth-2 .equipe-directory__photo {
    width: 120px;
    height: 120px;
}

.equipe-directory__row--depth-3 .equipe-directory__photo {
    width: 88px;
    height: 88px;
}

.equipe-directory__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.equipe-directory__photo--empty i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #b3b3b3;
    font-size: 28px;
}

.equipe-directory__row--depth-1 .equipe-directory__photo--empty i {
    font-size: 42px;
}

.equipe-directory__row--depth-3 .equipe-directory__photo--empty i {
    font-size: 22px;
}

.equipe-directory__meta {
    min-width: 0;
}

.equipe-directory__meta h3 {
    margin: 0 0 4px;
    font-weight: 700;
    color: #575756;
    line-height: 1.3;
}

.equipe-directory__row--depth-1 .equipe-directory__meta h3 {
    font-size: 20px;
    color: #0087d7;
}

.equipe-directory__row--depth-2 .equipe-directory__meta h3 {
    font-size: 16px;
}

.equipe-directory__row--depth-3 .equipe-directory__meta h3 {
    font-size: 14px;
}

.equipe-directory__meta .role {
    margin: 0;
    color: #808080;
    font-weight: 600;
    line-height: 1.35;
}

.equipe-directory__row--depth-1 .equipe-directory__meta .role {
    font-size: 15px;
}

.equipe-directory__row--depth-2 .equipe-directory__meta .role {
    font-size: 13px;
}

.equipe-directory__row--depth-3 .equipe-directory__meta .role {
    font-size: 12px;
}

@media (min-width: 768px) {
    .equipe-menu {
        width: 28%;
    }

    .equipe-panels {
        width: 72%;
    }
}

@media (min-width: 992px) {
    .equipe-menu {
        width: 25%;
    }

    .equipe-panels {
        width: 75%;
    }
}

@media (max-width: 767px) {
    .equipe-col--first,
    .equipe-col--next {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .equipe-tree--grid .equipe-col--depth-1 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .equipe-tree--grid .equipe-col--depth-2,
    .equipe-tree--grid .equipe-col--depth-3 {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .equipe-tree--grid .equipe-card--depth-1 .equipe-photo,
    .equipe-tree--grid .equipe-card--depth-1 .equipe-photo--empty {
        width: min(260px, 100%);
    }

    .equipe-menu .list-group-item {
        display: inline-block;
        width: auto;
        margin: 0 6px 8px 0;
        border: 1px solid #e8eef3 !important;
        border-radius: 999px !important;
        padding: 8px 14px;
    }

    .equipe-menu .list-group-item .glyphicon {
        display: none;
    }

    .equipe-menu .list-group-item br {
        display: none;
    }

    .equipe-directory__list--level,
    .equipe-directory__list--depth-2,
    .equipe-directory__list--depth-3 {
        margin-left: 12px;
        padding-left: 12px;
    }

    .equipe-directory__row--depth-1 .equipe-directory__photo {
        width: 120px;
        height: 120px;
    }

    .equipe-directory__row--depth-2 .equipe-directory__photo {
        width: 96px;
        height: 96px;
    }

    .equipe-directory__row--depth-3 .equipe-directory__photo {
        width: 72px;
        height: 72px;
    }

    .equipe-directory__row {
        align-items: flex-start;
    }
}

/* ===== Cookie consent (non-blocking bottom bar) ===== */
.cncc-cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9998;
    pointer-events: none;
}

.cncc-cookie__bar,
.cncc-cookie__prefs {
    pointer-events: auto;
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.cncc-cookie__bar-inner,
.cncc-cookie__prefs-inner {
    padding: 22px 24px 20px;
}

.cncc-cookie__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.25;
}

.cncc-cookie__text {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
}

.cncc-cookie__text a {
    color: #0087d7;
    text-decoration: underline;
    font-weight: 600;
}

.cncc-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.cncc-cookie__btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.2;
}

.cncc-cookie__btn--primary {
    background: #0f766e;
    color: #fff;
}

.cncc-cookie__btn--primary:hover {
    background: #0d9488;
}

.cncc-cookie__btn--secondary {
    background: #eef2f5;
    color: #374151;
}

.cncc-cookie__btn--secondary:hover {
    background: #e5eaf0;
}

.cncc-cookie__link {
    border: 0;
    background: transparent;
    color: #0f766e;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
}

.cncc-cookie__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: min(46vh, 360px);
    overflow: auto;
}

.cncc-cookie__item {
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
}

.cncc-cookie__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.cncc-cookie__check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
}

.cncc-cookie__check input {
    width: 18px;
    height: 18px;
    accent-color: #0f766e;
}

.cncc-cookie__check input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.cncc-cookie__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ccfbf1;
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.cncc-cookie__item p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .cncc-cookie {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cncc-cookie__bar-inner,
    .cncc-cookie__prefs-inner {
        padding: 18px 16px 16px;
    }

    .cncc-cookie__title {
        font-size: 18px;
    }

    .cncc-cookie__actions {
        justify-content: stretch;
    }

    .cncc-cookie__btn,
    .cncc-cookie__link {
        width: 100%;
        text-align: center;
    }

    .cncc-cookie__actions--prefs .cncc-cookie__btn {
        width: auto;
        flex: 1 1 auto;
    }
}

/* ===== Scroll to top ===== */
.cncc-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 12px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #0087d7;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 135, 215, 0.28);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, bottom 0.25s ease;
}

.cncc-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cncc-scroll-top:hover,
.cncc-scroll-top:focus {
    background: #0070b3;
    color: #fff;
    outline: none;
}

.cncc-scroll-top .fa {
    font-size: 22px;
    line-height: 1;
}

body.cncc-has-cookie .cncc-scroll-top {
    bottom: 100px;
}

@media (max-width: 767px) {
    .cncc-scroll-top {
        right: 14px;
        bottom: 10px;
        width: 42px;
        height: 42px;
    }

    body.cncc-has-cookie .cncc-scroll-top {
        bottom: 130px;
    }
}

/* ===== Page animations (Animate.css) ===== */
body.cncc-anim-enabled .cncc-anim-pending:not(.cncc-anim-done) {
    opacity: 0;
}

body.cncc-anim-enabled .cncc-anim-pending.animated {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    body.cncc-anim-enabled .cncc-anim-pending:not(.cncc-anim-done) {
        opacity: 1;
    }
}

/* Footer legal links (cookie settings + privacy) */
.footer_copy_right .cncc-footer-legal-link,
.footer_copy_right .cncc-footer-legal-link:visited,
.footer_copy_right .cncc-footer-legal-link:hover,
.footer_copy_right .cncc-footer-legal-link:focus {
    color: #ffffff !important;
    text-decoration: underline;
}

.footer_copy_right .cncc-footer-legal-sep {
    color: #ffffff;
    margin: 0 6px;
    opacity: 0.8;
}

/* Podcast listing + detail */
.cncc-opp-card--podcast {
    align-items: stretch;
    min-height: 168px;
}

.cncc-opp-card__cover {
    flex: 0 0 168px;
    width: 168px;
    min-height: 168px;
    align-self: stretch;
    background: #575756;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid #e8eef3;
}

.cncc-opp-card--has-cover .cncc-opp-card__cover {
    background: #111;
}

.cncc-opp-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cncc-opp-card__cover-fallback {
    color: #fcee21;
    font-size: 36px;
}

.cncc-opp-card--podcast .cncc-opp-card__badge {
    background: #0087d7;
    color: #fff;
}

.cncc-opp-card__author {
    color: #808080;
}

@media (min-width: 992px) {
    .cncc-opp-card--podcast {
        min-height: 196px;
    }

    .cncc-opp-card--has-cover .cncc-opp-card__cover {
        flex-basis: 196px;
        width: 196px;
        min-height: 196px;
    }
}

.cncc-podcast-detail__title {
    margin: 0 0 8px;
    color: #575756;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.cncc-podcast-detail__author {
    margin: 0 0 22px;
}

.cncc-podcast-detail__author a {
    color: #0087d7;
    text-decoration: underline;
    font-weight: 600;
}

.cncc-podcast-video {
    margin: 0 0 22px;
}

.cncc-podcast-video__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
}

.cncc-podcast-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cncc-podcast-video__file {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.cncc-podcast-video__file video {
    display: block;
    width: 100%;
    max-height: 480px;
    background: #000;
}

.cncc-podcast-player {
    background: linear-gradient(160deg, #2a2140 0%, #1c152c 55%, #15101f 100%);
    color: #fff;
    border-radius: 18px;
    padding: 18px 18px 14px;
    margin-bottom: 18px;
    box-shadow: 0 14px 30px rgba(23, 16, 40, 0.28);
}

.cncc-podcast-player__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.cncc-podcast-player__cover {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 64px;
    background: #3a2f55;
}

.cncc-podcast-player__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cncc-podcast-player__info {
    flex: 1 1 auto;
    min-width: 0;
}

.cncc-podcast-player__info strong {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cncc-podcast-player__info span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.cncc-podcast-player__index {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    white-space: nowrap;
}

.cncc-podcast-player__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.cncc-podcast-player__btn {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.cncc-podcast-player__btn--play {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: #1c152c;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cncc-podcast-player__btn--skip {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.cncc-podcast-player__btn--skip span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 700;
    pointer-events: none;
}

.cncc-podcast-player__progress {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.cncc-podcast-player__progress input[type="range"],
.cncc-podcast-player__volume input[type="range"] {
    width: 100%;
    accent-color: #0087d7;
    cursor: pointer;
}

.cncc-podcast-player__utils {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cncc-podcast-player__text-btn {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 4px 6px;
    font-size: 13px;
    text-decoration: none;
}

.cncc-podcast-player__text-btn:hover,
.cncc-podcast-player__text-btn:focus {
    color: #fcee21;
    text-decoration: none;
}

.cncc-podcast-player__volume {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    flex: 1 1 140px;
}

.cncc-podcast-player__eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
    margin-left: auto;
}

.cncc-podcast-player__eq i {
    display: block;
    width: 3px;
    background: #fcee21;
    border-radius: 2px;
    height: 6px;
    animation: cncc-podcast-eq 0.9s ease-in-out infinite;
}

.cncc-podcast-player__eq i:nth-child(2) {
    animation-delay: 0.15s;
    height: 10px;
}

.cncc-podcast-player__eq i:nth-child(3) {
    animation-delay: 0.3s;
    height: 14px;
}

.cncc-podcast-player__eq i:nth-child(4) {
    animation-delay: 0.45s;
    height: 8px;
}

.cncc-podcast-player.is-playing .cncc-podcast-player__eq i {
    animation-play-state: running;
}

.cncc-podcast-player:not(.is-playing) .cncc-podcast-player__eq i {
    animation: none;
}

@keyframes cncc-podcast-eq {
    0%, 100% { transform: scaleY(0.45); }
    50% { transform: scaleY(1); }
}

.cncc-podcast-player__playlist {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cncc-podcast-player__playlist strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.cncc-podcast-player__playlist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cncc-podcast-player__playlist li + li {
    margin-top: 6px;
}

.cncc-podcast-player__playlist a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 13px;
}

.cncc-podcast-player__playlist a:hover {
    color: #fcee21;
}

.cncc-podcast-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #808080;
    font-size: 14px;
    margin: 4px 0 18px;
}

.cncc-podcast-detail__meta i {
    color: #0087d7;
    margin-right: 6px;
}

.cncc-podcast-detail__content.is-clamped {
    max-height: 7.5em;
    overflow: hidden;
    position: relative;
}

.cncc-podcast-detail__content.is-clamped::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.4em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.cncc-podcast-detail__content.is-expanded {
    max-height: none;
}

.cncc-podcast-detail__more {
    border: 0;
    background: transparent;
    color: #0087d7;
    font-weight: 600;
    padding: 8px 0 0;
    cursor: pointer;
}

.cncc-podcast-detail__more i {
    margin-left: 6px;
}

@media (max-width: 767px) {
    .cncc-opp-card--podcast {
        flex-direction: column;
        min-height: 0;
    }

    .cncc-opp-card__cover {
        width: 100%;
        flex: 0 0 auto;
        min-height: 200px;
        height: 220px;
        border-right: 0;
        border-bottom: 1px solid #e8eef3;
    }

    .cncc-podcast-detail__title {
        font-size: 24px;
    }

    .cncc-podcast-player__volume {
        min-width: 100%;
    }
}


