/****Initial Overrides / Basic Theming. All of this CSS should be moved to nested files within basic/css***/


/*Fonts*/
/* @import url("https://use.typekit.net/oka8trl.css"); */
@import url("https://use.typekit.net/acz8yjq.css");

/*Colors*/
:root {
    --AIB-Red: #C00404;
    --AIB-Digital-Yellow: #FFC72C;
    --AIB-White: #fff;
    --AIB-Off-White: #F9FAFB;
    --AIB-Divider-Gray: #F0F2F3;
    --AIB-Gray: #97A3AE;
    --AIB-Dark-Gray: #5B5B5B;
    --AIB-Black: #000;
    --AIB-Brown: #4E3629;
}

/*Layout*/
:root {
    --AIB-Layout-Max-Width: 1326px;
    --AIB-Layout-Container-Padding: 57px;
}

/*Fonts*/
:root {
    --AIB-Font-Area-Normal: "area-normal", sans-serif;
    --AIB-Font-Minion-Pro: "minion-pro", serif;
    --AIB-Font-Awesome: "Font Awesome 7 Pro";
}

@media (max-width: 767px) {
  :root {
    --AIB-Layout-Container-Padding: 20px;
  }
}

/***** Admin *****/
div#toolbar-administration, gin-secondary-toolbar {
    z-index: 9999 !important;
}
.messages.messages--status {
    display: none;
}
/***** Admin *****/

html{
    font-family: var(--AIB-Font-Area-Normal);
}

h1 {
    font-family: var(--AIB-Font-Minion-Pro);
    font-size: 62px;
    font-weight: bold;
}
h2 {
    font-family: var(--AIB-Font-Minion-Pro);
    font-size: 42px;
    font-weight: bold;
}
h1, h2, h3, h4, h5 {
    transition: all 200ms ease-in-out;
}
p {
    line-height: 2;
}
a:hover {
    color: unset;
}
.heading-link:hover a {
    text-decoration: underline;
}
.heading-link.heading-arrow:hover::after, .featured-link-banner-card .pb__content-full a:hover h3:after {
    content: '\f0c1';
}
.heading-link.heading-arrow.heading-yellow:hover a {
    color: var(--AIB-Digital-Yellow);
}
.heading-link.heading-arrow.heading-yellow:hover::after, .featured-link-banner-card .pb__content-full a:hover h3:after{
    background-color: var(--AIB-Digital-Yellow);
}
.heading-link.heading-arrow.heading-red:hover::after{
    background-color: var(--AIB-Red);
}
h2.heading-red {
    color: var(--AIB-Red) !important;
}
p.subheading {
    text-transform: uppercase;
    font-weight: 800;
}
p.subheading.yellow {
    color: var(--AIB-Digital-Yellow);
}
p.subheading.yellow:hover {
    color: var(--AIB-Digital-Yellow);
}

/***** Utility *****/
.text-center {
    text-align: center;
}
.margin-bottom {
    margin-bottom: 3em;
}
.section.padding-small {
    padding-top: 50px;
    padding-bottom: 50px;
}
.section.dark {
    color: var(--AIB-White);
}

/***** Breadcrumb *****/
div#block-basic-breadcrumbs {
    display: inline-block;
    border: 1px solid var(--AIB-Divider-Gray);
    border-radius: 36px;
    background-color: var(--AIB-White);
    padding: 10px 24px;
    transform: translateY(24px);
}
nav.breadcrumb {
    padding-bottom: 4px;
    color: var(--AIB-Black);
}
nav.breadcrumb:hover {
    color: var(--AIB-Red);
}

/***** Header *****/
div#content-header {
    display: none;
}
.sidebar-first div#content-header {
    display: block;
    width: 100%;
    height: 48px;
    grid-column: 1 / span 2;
    background-image: url(../images/content-header-bg.jpg);
    background-size: cover;
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
}
#header-region {
    position: relative;
}
.region-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: var(--AIB-White);
}
.container.about-people #content-header #content-header-inner, .container.about-people #content-header #content-header-inner #content-header-banner, .container.about-people #content-header #content-header-inner #content-header-banner #highlighted, .container.about-people #content-header #content-header-inner #content-header-banner #highlighted .region-content-header {
    height: 100%;
}
.container.about-people #content-header #content-header-inner #content-header-banner #highlighted .region-content-header {
    display: flex;
    align-items: flex-end;
}
  
  /* Top banner takes full width */
  div#aib-header {
        border-top: 4px solid var(--AIB-Red);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    }
  #aib-header > .block-superfish {
    width: 100%;
    background: #F0F2F3;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
    display: flex;
    justify-content: right;
    flex: 0 0 100%;
  }
  div#aib-logo-and-main-menu {
    width: 100%;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: relative;
    overflow-x: clip;
}
div#aib-logo-actual {
    width: 100%;
    max-width: 295px;
}
div#aib-logo-actual a.logolink {
    display: inline-block;
}
  
  /* Create a centered row for branding and menu */
  #block-basic-branding,
  #block-basic-aibmain-2 {
    align-items: center; /* vertically centers content inside */
  }
  
  /* Constrain their combined width */
  #block-basic-branding {
    flex: 0 0 auto;
    max-width: 295px; /* adjust as needed for logo */
  }
  
  #block-basic-aibmain-2 {
    flex: 0 1 auto;
    max-width: calc(1326px - 295px); /* remaining space within 1326px */
  }

#superfish-aib-top-banner {
    display: flex;
    justify-content: space-between;
    background: #F0F2F3;
    width: 100%;
    max-width: var(--AIB-Layout-Max-Width);
    margin-bottom: 0px;
}

#superfish-aib-top-banner li {
    font-family: minion-pro, serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    letter-spacing: -0.16px;
    font-style: italic;
    padding: 10px 18px;
}

#superfish-aib-top-banner li:last-child{
    padding-right: 0px;
}

#superfish-aib-top-banner li:not(:last-child):after{
    width: 14px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100%;
    background: #b7b09c;
    content: "";
    margin-top: 1px;
    transform: translate(-50%, -50%);
}


#superfish-aib-top-banner li a{
    color: var(--AIB-Red);
    padding: 0px;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

#superfish-aib-top-banner li a:after{
    height: 2px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--AIB-Red);
    content: "";
    transition: transform .35s;
    transform: scaleX(0);
    transform-origin: left center;
}

#superfish-aib-top-banner li:hover a:after{
    transform: scaleX(1);
}


#superfish-aib-top-banner li:first-child {
    margin-left: auto;
}

#superfish-aib-main li:last-child a {
    padding-right: 0px;
}

#block-basic-branding{
    padding: 20px 18px;
}

/* #block-basic-branding, #block-basic-aibmain-2 {
    max-width: var(--AIB-Layout-Max-Width);
    margin: 0 auto;
} */

