/* TITANS Lab custom styles (extends CDN Bootstrap 3.3.7) */

body {
  padding-top: 70px;
  font-family: "Source Sans Pro", sans-serif;
}

img {
  margin-top: 17px;
  margin-bottom: 24px;
  border-radius: 2%;
}

figcaption {
  text-align: right;
  margin-top: -20px;
  margin-bottom: 20px;
}

p.byline {
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  margin-top: -24px;
  margin-bottom: 48px;
}

pubtit {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.container-fluid {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Home news sidebar */
#newsid p { text-align: left; }
#newsid img { margin-top: 6px; margin-bottom: 6px; }

/* Team & Publications grid style */
#gridid img {
  margin: 16px 22px 6px 0;
  border-radius: 10%;
  box-shadow: 2px 2px 5px #888;
}
#gridid .row { margin-bottom: 24px; }

/* Home hero image */
#homeid img {
  margin: 0;
  border-radius: 5%;
  box-shadow: none;
}

/* Grid column padding tweaks */
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  padding-left: 16px;
  padding-right: 16px;
}
.col-sm-4 { padding-left: 26px; padding-right: 26px; }

/* Carousel */
.carousel {
  border-radius: 3px;
  margin: 20px 30px;
  .carousel-inner img {
    margin: 0;
    border-radius: 0;
  }

  .carousel-inner .item {
    height: 100%;
  }
  .carousel-control.left,
  .carousel-control.right {
    background: none;
    background-image: none;
    filter: none;
  }
  /* .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    color: #333;
    text-shadow: none;
  } */
}

/* ============================================================
   All News page — timeline layout, TITANS palette
   ============================================================ */
   #all-news-list {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 20px;
  }
  #all-news-list .news-year-group { margin-bottom: 50px; }
  
  #all-news-list .news-year {
    font-size: 3em;
    font-weight: 300;
    color: #2f5a65;
    margin: 0 0 24px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #538391;
    letter-spacing: 1px;
  }
  
  #all-news-list .news-timeline {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid #d5e4e8;
  }
  
  #all-news-list .news-item {
    position: relative;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e4edef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  }
  #all-news-list .news-item:hover {
    box-shadow: 0 8px 20px rgba(83,131,145,0.18);
    transform: translateY(-2px);
    border-color: #95D2B3;
  }
  
  /* dot on timeline — teal core, mint ring */
  #all-news-list .news-item::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 26px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #538391;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #95D2B3;
  }
  /* connector line from dot to card */
  #all-news-list .news-item::after {
    content: "";
    position: absolute;
    left: -34px;
    top: 32px;
    width: 12px; height: 2px;
    background: #d5e4e8;
  }
  
  #all-news-list .news-date {
    display: inline-block;
    font-size: 0.78em;
    font-weight: 700;
    color: #2f5a65;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: #e5eef1;
    border-radius: 12px;
    border: 1px solid #cfe2e6;
  }
  
  #all-news-list .news-content {
    color: #2a2a2a;
    line-height: 1.7;
    overflow: hidden; /* contain floated images */
  }
  #all-news-list .news-text {
    text-align: justify;
    hyphens: auto;
  }
  #all-news-list .news-content a {
    color: #538391;
    text-decoration: none;
    border-bottom: 1px solid rgba(83,131,145,0.35);
    transition: border-color .2s, color .2s;
  }
  #all-news-list .news-content a:hover {
    color: #3e6975;
    border-bottom-color: #538391;
  }
  
  /* image positioning inside a news item */
  #all-news-list .news-img {
    margin: 0;
    padding: 0;
  }
  #all-news-list .news-img img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: block;
    margin: 0;              /* ← ADD: kill the global 17px/24px img margin */
  }
  #all-news-list .news-img figcaption {
    font-size: 0.82em;
    color: #5a6d72;
    text-align: center;
    margin-top: 6px;
    font-style: italic;
  }
  #all-news-list .news-img-left {
    float: left;
    width: 42%;
    margin: 0 22px 12px 0;   /* ← was "4px 22px 12px 0" */
    clear: left;
  }
  #all-news-list .news-img-right {
    float: right;
    width: 42%;
    margin: 0 0 12px 22px;   /* ← was "4px 0 12px 22px" */
    clear: right;
  }
  #all-news-list .news-img-top {
    display: block;
    margin: 0 auto 16px auto;   /* was margin-bottom only; add auto sides so a narrower image centers */
    max-width: 100%;
  }
  #all-news-list .news-img-bottom {
    display: block;
    margin: 16px auto 0 auto;   /* same idea */
    max-width: 100%;
    clear: both;
  }
  #all-news-list .news-img-full {
    display: block;
    margin: 18px auto;
    width: 100%;                /* still the default */
    max-width: 100%;
    clear: both;
  }
  #all-news-list .news-clear { clear: both; }
  
  /* mobile: stack everything, no floats */
  @media (max-width: 640px) {
    #all-news-list .news-timeline { padding-left: 24px; }
    #all-news-list .news-item::before { left: -32px; }
    #all-news-list .news-item::after { left: -20px; width: 8px; }
    #all-news-list .news-year { font-size: 2.2em; }
    #all-news-list .news-img-left,
    #all-news-list .news-img-right {
      float: none;
      width: 100%;
      margin: 12px 0;
    }
    #all-news-list .news-text { text-align: left; } /* justify looks bad on narrow screens */
  }

  /* ============================================================
   HOME PAGE — split top + section bands
   Palette: #538391 teal, #95D2B3 mint,
            #2f5a65 dark teal, #e5eef1 pale bg
   ============================================================ */

