:root {
  --coct-blue: #2ea9d3;
  --coct-blue-dark: #1f8fb8;
  --ink: #333;
  --ink-soft: #55636b;
  --page-bg: #c9d6dd;
  --line: #c9cfd2;
  --footer: #1b2b3a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--coct-blue);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.top-band {
  background: #fff;
  border-bottom: 1px solid #eef1f3;
}

.top-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coct-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 13px 18px;
  border-radius: 3px;
  white-space: nowrap;
}

.menu-btn:hover,
.menu-btn:focus-visible,
.menu-btn.is-active {
  background: var(--coct-blue-dark);
  color: #fff;
  text-decoration: none;
}

.news-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--coct-blue);
}

.news-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  display: block;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 40, 58, 0.05) 0%, rgba(12, 40, 58, 0.28) 55%, rgba(12, 40, 58, 0.8) 100%);
}

.news-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.news-hero-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 30px;
  color: #fff;
}

.news-hero-inner h1 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.news-hero-sub {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.news-main {
  padding: 10px 0 46px;
}

.news-main--release {
  padding-top: 0;
  padding-bottom: 23px;
}

.news-main--release .content.section {
  margin-top: 0;
}

.news-inner,
.content {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

figure {
  overflow: hidden;
}

.section-heading {
  margin: 0 0 22px;
  font-size: 24px;
  color: #2a3b47;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dfe5e9;
  border-radius: 2px;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.category-card:hover,
.category-card:focus-visible {
  box-shadow: 0 6px 18px rgba(27, 43, 58, 0.14);
  transform: translateY(-2px);
  text-decoration: none;
}

.category-card-title {
  color: var(--coct-blue);
  font-size: 18px;
  font-weight: 700;
}

.category-card-meta {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #b9c7d1;
  border-radius: 999px;
  color: #2a3b47;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.category-pill.is-active,
.category-pill:hover,
.category-pill:focus-visible {
  background: var(--coct-blue);
  border-color: var(--coct-blue);
  color: #fff;
  text-decoration: none;
}

.media-release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.media-release-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dfe5e9;
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.media-release-card:hover {
  box-shadow: 0 6px 18px rgba(27, 43, 58, 0.14);
  transform: translateY(-2px);
}

.media-release-thumb {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.media-release-details {
  padding: 16px 18px 20px;
}

.media-release-title {
  display: inline-block;
  color: var(--coct-blue);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.media-release-title:hover,
.media-release-title:focus-visible {
  color: var(--coct-blue-dark);
}

.media-release-date {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.category-tag {
  margin: 10px 0 0;
  color: #2a3b47;
  font-size: 12px;
  font-weight: 700;
}

/* .updates-section,
.content.section {
  margin-top: 34px;
  padding: 22px 26px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid #dfe5e9;
  border-radius: 2px;
} */

.updates-section {
  margin-top: 34px;
  padding: 4px 4px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid #dfe5e9;
  border-radius: 2px;
}

.content {
  width: min(876px, calc(100% - 32px));
  margin: 0 auto;
  background: #fff;
}

.section {
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.section:last-child { border-bottom: 0; }

.updates-section {
  text-align: center;
  font-size: 13px;
}

.backbutton {
    justify-self: anchor-center;
    padding-bottom: 10px;
}

.content .section h1 {
  margin-top: 0;
  color: var(--ink);
}

.bottom-band {
  background: var(--footer);
  color: #cfd8e0;
}

.footer-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  font-size: 11px;
  text-align: center;
}

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

  .news-hero {
    height: 300px;
  }

  .news-hero-inner h1 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .top-inner {
    min-height: 74px;
  }

  .logo {
    width: 168px;
  }

  .menu-btn {
    padding: 11px 14px;
    font-size: 12px;
  }

  .news-hero {
    height: 230px;
  }

  .news-hero-inner h1 {
    font-size: 25px;
  }

  .category-grid,
  .media-release-grid {
    grid-template-columns: 1fr;
  }

  .media-release-thumb {
    height: 200px;
  }
}


.margin20 {
    margin-top:20px;
}


#trendingLinks .flex-container {
    padding: 0 2% 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    background-color: rgba(255,255,255,0.9);
    margin-left: -5px;
    margin-right: -5px;
    padding-left: 10px;
    padding-right: 10px;
}

#trendingLinks .flex-item {
    font-size: 14px;
    border-radius: 2px;
    padding: 10px 20px;
    margin: 4px;
    background: #2ea9d3;
    flex: 1 0 auto;
    color: #fff;
    /* height: 40px; */
    /* vertical-align: middle; */
}

    /* Trending Items - Hover */

    #trendingLinks .flex-item:hover {
        background-color: #2488aa
    }

    #trendingLinks .flex-item:hover,
    #trendingLinks  .flex-item:visited {
        color: #fff;
        text-decoration: none
    }

        #trendingLinks .flex-item:hover:hover,
        #trendingLinks .flex-item:visited:hover {
            color: #fff
        }

    #trendingLinks .flex-item.invert {
        background-color: #fff;
        color: #2ea9d3
    }


#trendingLinks .flex-container-header {
    margin-left: -5px;
    margin-right: -5px;
    padding-left: 10px;
    padding-right: 10px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0px;
    margin-top: 10px;
}

#trendingLinks {
    line-height:1;
}

.release-documents ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-left: 6px;
    list-style-type: none; 
}


.file-type.type-pdf
Specificity: (0,2,0) {
    color: #e2574c;
}

.file-type {
/*    position: absolute;
    left: 0;
    top: -2px;*/
    color: #e2574c;
}

.file-type, .link-with-check p a {
    font-weight: 700;
}

.file-type:before {
     content: "[" attr(title) "]";
     font-size: 10px;
     background: 0 0;
}