/* #block-basic-branding img {
    max-width: 295px;
} */
@media (max-width: 767px) {
    #aib-header > .block-superfish {
        display: none;
    }
}
@media (max-width: 959px) {
    div#aib-logo-actual {
        max-width: 160px;
    }
    #superfish-aib-main li a {
        padding-right: 10px;
        font-size: 13px !important;
    }
    #superfish-aib-main li.sf-depth-1.sf-last {
        margin-left: 12px;
        height: 30px;
        width: 30px;
    }
    #superfish-aib-main li.sf-depth-1.sf-last a::before {
        font-size: 13px;
    }
}

/**Forms**/
/**Search**/
div#searchbox {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin-top: -229px;
    padding: 57px;
    background-color: #fff;
    z-index: 999;
    opacity: 0;
    transition: all 200ms;
}
div#searchbox.is-active {
    margin-top: -48px;
    opacity: 1;
}

div#searchbox form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    position: relative;
}
div#searchbox form input, div#searchbox form input, .view-filters form .js-form-item.form-item-keys input {
    margin: 0;
    background-color: #F9FAFA;
    border-color: var(--AIB-Gray);
    padding: 20px 30px 20px 45px;
}
div#searchbox form input, div#searchbox form input {
    max-width: 540px;
}
div#searchbox form input:hover {
    border-color: var(--AIB-Black);
}
div#searchbox form input:focus {
    border-color: var(--AIB-Red);
    box-shadow: none;
}
div#searchbox form::before, .view-filters form .js-form-item.form-item-keys:before {
    content: '\f002';
    font-family: 'Font Awesome 7 Pro';
    font-size: 14px;
    color: var(--AIB-Red);
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1;
}
div#searchbox form button {
    width: 300px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--AIB-Red);
    font-size: 13px;
    letter-spacing: 2px;
}
div#searchbox form button:hover {
    background-color: var(--AIB-Black);
}
div#searchbox form button[type="submit"]::after {
    content: '\f061';
    font-family: 'Font Awesome 7 Sharp';
    margin-left: 5px;
}
#searchbox .btn-close {
    width: auto;
    margin-left: auto;
}
#searchbox .btn-close::after {
    font-family: 'Font Awesome 7 Sharp';
    font-size: 18px;
    content: '\f00d';
    margin-left: 2px;
}
div#searchbox-mobile-container {
    margin-left: auto;
    margin-right: 1em;
}
div#searchbox-mobile-container i {
    font-size: 20px;
    color: var(--AIB-Red);
    cursor: pointer;
}
/***** View Filters *****/
.view-filters input.form-autocomplete {
    background-image: none !important;
}
.view-filters select {
  appearance: none;
  @supports (appearance: base-select) {
    &,
    &::picker(select) {
      appearance: base-select;
    }
  }
}

.view-filters select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 300px;
  color: var(--AIB-Dark-Gray);
  padding-block: 10px;
  padding-inline: 10px 30px;
  border: 1px solid var(--AIB-Gray);
  cursor: pointer;

  /* ----------------------------------------------- */
  /* FONT AWESOME CHEVRON DOWN (encoded SVG)          */
  /* ----------------------------------------------- */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#C00404' viewBox='0 0 448 512'%3E%3Cpath d='M207.029 381.476 12.686 187.132c-12.497-12.497-12.497-32.758 0-45.255l22.627-22.627c12.497-12.497 32.758-12.497 45.255 0L224 244.118l143.432-143.43c12.497-12.497 32.758-12.497 45.255 0l22.627 22.627c12.497 12.497 12.497 32.758 0 45.255L240.971 381.476c-12.497 12.497-32.758 12.497-45.255 0z'/%3E%3C/svg%3E") right 10px center / 16px no-repeat;

  @supports (appearance: base-select) {
    padding-inline: 10px;
    background-image: none;

    /* ----------------------------------------------- */
    /* ::picker-icon  — FA Chevron Down                */
    /* ----------------------------------------------- */
    &::picker-icon {
      content: '\f078';
        font-family: var(--AIB-Font-Awesome);
        color: var(--AIB-Red);
        transition: rotate 0.2s ease-out;
    }

    /* rotate arrow when open */
    &:open::picker-icon {
      rotate: 180deg;
    }

    /* ----------------------------------------------- */
    /* Picker panel styling                            */
    /* ----------------------------------------------- */
    &::picker(select) {
      padding: 0;
      margin-top: 5px;
      border: 1px solid var(--AIB-Gray);
      font-weight: 400;

      opacity: 0;
      height: 0;
      overflow: clip;

      transition:
        height 0.5s ease-out,
        opacity 0.5s ease-out,
        overlay 0.5s,
        display 0.5s;

      transition-behavior: allow-discrete;
    }

    &:open::picker(select) {
      opacity: 1;
      height: calc-size(auto, size);
      overflow: auto;
      @starting-style {
        opacity: 0;
        height: 0;
      }
    }

    /* ----------------------------------------------- */
    /* Option styling                                  */
    /* ----------------------------------------------- */
    option {
      padding: 10px 16px;
      border-top: 1px solid var(--AIB-Gray);
      cursor: pointer;
      color: var(--AIB-Dark-Gray);
      background-color: #fbfcfc;
      transition-property: color, background;
      transition-duration: 0.2s;
      transition-timing-function: ease-out;

      &:where(:hover, :focus, :active) {
        color: var(--AIB-Red);
      }

      &:checked {
        background-color: var(--AIB-White);
      }

      &::checkmark {
        display: none;
      }

      &:first-child {
        border: 0;
      }
    }
  }
}

.view-filters select:focus {
    outline: none;
}
.view-filters {
    margin-top: 2em;
}
.view-filters form .form--inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.view-filters .js-form-item {
    margin: 0;
    margin-right: 0 !important;
}
.view-filters .aib-select-form-wrapper select {
    width: 100%;
    border-radius: 0;
}
.view-filters form .js-form-item.form-item-keys {
    grid-column: 1 / -1;
    position: relative;
    margin: 0;
}
.view-filters form .js-form-item.form-item-keys label, .view-filters form .js-form-item.js-form-type-select label {
    display: none;
}
.view-filters form .js-form-item.js-form-type-textfield:not(.form-item-keys) input, .view-filters form .js-form-item.js-form-type-select .aib-select-form-wrapper select {
    color: var(--AIB-Dark-Gray);
    font-weight: 400;
    padding: 10px 16px;
    border: 1px solid var(--AIB-Gray);
    margin: 0;
    border-radius: 0;
}
/**Top Menu**/

#block-basic-aibtopbanner {

}

ul#superfish-aib-top-banner {
    float: right;
}

ul#superfish-aib-top-banner li {
    background: transparent !important;
}

/**Main Menu***/
#superfish-aib-main {
    float: right;
    margin-bottom: 0px;
}

#superfish-aib-main li{
    font-weight: 900;
}