/* ---- INTRO CARD (white logo panel + tinted text panel) ---- */
.intro-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 10px;
  border: 1px solid #d5e4e8;
  border-left: 5px solid #538391;
  padding: 0;
  margin: 15px 0 20px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(83,131,145,0.10);
  background: #fff;                     /* base */
}
.intro-logo {
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background: #fff;                     /* WHITE logo panel */
}
.intro-logo img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  margin: 0;
  border-radius: 6px;
  box-shadow: none;
}
.intro-text {
  flex: 1;
  padding: 22px 26px 22px 22px;
  background: #f6fbfa;                  /* very light teal-mint */
  border-left: 1px solid #e5eef1;
}
.intro-text h2 {
  margin: 0 0 10px 0;
  color: #2f5a65;
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.intro-text h2 .teal { color: #538391; }
.intro-text p {
  margin: 0;
  font-size: 0.98em;
  line-height: 1.6;
  color: #2a2a2a;
}
.intro-text p a { color: #538391; }
.intro-text p a:hover { color: #3e6975; }
.intro-text ins { text-decoration: none; }

.intro-follow {
  margin: 0 0 20px 0;
  color: #333;
  line-height: 1.6;
}

/* ---- Carousel: NO border, NO shadow ---- */
#homeid .carousel {
  margin: 20px 0;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}
#homeid .carousel-inner { border-radius: 8px; }

/* ---- Research theme block (in left column, below slider) ---- */
/* ---- Research theme block (flat, no card) ---- */
.theme-block {
  margin: 30px 0 20px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.theme-block-heading {
  margin: 0 0 8px 0;
  color: #2f5a65;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 3px solid #95D2B3;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.theme-block-sub {
  margin: 0 auto 16px;
  color: #555;
  font-size: 0.9em;
  line-height: 1.5;
  text-align: justify;           /* was: center */
  hyphens: auto;
  max-width: 560px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5eef1;
}
.theme-strip {
  display: flex;
  flex-wrap: nowrap;             /* was: wrap */
  justify-content: center;
  gap: 8px;                      /* was: 10px */
}
.theme-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;                   /* was: 110px */
  padding: 12px 6px;             /* was: 12px 8px */
  background: #f9fcfb;
  border: 1px solid #d5e4e8;
  border-radius: 8px;
  color: #2f5a65 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.75em;             /* was: 0.78em */
  text-align: center;
  line-height: 1.25;
  transition: box-shadow .2s, transform .2s, border-color .2s, background .2s;
}
.theme-chip:hover {
  border-color: #95D2B3;
  background: #fff;
  box-shadow: 0 4px 10px rgba(83,131,145,0.15);
  transform: translateY(-2px);
}
.theme-chip .theme-icon {
  width: 36px; height: 36px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #538391 0%, #95D2B3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1em;
  box-shadow: 0 2px 6px rgba(83,131,145,0.3);
}
.theme-chip span { display: block; }
.theme-cta { margin: 16px 0 0 0; }

/* ---- News sidebar panel ---- */
.news-panel {
  background: #fff;
  border: 1px solid #d5e4e8;
  border-top: 4px solid #538391;
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(83,131,145,0.08);
  margin-top: 15px;
}
.news-panel .panel-heading-custom {
  color: #2f5a65;
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5eef1;
  font-size: 1.4em;
  font-weight: 700;
}
.news-panel .panel-heading-custom .fa { color: #538391; margin-right: 8px; }
#news-sidebar-list p {
  margin: 0 0 14px 0;
  padding: 10px 0;
  border-bottom: 1px dashed #e5eef1;
  font-size: 0.92em;
  line-height: 1.55;
}
#news-sidebar-list p:last-child { border-bottom: none; }
#news-sidebar-list i b {
  color: #538391;
  font-style: normal;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#news-sidebar-list a { color: #538391; }
#news-sidebar-list a:hover { color: #3e6975; }
#news-sidebar-list img {
  margin-top: 8px;
  border-radius: 4px;
}
.see-all-link {
  display: inline-block;
  margin-top: 8px;
  color: #538391;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.see-all-link:hover {
  color: #3e6975;
  border-bottom-color: #95D2B3;
  text-decoration: none;
}

/* ---- SECTION BAND (publications) ---- */
.section-alt {
  padding: 40px 0 45px;
  margin-top: 30px;
  background: linear-gradient(180deg, #f4f9f7 0%, #e5eef1 100%);
  border-top: 1px solid #d5e4e8;
  border-bottom: 1px solid #d5e4e8;
}
.section-alt .container-fluid { max-width: 1100px; }
.section-heading { text-align: center; margin-bottom: 24px; }
.section-heading h2 {
  color: #2f5a65;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid #95D2B3;
}
.section-heading .section-sub {
  color: #5a6d72;
  font-size: 0.95em;
  margin: 10px 0 0 0;
  font-style: italic;
}

/* ---- PUB PREVIEW CARDS (compact) ---- */
.pub-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d5e4e8;
  height: 100%;
  margin-bottom: 20px;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.pub-card:hover {
  box-shadow: 0 8px 20px rgba(83,131,145,0.20);
  transform: translateY(-3px);
}
.pub-thumb {
  background: #f4f9f7;
  height: 120px;                        /* was 160 */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-bottom: 1px solid #e5eef1;
}
.pub-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.pub-thumb-placeholder .fa { color: #95D2B3; font-size: 2.4em; }
.pub-body { padding: 12px 14px; flex-grow: 1; }
.pub-title {
  color: #2f5a65;
  font-size: 0.95em;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.pub-venue { font-size: 0.82em; margin: 0; line-height: 1.35; }
.pub-venue a {
  color: #538391;
  font-weight: 700;
  border-bottom: 1px solid rgba(83,131,145,0.3);
  text-decoration: none;
}
.pub-venue a:hover { color: #3e6975; border-bottom-color: #538391; }

/* ---- CTA BAND (compact, lighter, one-line) ---- */
.cta-band {
  background: linear-gradient(135deg, #95D2B3 0%, #b6dfc7 100%);
  color: #2f5a65;
  padding: 20px 0;
}
.cta-band .container-fluid { max-width: 1100px; }
.cta-band .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #2f5a65;
  font-size: 1.15em;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  display: inline;
}
.cta-band p {
  color: #2f5a65;
  font-size: 0.98em;
  margin: 0;
  display: inline;
  line-height: 1.4;
}
.cta-band .cta-text {
  padding: 6px 0;
}
.cta-band b { color: #2f5a65; font-weight: 700; }
.cta-btn-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cta-band .btn-cta {
  padding: 10px 22px;
  font-size: 0.95em;
  background: #2f5a65;
  color: #fff !important;
  box-shadow: 0 3px 8px rgba(47,90,101,0.25);
}
.cta-band .btn-cta:hover {
  background: #538391;
  color: #fff !important;
}

/* ---- BUTTONS ---- */
.btn-teal {
  display: inline-block;
  padding: 10px 24px;
  background: #538391;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
  border: none;
}
.btn-teal:hover { background: #3e6975; text-decoration: none; transform: translateY(-1px); }
.btn-cta {
  display: inline-block;
  padding: 14px 30px;
  background: #95D2B3;
  color: #2f5a65 !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.05em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background .2s, transform .2s;
}
.btn-cta:hover { background: #fff; text-decoration: none; transform: translateY(-2px); }

/* ---- MOBILE ---- */
@media (max-width: 767px) {
  .intro-card { flex-direction: column; }
  .intro-logo { flex: 0 0 auto; padding: 18px; }
  .intro-logo img { max-height: 140px; }
  .intro-text { padding: 18px 20px; border-left: none; border-top: 1px solid #e5eef1; }
  .theme-strip { flex-wrap: wrap; }    /* ADD */
  .theme-chip { width: 100px; font-size: 0.75em; }
  .cta-btn-col { justify-content: center; margin-top: 20px; }
  .section-heading h2 { font-size: 1.5em; }
}


/* ============================================================
   NAVBAR — dark teal
   ============================================================ */
   .navbar-titans {
    background: linear-gradient(90deg, #2f5a65 0%, #538391 100%);
    border: none;
    border-radius: 0;
    border-bottom: 3px solid #95D2B3;
    min-height: 64px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .navbar-titans .container-fluid { max-width: 1200px; }
  
  /* Brand (logo + text) */
  .navbar-titans .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    height: auto;
    color: #fff;
  }
  .navbar-titans .navbar-brand img {
    height: 42px;
    margin: 0;
    border-radius: 4px;
    box-shadow: none;
  }
  .navbar-titans .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .navbar-titans .brand-primary {
    font-size: 1.15em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
  }
  .navbar-titans .brand-sub {
    font-size: 0.72em;
    font-weight: 400;
    color: #95D2B3;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
  }
  
  /* Nav links */
  .navbar-titans .navbar-nav > li > a {
    color: #e5eef1;
    font-weight: 600;
    font-size: 0.95em;
    padding: 22px 16px;
    transition: color .2s, background .2s;
    position: relative;
  }
  .navbar-titans .navbar-nav > li > a:hover,
  .navbar-titans .navbar-nav > li > a:focus {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
  /* Underline accent on hover / active */
  .navbar-titans .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px;
    bottom: 14px;
    height: 2px;
    background: #95D2B3;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s;
  }
  .navbar-titans .navbar-nav > li > a:hover::after,
  .navbar-titans .navbar-nav > li.active > a::after {
    transform: scaleX(1);
  }
  .navbar-titans .navbar-nav > li.active > a,
  .navbar-titans .navbar-nav > li.active > a:hover,
  .navbar-titans .navbar-nav > li.active > a:focus {
    color: #fff;
    background: transparent;
  }
  
  /* Mobile toggle */
  .navbar-titans .navbar-toggle {
    border: 1px solid rgba(255,255,255,0.3);
    margin-top: 15px;
    margin-right: 15px;
  }
  .navbar-titans .navbar-toggle:hover,
  .navbar-titans .navbar-toggle:focus { background: rgba(255,255,255,0.1); }
  .navbar-titans .navbar-toggle .icon-bar { background: #fff; }
  .navbar-titans .navbar-collapse { border-color: rgba(255,255,255,0.1); }
  
  /* Adjust body padding to match taller nav */
  body { padding-top: 70px; }
  @media (max-width: 767px) {
    .navbar-titans .navbar-nav > li > a { padding: 12px 16px; }
    .navbar-titans .navbar-nav > li > a::after { display: none; }
  }
  
  /* ============================================================
     FOOTER — dark teal, multi-column
     ============================================================ */
  .site-footer {
    background: linear-gradient(180deg, #2f5a65 0%, #234750 100%);
    color: #d5e4e8;
    margin-top: 0;
    border-top: 3px solid #95D2B3;
  }
  .footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 10px 5px;     /* was: 50px 20px 30px */
  }
  .footer-col { margin-bottom: 1px; }   /* was: 30px */
  .footer-col a { color: #95D2B3; text-decoration: none; }
  .footer-col a:hover { color: #fff; text-decoration: none; }
  
  /* Brand block */
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .footer-brand img {
    height: 48px;
    margin: 0;
    border-radius: 4px;
    box-shadow: none;
  }
  .footer-brand h4 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
  }
  .footer-about {
    color: #b8cdd2;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0 0 18px 0;
  }
  .footer-brand-text {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: 0.3px;
  }

  /* Social icons */
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #95D2B3 !important;
    font-size: 1.1em;
    transition: background .2s, color .2s, transform .2s;
    border: 1px solid rgba(149,210,179,0.3);
  }
  .footer-social a:hover {
    background: #95D2B3;
    color: #2f5a65 !important;
    transform: translateY(-2px);
  }
  
  /* Section headings */
  .footer-heading {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(149,210,179,0.35);
    position: relative;
  }
  .footer-heading::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 40px; height: 2px;
    background: #95D2B3;
  }
  
  /* Quick links */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li { margin-bottom: 8px; }
  .footer-links a {
    color: #b8cdd2;
    font-size: 0.92em;
    transition: color .2s, padding-left .2s;
    display: inline-block;
  }
  .footer-links a .fa {
    color: #95D2B3;
    margin-right: 6px;
    font-size: 0.9em;
    transition: transform .2s;
  }
  .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
  }
  .footer-links a:hover .fa { transform: translateX(2px); }
  
  /* Contact list */
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #b8cdd2;
    font-size: 0.9em;
    line-height: 1.55;
  }
  .footer-contact li .fa {
    color: #95D2B3;
    width: 18px;
    text-align: center;
    margin-top: 3px;
    font-size: 1em;
  }
  .footer-contact li a { color: #95D2B3; }
  .footer-contact li a:hover { color: #fff; }
  
  /* SIUC affiliation block */
  .footer-siuc { text-align: center; }
  .footer-siuc a { display: inline-block; }
  .footer-siuc img {
    max-height: 120px;
    height: auto;
    margin: 6px 0 10px;
    border-radius: 0;            /* was: 4px */
    box-shadow: none;
    background: transparent;     /* was: rgba(255,255,255,0.1) */
    padding: 0;                  /* was: 8px */
  }
  .footer-siuc-text {
    color: #b8cdd2;
    font-size: 0.88em;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Footer bottom */
  .footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 16px 0;
    border-top: 1px solid rgba(149,210,179,0.15);
  }
  .footer-bottom .container-fluid { max-width: 1200px; }
  .footer-bottom p {
    margin: 0;
    color: #95a8ad;
    font-size: 0.85em;
  }
  .footer-bottom a { color: #95D2B3; }
  .footer-bottom a:hover { color: #fff; }
  
  @media (max-width: 767px) {
    .footer-main { padding: 40px 20px 20px; }
    .footer-siuc { text-align: left; }
    .footer-bottom .col-sm-6 { text-align: left !important; }
    .footer-bottom .col-sm-6:last-child { margin-top: 8px; }
  }