/*alert notification start*/
.bg-darker-grey {
    background-color: #2e3235
}



.notification {
    min-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px
}

    .notification:not(.toggle) {
        margin-bottom: 25px
    }

@media only screen and (min-width:700px) {
    .notification {
        display: table;
        padding-top: 0;
        padding-bottom: 0
    }

        .notification:not(.toggle) {
            margin-bottom: 40px
        }
}

.cookie-notice .notification,
.no-js .notification {
    margin-bottom: 0
}

.notification.toggle {
    padding-bottom: 60px;
    margin: 0
}

    .notification.toggle.closed {
        display: block;
        height: 60px;
        padding-bottom: 0;
        overflow: hidden
    }

        .notification.toggle.closed .desc,
        .notification.toggle.closed .graphic {
            opacity: 0
        }

    .notification.toggle .desc {
        min-height: auto;
        color: #fff;
        border-color: #ffc100
    }

.notification .toggle-alert {
/*    position: absolute;*/
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1
}

    .notification .toggle-alert .btn {
        color: #2ea9d3;
        background-color: #2e3235;
        margin-bottom: 0;
        padding: 0;
        line-height: 60px
    }

        .notification .toggle-alert .btn i {
            margin: 0 8px 0 6px
        }

        .notification .toggle-alert .btn:hover i {
            -ms-transform: none;
            transform: none
        }

@media only screen and (min-width:700px) {
    .notification.toggle {
        padding-top: 0;
        padding-bottom: 0
    }

        .notification.toggle.closed {
            height: 10px
        }

    .notification .toggle-alert {
        width: auto;
        right: 15px;
        bottom: -30px
    }

        .notification .toggle-alert .btn {
            line-height: 1;
            padding: 12px 4px 12px 12px
        }
}

.notification .desc,
.notification .graphic {
    opacity: 1;
    transition: opacity 1s
}

.notification .graphic {
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    text-align: center
}

    .notification .graphic i,
    .notification .graphic img {
        margin: 0 auto
    }

    .notification .graphic img {
        max-width: 60px
    }

.notification .no-border i,
.notification .with-border i {
    border: 2px solid #fff;
    border-radius: 50%
}

@media(-webkit-min-device-pixel-ratio:2), (min-resolution:192dpi) {
    .notification .no-border i,
    .notification .with-border i {
        border-width: 1px
    }
}

@media only screen and (min-width:700px) {
    .notification .graphic {
        display: table-cell;
        vertical-align: middle;
        padding: 0 30px 0 0
    }

        .notification .graphic img {
            max-width: 80px
        }

    .notification .no-border i,
    .notification .with-border i {
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.notification .no-border {
    border-width: 0
}

.notification .desc {
    border-top: 1px solid #fff;
    margin: 20px 0 0;
    padding-top: 15px
}

@media only screen and (min-width:700px) {
    .notification .desc {
        min-width: 495px;
        min-height: 86px;
        padding-top: 0;
        margin: 30px 0;
        padding-left: 30px;
        border-top: none;
        border-left: 1px solid #fff
    }

    .cookie-notice .notification .desc,
    .no-js .notification .desc {
        min-height: auto
    }

    .media-editorial-tpl .notification .desc {
        min-width: 425px
    }
}

.notification .desc p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0
}

    .notification .desc p a {
        font-weight: 700
    }

.notification.no-devider {
    padding: 20px
}

    .notification.no-devider .graphic {
        min-height: auto
    }

        .notification.no-devider .graphic i {
            -ms-transform: scale(1);
            transform: scale(1)
        }

    .notification.no-devider .desc {
        min-height: auto;
        margin: 0;
        border: none
    }

@media only screen and (min-width:700px) {
    .notification.no-devider .graphic {
        padding: 0 0 0 20px
    }

    .notification.no-devider .desc {
        padding: 10px 20px;
        border: none
    }
}

.notification.with-heading {
    padding: 20px
}

    .notification.with-heading .desc {
        border: none;
        margin: 0
    }

        .notification.with-heading .desc h4 {
            display: block;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #424242;
            text-align: center
        }

@media only screen and (min-width:700px) {
    .notification.with-heading {
        padding: 30px 20px
    }

        .notification.with-heading .desc {
            border-left: 1px solid #424242
        }

            .notification.with-heading .desc h4 {
                padding-bottom: 0;
                border: none;
                text-align: left
            }

        .notification.with-heading .graphic {
            padding-left: 10px
        }
}

.notification.dark-copy .desc,
.notification.dark-copy .with-border i,
.notification.dark-copy .with-border img {
    border-color: #424242
}

.notification.white-copy .desc,
.notification.white-copy .desc h4 {
    color: #fff;
    border-color: #fff
}

.notification.yellow .desc,
.notification.yellow .desc h4,
.notification.yellow .with-border i,
.notification.yellow .with-border img {
    border-color: #ffc100
}

.notification.pink .desc,
.notification.pink .desc h4,
.notification.pink .with-border i,
.notification.pink .with-border img {
    border-color: #ea2a74
}

.notification.blue .graphic i,
.notification.blue .graphic img {
    background-color: #4682a1;
    border-color: transparent
}

.notification.blue .with-border i,
.notification.blue .with-border img {
    border-color: #4682a1;
    background-color: transparent
}

.notification.blue .desc,
.notification.blue .desc h4 {
    border-color: #4682a1
}

.notification.light-blue .desc,
.notification.light-blue .desc h4,
.notification.light-blue .with-border i,
.notification.light-blue .with-border img {
    border-color: #2ea9d3
}

.notificationTitle {
    margin-bottom: 6px;
    font-weight:bold;
}
/*alert notification end*/