#superfish-aib-main li a{
    color: var(--AIB-Red);
    padding-right: 15px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    font-family: var(--AIB-Font-Area-Normal);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .1px;
}
#superfish-aib-main li a span.sf-sub-indicator {
    display: none;
}
#superfish-aib-main li.sfHover a {
    color: #000;
}

#superfish-aib-main li{
    background: #fff;
}
#superfish-aib-main li.sf-depth-1.sf-last {
    height: 37px;
    width: 37px;
    display: grid;
    place-content: center;
    margin-left: 1em;
}
#superfish-aib-main li.sf-depth-1.sf-last a {
    background-color: var(--AIB-Red);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    font-size: 0;
    color: transparent;
}
#superfish-aib-main li.sf-depth-1.sf-last a:hover {
    background-color: var(--AIB-Black);
}
#superfish-aib-main li.sf-depth-1.sf-last a::before {
    content: "\f002";
    font-family: "Font Awesome 7 Pro";
    font-weight: 300;
    font-size: 1rem;
    color: #fff;
    line-height: 1;
    transition: color 0.3s ease-in-out;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
/*Main Menu sub menu*/
ul.sf-menu.sf-horizontal.sf-shadow ul, ul.sf-menu.sf-vertical.sf-shadow ul, ul.sf-menu.sf-navbar.sf-shadow ul ul {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
#superfish-aib-main ul li{
    border-bottom: 1px solid var(--AIB-Divider-Gray);
    padding: 20px 35px;
    transition: all 0.3s ease-in-out;
}
#superfish-aib-main ul li a{
    font-size: 14px;
    text-transform: none;
    color: #000 !important;
    font-weight: 400 !important;
    font-family: var(--AIB-Font-Area-Normal);
    transition: all 0.3s ease-in-out;
    padding: 0px;
}

#superfish-aib-main ul li:hover{
    background: #fbfcfc;
}

#superfish-aib-main ul li:hover > a{
    color: var(--AIB-Red) !important;
}
@media (max-width: 767px) {
    #block-basic-aibtopbanner {
        padding: 0;
    }
    #block-basic-aibtopbanner .sf-accordion-toggle, #superfish-aib-main-toggle span, #aib-header > .block-superfish {
        display: none;
    }
    #block-basic-branding {
        max-width: 180px;
    }
    #aib-logo-and-main-menu > .block-superfish {
        width: unset;
        position: unset;
    }
    div#aib-logo-actual {
        max-width: 200px;
    }
    ul#superfish-aib-main-accordion.sf-menu.sf-accordion {
        width: 100% !important;
        height: auto !important;
        clip: auto;
        position: absolute;
        display: block;
        left: 100% !important;
        top: 100% !important;
        transition: all 0.15s ease-in-out;
    }
    ul#superfish-aib-main-accordion.sf-expanded {
        transform: translateX(-100%);
        right: 0;
    }
    ul.sf-menu.sf-style-default li, ul.sf-menu.sf-style-default li li li, ul.sf-menu.sf-style-default.sf-accordion li.sf-expanded {
        border-bottom: 1px solid var(--AIB-Divider-Gray);
        background: #fff !important;
    }
    ul.sf-menu.sf-style-default li:hover, ul.sf-menu.sf-style-default li.sfHover, ul.sf-menu.sf-style-default a.is-active, ul.sf-menu.sf-style-default a:focus, ul.sf-menu.sf-style-default a:hover, ul.sf-menu.sf-style-default span.nolink:hover {
        background: #fbfcfc;
    }
    ul.sf-menu.sf-style-default li a {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
        padding: 20px;
    }
    ul.sf-menu .sf-sub-indicator {
        right: 20px;
    }
    ul.sf-menu.sf-style-default li a, ul.sf-menu.sf-style-default li a:visited {
        color: var(--AIB-Red);
    }
    ul.sf-menu.sf-accordion .sf-sub-indicator:after {
        content: "\f078";
        font-family: 'Font Awesome 7 Sharp';
        font-weight: 600;
    }
    div.sf-accordion-toggle.sf-style-default a {
        background: var(--AIB-Red) !important;
        color: #fff !important;
        display: flex !important;
        font-weight: 900 !important;
        width: 45px;
        height: 45px;
        padding: 0 !important;
    }
    div.sf-accordion-toggle.sf-style-default > a:after {
        content: "\e0ae" !important;
        font-size: 1.3rem !important;
        position: unset !important;
        transform: none !important;
        font-family: 'Font Awesome 7 Pro';
        display: grid;
        place-content: center;
        width: 100%;
    }
    div#searchbox {
        padding: 20px;
    }
    div#searchbox.is-active {
        margin-top: 0px;
    }
}
@media (min-width: 768px) {
    div#searchbox-mobile-container {
        display: none;
    }
}


/***Index Page*****/

#index_top_cta {
    background: #5f3f3f;
    color: #fff;
    text-align: center;
}

#index_top_cta ul li {
    display: inline-block;
    width: 550px;
    vertical-align: text-top;
    text-align: center;
    padding: 50px;    
}

/* Basic Page Container Styles */
.dialog-off-canvas-main-canvas {
    max-width: 1800px;
    margin: 0 auto !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    background: #fbfbfb;
}
div#main, section#content, #content-wrapper, .no-sidebar #content {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0;
}
div#content-wrapper {
    display: flex;
    flex-direction: row;
}
.sidebar-first section#content {
    background-color: var(--AIB-White);
}
.sidebar-first section#content {
    display: grid;
    grid-template-columns: 430px 1fr;
}
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.content > .paragraph:not(.paragraph--type--hero-bundle), .hero-bundle-inner .pb__hero-txt-wrapper, .section {
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
}
.content > .paragraph > .paragraph__inner {
    max-width: var(--AIB-Layout-Max-Width) !important;
    width: 100% !important;
    margin: 0 auto;
}
.section.width-medium > .paragraph {
    max-width: 960px;
    margin: 0 auto;
}

/***** Sidebar *****/
aside#sidebar-first {
    margin: 0 !important;
    background-color: var(--AIB-White);
    padding-right: var(--AIB-Layout-Container-Padding);
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-top: 3em;
    width: 100%;
}
.region.region-sidebar-first {
    position: sticky;
    top: 2em;
    padding-top: 1em;
    border-top: 1px solid var(--AIB-Divider-Gray);
}
#sidebar-first ul.menu {
    font-size: 14px;
    list-style: none;
    margin-bottom: 20px;
}
#sidebar-first li.menu-item.menu-item--expanded > a, #sidebar-first ul.menu li.menu-item a:hover, #sidebar-first ul.menu li.menu-item a.is-active {
    color: var(--AIB-Red) !important;
}
#sidebar-first ul.menu li.menu-item {
    list-style: none;
}
#sidebar-first ul.menu:not(ul.menu ul.menu) > li:not(:first-of-type) {
    border-top: 1px solid var(--AIB-Divider-Gray);
    padding: 20px 0px;
}
#sidebar-first ul.menu ul.menu li.menu-item {
    padding: 14px 0 0 0;
}
#sidebar-first ul.menu li.menu-item a {
    color: var(--AIB-Black);
}

/* Hero Section Styles */
.hero-bundle-inner .pb__image-full picture img {
    min-height: 640px;
    object-fit: cover;
}   
.hero-bundle-inner .pb__row.pb__image-full:after {
    background: linear-gradient( to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bundle-inner .pb__hero-txt-wrapper {
    color: #fff;
}
.pb__hero-txt-wrapper-inner h1 {
    margin-bottom: 0;
}
.paragraph--type--hero-bundle .pb__hero-txt-wrapper h1 {
    font-size: 62px;
}
.paragraph--type--hero-bundle .pb__hero-txt-wrapper p {
    font-size: 20px;
    font-family: var(--AIB-Font-Minion-Pro);
    line-height: 1.2;
}
a.hover-icon-link {
    margin-top: 1em;
}
.paragraph--type--hero-bundle .pb__row.pb__hero-txt-wrapper-inner {
    position: relative;
    margin: 0;
    padding-bottom: 3em;
}
.paragraph--id--4408 .pb__hero-txt-wrapper-inner {
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-start;
}

/* Accordion Paragraph block */
.brownaccordion {
    background-color: var(--AIB-Brown);
    color: var(--AIB-White);
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
    position: relative;
    border-top: solid 1px var(--AIB-Red);
}
.feature-expander-index > .featured-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding-bottom: 3em;
}
.feature-expander-index button.featured-toggle { /*Homepage Expand Accordion Button*/
    font-family: var(--AIB-Font-Area-Normal);
    margin-left: auto;
    margin-right: auto;
    background: var(--AIB-Red);
    border-radius: 38px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
    color: var(--AIB-White);
    padding: 6px 20px;
    text-align: center;
    min-width: 170px;
    height: 38px;
    margin-top: -19px;
}

.feature-expander-index button.featured-toggle:hover, .feature-expander-index .is-expanded button.featured-toggle {
    background: var(--AIB-Digital-Yellow);
    color: var(--AIB-Black);
}
.featured-toggle span.icon, .feature-expander-index .views-field.views-field-field-event-date, .feature-expander-index .views-field.views-field-field-event-category {
    display: none;
}
.feature-expander-index button.featured-toggle:after {
    content: '\f077';
    font-family: 'Font Awesome 7 Sharp';
    display: inline-block;
    transition: all 100ms ease-in-out;
}
.feature-expander-index .is-expanded button.featured-toggle:after {
    transform: rotate(180deg);
}
.feature-expander-index .views-field.views-field-field-media-image {
    position: relative;
    pointer-events: none;
    margin-bottom: 1em;
    transition: all 200ms ease-in-out;
}
.feature-expander-index .views-field.views-field-field-media-image img.image-style-feature-accordion, .feature-expander-index .views-field.views-field-field-media-image a {
    position: relative;
    width: 100%;
    z-index: 0;
    transition: all 200ms ease-in-out;
}
.feature-expander-inner .views-field.views-field-title {
    margin-top: -1em;
}
.feature-expander-index span.field-content {
    color: var(--AIB-Digital-Yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}
.feature-expander-index span.field-content p:before {
    font-family: 'Font Awesome 7 Pro';
    margin-right: 10px;
    font-size: 15px;
}
.feature-expander-index span.field-content p.featured-accordion-event:before {
    content: '\e0d6';
}
.feature-expander-index span.field-content p.featured-accordion-publication:before {
    content: '\e753';
}
.feature-expander-index span.field-content p.featured-accordion-opportunity:before {
    content: '\e603';
}
.feature-expander-index .views-field.views-field-title span.field-content {
    font-size: 18px;
    font-weight: 700;
    color: var(--AIB-White);
    text-transform: none;
    transition: all 200ms ease-in-out;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0);
}
.feature-expander-index .views-field.views-field-title span.field-content:hover {
    color: var(--AIB-Digital-Yellow);
    text-decoration-color: rgba(255, 255, 255, 0.25);
}
.slider-nav-btn {
    display: none !important;
}
@media (max-width: 991px) {
    button.featured-toggle {
        display: none;
    }
    .feature-expander-inner .paragraph__inner .pb__content-full {
        overflow: hidden;
    }
    .feature-expander-index > .featured-content-wrapper {
        padding-top: 3em;
    }
    .feature-expander-inner .pb__three-columns.three-l4_l4_l4 {
        grid-template-columns: repeat(3, 100%);
        gap: 0;
        transition: transform 200ms ease-in-out;
    }
    .feature-expander-index .views-field.views-field-field-media-image {
        pointer-events: all;
    }
    /* Nav buttons (injected by JS) */
    button.slider-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--AIB-Digital-Yellow);
        color: var(--AIB-Black);
        width: 40px;
        height: 40px;
        font-size: 15px;
        text-align: center;
        z-index: 10;
    }
    button.slider-nav-btn:hover {
        background: var(--AIB-Black);
        color: var(--AIB-White);
    }
    button.slider-nav-btn.prev { 
        left: 0px; 
    }
    button.slider-nav-btn.next { 
        right: 0px; 
    }
}
@media (min-width: 992px) {
    .feature-expander-index .is-expanded .views-field.views-field-field-media-image {
        margin-bottom: 2em;
        pointer-events: all;
    }
    .feature-expander-index .is-expanded .views-field.views-field-field-media-image img.image-style-feature-accordion, .feature-expander-index .is-expanded .views-field.views-field-field-media-image a {
        margin-top: 0px;
        margin-bottom: 0px;
        opacity: 1;
        pointer-events: all;
    }
    .feature-expander-index .views-field.views-field-field-media-image img.image-style-feature-accordion, .feature-expander-index .views-field.views-field-field-media-image a {
        pointer-events: none;
        margin-top: -100%;
        opacity: 0;
    }
}


/* Subheading Callout Paragraph Block */
.callout-ribbon > div {
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
    padding-top: 50px;
    padding-bottom: 50px;
}
.callout-ribbon .pb__card-three-columns {
    display: grid;
    grid-template-columns: 25% auto 30%;
    gap: 0;
}
.callout-ribbon .pb__card-two-columns {
    display: grid;
    grid-template-columns: 35% auto;
    gap: 0;
}
.callout-ribbon .pb__card-three-columns > * {
    justify-content: center !important;
}
.paragraph--id--5 .pb__card-three-columns .pb-card-three-left .paragraph > .paragraph__inner, .paragraph--id--4497 .pb__card-three-columns .pb-card-three-left .paragraph > .paragraph__inner, .paragraph--id--4497 .pb-card-two-right, .brown-tutoring-corps-section .pb-col-left {
    justify-content: center !important;
}

.paragraph--id--4494 .pb-card-three-middle, .paragraph--id--4497 .pb-card-two-right {
    padding-left: 40px;
}

/*Homepage upcoming events*/
.arrow-link-heading h2 {
    margin-bottom: 12px;
}

.upcoming-events-section {
    background-color: var(--AIB-Divider-Gray);
    padding: 80px var(--AIB-Layout-Container-Padding);
}

.view-index-events-grid ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 2rem;                
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
 
  .view-index-events-grid li {
    display: flex;
    flex-direction: column;   
    min-width: 0;             
  }
  
 
  .view-index-events-grid li > *:last-child {
    margin-top: auto;
  }

  .sponsor-image a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;  
    display: block;              
    position: relative;
    border: 2px solid #fff !important;
}

.view-index-events-grid .views-field-field-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;         
    object-position: center;  
    display: block;
  }

.view-index-events-grid .views-field-field-event-date {
    font-size: 13px !important;
    font-family: 'minion-pro';
    font-style: italic;
    margin-bottom: 10px;
}
.view-index-events-grid .views-field-field-event-category {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--AIB-Red) !important;
    font-size: 13px;
    margin-bottom: 4px;
}
.view-index-events-grid .views-field-field-event-category:hover {
    text-decoration: underline;
}
.view-index-events-grid .views-field.views-field-title h3 {
    font-size: 18px;
    font-weight: 500;
}

.field-content.event-grid-sponsor {
    display: flex;
    align-items: center;
    gap: 7px;
}
.sponsor-name {
    font-size: 16px;
    font-style: italic;
    font-family: 'minion-pro';
}

.sponsor-image, .sponsor-name {
    display: inline-block;
}

/*END Homepage upcoming events*/

/*Homepage Annenberg Experience*/
.featured-link-banner {
    padding: 60px;
    display: flex;
    align-items: center;
}
.featured-link-banner-inner {
    border-left: 4px solid var(--AIB-Digital-Yellow) !important;
    padding-left: 2em;
}
.featured-link-banner-inner .pb__three-columns.three-l6_l3_l3 {
    display: flex;
    align-items: center;
}
.featured-link-banner-inner h2 {
    margin-bottom: 10px;
}
.featured-link-banner-inner .pb-col-left h2::after, h2.heading-arrow::after, .featured-link-banner-card h3:after {
    content: '\f061';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Font Awesome 7 Sharp';
    font-size: 15px;
    font-weight: 400;
    margin-left: 15px;
    vertical-align: middle;
    border-radius: 50%;
    background-color: var(--AIB-Red);
    width: 30px;
    height: 30px;
}
.featured-link-banner-inner .field--name-pb-image-field img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.featured-link-banner-card h3:after {
    padding: 5px;
}
.featured-link-banner-inner .pb-col-left {
    flex: 0 0 50%;
}
.featured-link-banner-inner .pb-col-middle, .featured-link-banner-inner .pb-col-right {
    background-color: #fff;
    padding: 15px;
    height: fit-content !important;
}
.paragraph--id--4369 h2, .paragraph--id--4369 p{
    color: var(--AIB-White) !important;
}

.callout-ribbon h2.heading-subhead, .callout-ribbon h2.heading-subhead:hover {
    margin-bottom: 0;
    color: var(--AIB-Brown);
}
p.callout-subhead {
    font-family: var(--AIB-Font-Minion-Pro);
    font-style: italic;
    font-size: 24px;
    line-height: 1.2em;
    margin-bottom: 0;
}
.featured-link-banner-card h3 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1em;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Homepage Updates Grid*/

.pb__three-columns-4428 .node-feature-news-three-column-card-link a, .arrow-link-heading a span, .arrow-link-heading a::before {
    color: var(--AIB-Red) !important;
}

.pb__three-columns-4428 .node-feature-news-three-column-card-link a:hover, .arrow-link-heading a:hover span, .arrow-link-heading a::after {
    color: var(--AIB-Black) !important;
}

.pb__three-columns-4428 .pb__content-full, .pb__three-columns-4428 .field--name-field-content-reference, .pb__three-columns-4428 article {
    height: 100%;
}

.paragraph--type--content-reference-card-three-col .content {
    height: 100%;
    display: flex !important;
    flex-direction: column;
}

.pb__three-columns-4428 .node-feature-news-three-column-card-link {
    margin-top: auto;
}
/*END Homepage Updates Grid*/

/**** Brown Tutoring Corps ****/
.brown-tutoring-corps-section.section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
}
.brown-tutoring-corps-section .field.field--name-field-headline-subhead.field--label-hidden.field__item {
    display: none;
}
.brown-tutoring-corps-section h2 {
    margin-bottom: 10px;
}
.brown-tutoring-corps-section .pb__two-columns {
    gap: 48px;
}
.brown-tutoring-corps-section article .content {
    display: flex;
    flex-direction: row;
    gap: 26px;
    flex-wrap: nowrap;
    align-items: center;
}
.brown-tutoring-corps-section .field.field--name-field-media-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
/**** Brown Tutoring Coprs ****/

/* Featured Posts Library */
.paragraph>.paragraph__inner:hover {
    background-color: inherit;
}
.featured-publications-main {
    background-attachment: inherit !important;
    position: relative;
}
.paragraph--id--4445 {
    background-color: var(--AIB-Off-White);
}
.featured-posts-section {
    padding: 0 25px;
    background-color: var(--AIB-Off-White);
}
#pb__tab-4444:after, #pb__tab-4444:before {
    display: none;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .pb__tabs-button button {
    color: #000;
    font-size: 15px;
    font-weight: 400 !important;
    text-decoration: none !important;
    min-width: 250px;
    padding: 23px;
    transition: all 300ms ease-in-out;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .pb__tabs-button button:hover {
    color: var(--AIB-Red);
    background-color: unset;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .pb__tabs-button button.pb__active {
    background-color: var(--AIB-Red);
    color: #fff;
}
button.pb__button.pb__tab-button span:before {
    font-family: var(--AIB-Font-Awesome);
    margin-right: 5px;
}
button#pb__tab-4444-1 span:before {
    content: "\f6b8";
}
button#pb__tab-4444-2 span:before {
    content: "\e753";
}
button#pb__tab-4444-3 span:before {
    content: "\e603";
}
.pb__tab-pane {
    gap: 24px;
}
.pb__tab-pane .paragraph--type--entity-reference-feature-full-wi .featured-image-bg {
    aspect-ratio: 16 / 9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.paragraph--type--image-background-bundle.featured-publications-main {
    aspect-ratio: 12 / 3;
    padding: 30px;
}
.paragraph--type--image-background-bundle.featured-publications-main .pb__content-full {
    justify-content: flex-end;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .field--name-field-media-image {
    aspect-ratio: 16 / 9;
    box-shadow: 8px 8px 0px var(--AIB-Divider-Gray);
    margin-bottom: 30px;
    position: relative;
}
.featured-publications-secondary .field--name-field-media-image:after, .people-grid .views-field.views-field-field-media-image:after, .feature-expander-index .views-field.views-field-field-media-image .field-content.fc-image:after {
    content: '';
    position: absolute;
    inset: 12px;
    border: solid 1px var(--AIB-Divider-Gray);
    opacity: 0;
    transition: all 200ms ease-in-out;
    pointer-events: none;
}
.featured-publications-secondary .field--name-field-media-image:hover:after, .people-grid .views-field.views-field-field-media-image:hover:after, .feature-expander-index .views-field.views-field-field-media-image .field-content.fc-image:hover:after {
    opacity: 1;
}
.featured-publications-secondary span.field.field--name-title, .people-grid .views-field.views-field-title h3 {
    transition: all 200ms ease-in-out;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(0, 0, 0, 0);
}
.featured-publications-secondary span.field.field--name-title:hover, .people-grid .views-field.views-field-title h3:hover {
    color: var(--AIB-Red) !important;
    text-decoration-color: rgba(0, 0, 0, 0.25);
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .paragraph--type--content-reference-card-three-col h3, .featured-posts-grid .featured-publications-secondary span.field.field--name-title.field--type-string.field--label-hidden {
    font-size: 18px;
    font-weight: 500;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .field--name-field-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pb__tab-pane .paragraph--type--entity-reference-feature-full-wi .featured-image-bg:before, .paragraph--type--image-background-bundle.featured-publications-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}
.paragraph--type--entity-reference-feature-full-wi .field--name-field-publication-date-display, .paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .publication-heading, .paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .publication-heading p {
    color: #fff !important;
    position: relative;
    z-index: 1;
    max-width: 60%;
}
.featured-publications.section span.field.field--name-title.field--type-string.field--label-hidden:hover {
    color: #fff;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .paragraph--type--content-reference-card-three-col h3 span.field.field--name-title.field--type-string.field--label-hidden:hover{
    color: inherit;
}
.paragraph--type--entity-reference-feature-full-wi .field--name-field-publication-date-display, .field--name-field-publication-date-display.field--label-hidden, .field.field--name-field-publication-date.field--label-hidden.field__item {
    font-size: 13px;
    font-family: var(--AIB-Font-Minion-Pro) "minion-pro", serif;
    font-style: italic;
    margin-bottom: 10px;
}
.paragraph--type--tabs-bundle .pb__tabs-bundle .field.field--name-field-headline-subhead, .featured-posts-grid .publication-heading p, .featured-publications-secondary .paragraph .paragraph__inner p:hover{
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--AIB-Red);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .publication-heading p {
    font-size: 13px;
    margin-bottom: 0;
}
.featured-publications-main .paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .content h3 a {
    font-size: 36px;
    font-weight: 400;
    color: var(--AIB-White);
    line-height: 1.2;
    position: relative;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 300ms;
}
.featured-publications-main .paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .content h3 a:hover, .featured-publications-main .paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .content h3:hover span {
    color: var(--AIB-White) !important;
    text-decoration-color: rgba(255, 255, 255, 0.25);
}
.node-feature-news-three-column-card-link a span.arrow {
    display: none;
}

/***** Initiatives at AIB *****/
.initiatives-section {
    background-color: #1B3E6F;
}
/***** Social Highlights *****/
.social-highlights-section {
    background-color: var(--AIB-Brown);
}
.social-highlights-grid .field--name-pb-content-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.social-highlights-grid .field--name-pb-content-image .field__item:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.social-highlights-grid .field--name-pb-content-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.social-highlights-section .pb__two-columns .pb-col-right {
    margin-top: 1em;
}
.social-highlights-grid .field--name-pb-content-image .field__item {
    box-shadow: 0px 0px 0px 2px var(--AIB-Digital-Yellow);
}
.social-highlights-section ul.footer-social-icons li:first-of-type {
    padding-left: 0;
}
.social-highlights-section ul.footer-social-icons {
    margin-bottom: 1em;
}
@media (max-width: 767px) {
    .callout-ribbon .pb__card-three-columns, .callout-ribbon .pb__card-three-columns, .callout-ribbon .pb__card-two-columns {
        display: flex;
        gap: 12px;
        flex-direction: column;
    }
    .callout-ribbon .pb__card-three-columns * {
        width: 100%;
    }
    .callout-ribbon h2.heading-subhead:after {
        content: '';
        width: 100px;
        height: 6px;
        display: block;
        margin: 12px 0;
        background-color: var(--AIB-Digital-Yellow);
    }
    h2.heading-link.heading-yellow.heading-arrow:before {
        content: '';
        display: block;
        width: 200px;
        height: 2px;
        margin-bottom: 24px;
        background-color: var(--AIB-Digital-Yellow);
    }
    .pb__tab-pane .paragraph--type--entity-reference-feature-full-wi .featured-image-bg {
        aspect-ratio: 1 / 1;
    }
    .paragraph--type--tabs-bundle .pb__tabs-bundle .field--name-field-media-image {
        height: 110px;
    }
    .footer-links a, a.hover-icon-link, .node-feature-news-three-column-card-link a, .footer-links a, a.hover-icon-link, .arrow-link-heading a {
        font-size: 13px !important;
    }
    .view-index-events-grid ul {
      grid-template-columns: 1fr;
    }
    .callout-ribbon .pb-card-three-middle, .callout-ribbon .pb-card-two-right {
        padding-left: 0;
    }
    .call-heading.separator-red h2.heading-subhead:after {
        background-color: var(--AIB-Red) !important;
    }
    .view-index-events-grid li {
        margin-left: 0 !important;
    }
    .featured-link-banner-inner .pb__three-columns.three-l6_l3_l3 {
        display: flex;
        flex-direction: column;
    }
    .featured-link-banner-inner {
        border-left: none !important;
        padding-left: 0;
    }
    .sponsor-image a img {
        width: 22px;
        height: 22px;
    }
    .sponsor-name {
        font-size: 13px;
    }
    .arrow-link-heading {
        margin-bottom: 1em;
    }
    .view-index-events-grid .views-field.views-field-title h3 {
        margin-bottom: 5px;
    }
    .brown-tutoring-corps-section article .content {
        flex-direction: column;
        align-items: start;
    }
    .brown-tutoring-corps-section .field.field--name-field-media-image img {
        max-width: 230px;
    }
    .brown-tutoring-corps-section article .content h3 {
        font-size: 18px;
    }
    .featured-link-banner {
        padding-left: var(--AIB-Layout-Container-Padding);
        padding-right: var(--AIB-Layout-Container-Padding);
    }
}
@media (min-width: 768px) {
    .paragraph--type--hero-bundle .pb__row.pb__hero-txt-wrapper-inner {
        max-width: 50% !important;
    }
    .paragraph--type--card-three-columns-bundle .pb__card-three-columns .pb-card-three-right .paragraph, .callout-ribbon .pb-card-three-right {
        align-items: center !important;
    }
    .paragraph--id--5 .pb__card-three-columns .pb-card-three-middle, .paragraph--id--4497 .pb__card-three-columns .pb-card-three-middle {
        padding-left: 40px;
    }
    .callout-ribbon .pb-card-three-left, .callout-ribbon .pb-card-two-left {
        border-right: 4px solid var(--AIB-Digital-Yellow) !important;
        min-height: 100px;
        padding-right: 40px;
        justify-content: center !important;
    }
    .paragraph--id--5 .pb__card-three-columns .pb-card-three-left:hover, .paragraph--id--4497 .pb-card-two-left:hover {
        border-right: 4px solid var(--AIB-Digital-Yellow);
    }
    .featured-publications-main .paragraph.paragraph--type--entity-reference-feature-full-wi .paragraph__inner .content h3 {
        width: 50%;
    }
    .featured-posts-section .paragraph--type--from-library > .paragraph__inner {
        box-shadow: 8px 8px 0px var(--AIB-Divider-Gray);
    }
    .callout-ribbon .paragraph--id--4494 .pb-card-three-left {
        border-right: 4px solid var(--AIB-Red) !important;
    }
    .paragraph__inner .pb__tabs-bundle {
        padding: 30px;
        gap: 30px;
    }
    .social-highlights-section .pb__two-columns .pb-col-right {
        justify-content: center;
        padding: 16px;
    }
}

/***** Single Person Page *****/
#person_display_top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
    margin-bottom: 3em;
    margin-top: 3em;
}
#person_display_top, #person_display_main {
    padding-right: var(--AIB-Layout-Container-Padding);
}
#person_display_left {
    border-bottom: 4px solid var(--AIB-Divider-Gray);
}
#person_display_right {
    margin-top: 2em;
}
.field--name-field-personal-bio .field__item {
    font-family: var(--AIB-Font-Minion-Pro);
    font-size: 18px;
}
.field--name-field-role-at-annenberg a {
    display: inline-block;
    padding: 7px 12px;
    background-color: var(--AIB-Divider-Gray) !important;
    border-left: 2px solid var(--AIB-Red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.0px;
    transition: all 300ms;
}
.field--name-field-role-at-annenberg a:hover {
    background-color: var(--AIB-Red) !important;
    color: var(--AIB-White);
}
#person_display_top h2 {
    color: var(--AIB-Brown);
    font-size: 46px;
    margin-top: 16px;
    margin-bottom: 0px;
    position: relative;
}
#person_display_top h2::before, .people-grid .paragraph .viewsreference--view-title:before {
    content: '';
    background-color: var(--AIB-Divider-Gray);
    display: block;
    position: absolute;
    width: 40px;
    height: 4px;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.field.field--name-field-person-job-title.field--label-hidden.field__item {
    font-size: 18px;
    margin-bottom: 4px;
}
.field.field--name-field-initiative-reference.field__items {
    display: flex;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 2rem;
}
.field.field--name-field-initiative-reference.field__items .field__item:not(:last-of-type)::after {
    content: '\f219';
    font-family: 'Font Awesome 7 Sharp';
    font-weight: 700;
    font-style: normal;
    font-size: 9px;
    margin: 0 5px;
    vertical-align: middle;
}
.field.field--name-field-personal-pronouns {
    font-size: 18px;
    font-family: var(--AIB-Font-Minion-Pro);
    font-style: italic;
    margin-bottom: 2rem;
}
.personal-contact a {
    border-bottom: 2px solid var(--AIB-Red);
}
.personal-contact a:hover {
    color: var(--AIB-Red);
}
.personal-contact::before {
    font-family: 'Font Awesome 7 Sharp';
    font-weight: 600;
    color: var(--AIB-Red);
    margin-right: 10px;
}
.personal-contact.personal-website::before {
    content: '\f57d';
}
.personal-contact.personal-email::before {
    content: '\f0e0';
}
div#personal-socials, div.personal-contact {
    margin-top: 1em;
}
div#personal-socials a {
    font-size: 18px;
    margin-right: 10px;
}
div#personal-socials a:hover, div#personal-socials a.personal-rss {
    color: var(--AIB-Red);
}
.field.field--name-field-personal-bio .field__label, #person_display_main .views-element-container h2 {
    font-size: 13px;
    font-family: 'area-normal';
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    margin-bottom: 3em;
    margin-top: 3em;
    border-bottom: 1px solid var(--AIB-Divider-Gray);
}
@media (max-width: 959px) {
    #person_display_top {
        display: flex;
        flex-direction: column-reverse;
    }
    .sidebar-first section#content {
        grid-template-columns: 300px 1fr;
    }
    aside#sidebar-first {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 767px) {
    .sidebar-first section#content {
        display: flex;
        flex-direction: column;
    }
    .sidebar-first #main #content-area {
        padding-left: var(--AIB-Layout-Container-Padding);
        padding-right: var(--AIB-Layout-Container-Padding);
    }
    div#person_display_top {
        padding-right: 0;
    }
    div#person_display_top #person_display_right article .field__item img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        width: 100%;
    }
    #person_display_left {
        padding-bottom: 4em;
    }
}
/***** Single Person Page *****/

/***** People Page *****/
.container.about-people #content-header {
    height: 550px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%), url(/sites/default/files/2025-11/people-hero-bg.jpg);
}
.people-grid .paragraph .viewsreference--view-title {
    color: var(--AIB-Red);
    font-family: var(--AIB-Font-Minion-Pro);
    margin-bottom: 1em;
    position: relative;
}
.people-grid-container {
    padding-right: var(--AIB-Layout-Container-Padding);
}
.people-grid-three-col .item-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
}
.views-element-container .people-grid-three-col .item-list ul li {
    max-width: none !important;
    margin: 0;
}
.people-grid .views-field.views-field-field-media-image {
    position: relative;
}
.views-element-container .people-grid-three-col .item-list ul li img {
    width: 100%;
}
.people-grid .views-field.views-field-title h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 1em;
}
.people-grid .views-field.views-field-field-person-job-title, .people-grid .views-field.views-field-field-email {
    font-size: 14px;
    font-weight: 300;
}
.people-grid .views-field.views-field-field-email {
    margin-top: 1em;
    text-decoration: underline;
    text-decoration-color: var(--AIB-Red);
    transition: all 300ms;
}
.people-grid .views-field.views-field-field-email:hover {
    color: var(--AIB-Red)
}

/*Basic Paragraph Styles*/
.paragraph--id--4497 {
    background-color: #fff;
}

.paragraph--id--5, .paragraph--id--4494 {
    background-color: var(--AIB-Off-White);
}

.paragraph--id--4308 {
    background: #ccc;
    padding: 100px;
}

.paragraph--id--4305 {
    padding: 100px;
    background: #aaa;
}

.paragraph--id--4311 {
    padding: 100px;
    background: #ddd;
}

.paragraph--id--4494 { /*Homepage newsletter section*/
    padding-top: 115px;
    padding-bottom: 90px;
}




/*Footer Block*/

#footer {
    background: var(--AIB-Brown);
    position: relative;
    max-width: 1800px;
    margin: 0 auto !important;
}


#footer-bottom-inner {
    text-align: center;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: var(--AIB-Layout-Container-Padding);
    padding-right: var(--AIB-Layout-Container-Padding);
}

.footer-contact li {
    font-family: var(--AIB-Font-Minion-Pro);
}
.footer-contact li a {
    color: #fff;
    transition: opacity 0.3s ease;
}
.footer-contact li a:hover {
    color: var(--AIB-Digital-Yellow);
}

p.footer-banner {
    text-transform: uppercase;
    color: var(--AIB-Taupe, #B7B09C);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.5px;
}

.footer-links a, a.hover-icon-link, .node-feature-news-three-column-card-link a, .footer-links a, a.hover-icon-link, .arrow-link-heading a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-family: var(--AIB-Font-Area-Normal);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1.56px;
}
.featured-posts-grid .featured-publications-main .node-feature-news-three-column-card-link a, .footer-links a, a.hover-icon-link {
    color: var(--AIB-Digital-Yellow);
}
.featured-posts-grid .featured-publications-main .node-feature-news-three-column-card-link a:hover, .footer-links a:hover, a.hover-icon-link:hover  {
    color: var(--AIB-White);
}
.featured-posts-grid .featured-publications-secondary .node-feature-news-three-column-card-link a {
    color: var(--AIB-Red);
}
.featured-posts-grid .featured-publications-secondary .node-feature-news-three-column-card-link a:hover {
    color: var(--AIB-Black);
}

.footer-links a {
    padding-left: 1.5em;
}

.footer-contact li::before, .footer-contact li::after {
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    opacity: 0.5;
    display: inline-block;
    scale: .8;
    margin-right: 5px;
    vertical-align: bottom;
}

.footer-contact li.local::before {
    content: "\f3c5";
}
.footer-contact li.ph::before {
    content: "\f2a0";
}
.footer-contact li.mail::before {
    content: "\f0e0";
}

  .footer-links a::before,
  .footer-links a::after, 
  a.hover-icon-link::before, 
  a.hover-icon-link::after, 
  .node-feature-news-three-column-card-link a::before, 
  .node-feature-news-three-column-card-link a::after,
  .arrow-link-heading a::before,
  .arrow-link-heading a::after, .node-feature-news-three-column-card-link a::before, .node-feature-news-three-column-card-link a::after {
    font-family: "Font Awesome 7 Sharp";
    font-weight: 900;
    position: absolute;
    right: -25px;
    top: 1px;
    transition: opacity 0.3s ease;
  }
  
  .footer-links a::before, a.hover-icon-link::before, .node-feature-news-three-column-card-link a::before, .arrow-link-heading a::before, .node-feature-news-three-column-card-link a::before {
    content: "\f061"; /* arrow-right - default state */
    opacity: 1;
  }
  
  .footer-links a::after, a.hover-icon-link::after, .node-feature-news-three-column-card-link a::after, .arrow-link-heading a::after, .node-feature-news-three-column-card-link a::after {
    content: "\f0c1"; /* link icon - hover state */
    opacity: 0;
  }
  
  .footer-links a:hover::before, a.hover-icon-link:hover::before, .node-feature-news-three-column-card-link a:hover::before, .arrow-link-heading a:hover::before {
    opacity: 0;
  }
  
  .footer-links a:hover::after, a.hover-icon-link:hover::after, .node-feature-news-three-column-card-link a:hover::after, .arrow-link-heading a:hover::after {
    opacity: 1;
  }

ul.footer-contact {
    padding-top: 20px;
}

ul.footer-contact li {
    display: inline-block;
    color: #fff;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 1.3em;
}

ul.footer-links {
    padding-top: 35px;
    display: flex;
    grid-gap: 36px;
    flex-direction: row;
    width: fit-content;
    margin: 0 auto;
}

ul.footer-links li {
    display: inline;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 1.1em;
    color: var(--AIB-Digital-Yellow);
}


#footer-bottom-banner {
    background: #412D22;
    height: 80px;
    padding-top: 25px;
    padding-bottom: 25px;
}

#footer-copyright {
    font-family: var(--AIB-Font-Minion-Pro);
    position: absolute;
    left: 25px;
    color: #B7B09C;
    font-size: 1.1em;
}

#footer-socials {
    position: absolute;
    right: 25px;
}

ul.footer-social-icons li {
    display: inline;
    padding-left: 10px;
    padding-right: 10px;
}

ul.footer-social-icons li i {
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}
ul.footer-social-icons li i:hover {
    color: var(--AIB-Digital-Yellow);
}
img.centerme {
    margin: 0 auto;
    width: 100%;
}
@media (max-width: 767px) {
    p.footer-banner, #footer-bottom-inner  {
        text-align: left;
    }
    ul.footer-links {
        padding-top: 55px;
        margin: 0;
        grid-gap: 24px;
        flex-direction: column;
        margin: 0;
        text-align: left;
    }
    ul.footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    ul.footer-contact li, .footer-links li, .footer-links a {
        padding-left: 0px;
        padding-right: 0px;
    }
    ul.footer-social-icons li {
        padding-left: 0;
        padding-right: 20px;
    }
    #footer-bottom-banner {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        height: auto;
        padding-left: var(--AIB-Layout-Container-Padding);
        padding-right: var(--AIB-Layout-Container-Padding);
    }
    #footer-copyright, #footer-socials {
        position: unset;
    }
    #footer-copyright p {
        margin: 0;
    }
}


/***Paragraph hover overrides***/

.paragraph>.paragraph__inner:hover {
    border-color: var(--pb-br-h, var(--pb-br));
    color: var(--pb-tx-h, var(--pb-tx));
}


/*****Buttons*****/
button {
    transition: all 0.3s ease-in-out !important;
}
button.redbutton {
    background-color: var(--AIB-Red);
    border: 2px solid #ccc;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius:5px;
  }
button.yellowbutton {
    background-color: var(--AIB-Digital-Yellow) !important;
    color: var(--AIB-Black) !important;
}
button.redbutton:hover, button.yellowbutton:hover {
    background-color: var(--AIB-Black) !important;
    color: var(--AIB-White) !important;
  }
button.cta-button {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    padding: 25px 100px !important;
}


body.page-about-people .paragraph .views-element-container .item-list ul {
    max-width: 1275px;
}

body.page-about-people .paragraph .views-element-container .item-list ul li{
    max-width: 250px;
    display: inline-block;
}

body.page-about-people .viewsreference--view-title {
    font-size:2.5em !important;
    font-weight: bold !important;
}
@media (max-width: 767px) {
    button.cta-button {
        padding: 25px !important;
        width: 100%;
        justify-content: center;
    }
}