/* 2026 refresh theme */
:root {
  --ciic-ink: #0b1f2a;
  --ciic-ink-2: #0f3a52;
  --ciic-accent: #f29c38;
  --ciic-accent-2: #33a89c;
  --ciic-bg: #f4f6f9;
  --ciic-surface: #ffffff;
  --ciic-border: #e4e8ef;
  --ciic-shadow: 0 16px 40px rgba(10, 20, 30, 0.08);
  --ciic-shadow-soft: 0 8px 20px rgba(10, 20, 30, 0.06);
  --ciic-font-sans: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  --ciic-font-display: "Space Grotesk", "Trebuchet MS", "Segoe UI", sans-serif;

  --bs-body-bg: var(--ciic-bg);
  --bs-body-color: #1d2a33;
  --bs-primary: var(--ciic-ink-2);
  --bs-link-color: var(--ciic-ink-2);
  --bs-link-hover-color: #102b3c;
  --bs-border-color: var(--ciic-border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ciic-font-sans);
  background:
    radial-gradient(900px 320px at 10% -10%, rgba(51, 168, 156, 0.18), transparent 60%),
    radial-gradient(700px 260px at 90% -20%, rgba(242, 156, 56, 0.2), transparent 55%),
    var(--ciic-bg);
  color: var(--bs-body-color);
}

p {
  line-height: 1.65;
}

.lead {
  font-size: 1.1rem;
}

.site-main {
  padding-top: 1rem;
  padding-bottom: 3rem;
  animation: fadeUp 0.6s ease both;
}

.site-footer {
  margin-top: 2.5rem;
  padding: 2.1rem 1.5rem 1.2rem;
  border-top: 1px solid var(--ciic-border);
  background: rgba(15, 58, 82, 0.04);
  border-radius: 24px 24px 0 0;
}

.site-footer--single {
  padding-top: 1.6rem;
}

.footer-single-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.footer-split-top {
  display: flex;
  justify-content: center;
}

.footer-logo {
  width: 360px;
  max-width: 100%;
  height: auto;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  font-weight: 600;
}

.footer-links-inline a {
  color: rgba(15, 58, 82, 0.75);
}

.footer-links-inline a:hover {
  color: var(--ciic-ink-2);
  text-decoration: none;
}

.footer-logos {
  display: flex;
  align-items: center;
}

.footer-logos img {
  width: auto;
  height: 64px;
  max-width: 320px;
  opacity: 0.85;
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  color: rgba(15, 58, 82, 0.6);
}

.footer-top-link {
  font-weight: 600;
  color: var(--ciic-ink-2);
}

.footer-top-link--small {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-top-link:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--ciic-font-display);
  letter-spacing: -0.015em;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-navbar {
  height: 84px;
  width: auto;
  max-height: 90px;
}

/* CSS para telas menores (ajusta a altura do padding conforme necessário) */
@media (max-width: 768px) {
  .logo-navbar {
    height: 64px;
  }
}

.navbar-glass {
  background: rgba(8, 22, 32, 0.9) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  min-height: 96px;
}

.navbar-glass .nav-link {
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link:focus {
  color: var(--ciic-accent);
}

.navbar-glass .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ciic-accent), rgba(255, 255, 255, 0.5));
  border-radius: 2px;
}

.navbar-glass .dropdown-menu {
  border-radius: 14px;
  border: 1px solid var(--ciic-border);
  box-shadow: var(--ciic-shadow-soft);
}

.hero-block {
  position: relative;
  padding: 2.5rem 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 58, 82, 0.07), rgba(51, 168, 156, 0.14));
  border: 1px solid rgba(15, 58, 82, 0.08);
  box-shadow: var(--ciic-shadow);
  overflow: hidden;
}

.hero-block--home {
  padding: 2rem 2rem;
}

.hero-areas {
  display: grid;
  gap: 0.75rem;
}

.hero-area {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f3a52;
  letter-spacing: 0.01em;
  cursor: default;
}

.hero-area::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--ciic-accent);
  box-shadow: 0 0 0 4px rgba(242, 156, 56, 0.15);
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .hero-areas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.text-accent {
  color: var(--ciic-accent) !important;
}

.news-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.news-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ciic-ink-2);
  margin-bottom: 0.25rem;
}

.news-title {
  margin: 0;
}

.news-subtitle {
  margin: 0.35rem 0 0;
  color: rgba(15, 58, 82, 0.7);
  max-width: 720px;
}

.news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
}

.news-feature,
.news-mini {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--ciic-shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-feature::before,
.news-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--news-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  opacity: 0.55;
}

.news-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 42, 0.82), rgba(11, 31, 42, 0.15));
}

.news-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--news-accent, rgba(15, 58, 82, 0.9)), rgba(11, 31, 42, 0.2));
}

.news-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-feature .news-content {
  min-height: 320px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.news-summary {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.news-avatars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
}

.news-avatars--stack {
  flex-direction: column;
  align-items: flex-start;
}

.news-author-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.news-author-item img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: #fff;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.92;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.news-author-item:hover {
  color: #fff;
}

.news-author-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.news-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-mini .news-content {
  padding: 1.4rem;
  min-height: 190px;
}

.news-mini h4 {
  font-size: 1.1rem;
}

.news-highlights {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.news-highlight {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-highlight--cta {
  background: linear-gradient(135deg, rgba(15, 58, 82, 0.08), rgba(51, 168, 156, 0.16));
  border-color: rgba(15, 58, 82, 0.16);
}

.news-highlight-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ciic-ink-2);
}

.news-highlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-highlight-authors {
  color: rgba(15, 58, 82, 0.75);
  font-size: 0.9rem;
}

.news-highlight-text {
  color: rgba(15, 58, 82, 0.75);
  margin: 0;
}

.news-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.news-index-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.news-back {
  margin-bottom: 1rem;
}

.news-index-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-filter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.news-filter-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.news-filter-search {
  flex: 1 1 320px;
  min-width: 240px;
}

.news-filter-date {
  flex: 0 1 180px;
}

.news-filter-actions {
  margin-left: auto;
}

.news-filter-row--buttons {
  align-items: flex-start;
}

.news-index-header,
.news-filter {
  margin-left: auto;
  margin-right: auto;
}

.news-filter-clear {
  align-self: center;
}

.news-filter-dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.news-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.news-filter-btn {
  border: 1px solid rgba(15, 58, 82, 0.25);
  background: #fff;
  color: #0f3a52;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(15, 58, 82, 0.12);
}

.news-filter-btn.active {
  background: #0f3a52;
  color: #fff;
  border-color: #0f3a52;
}

.news-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1f2a;
  box-shadow: var(--ciic-shadow);
  min-height: 240px;
}

.news-card--featured {
  border: 1px solid rgba(242, 156, 56, 0.6);
  box-shadow: 0 20px 50px rgba(242, 156, 56, 0.2);
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--news-image);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 42, 0.92), rgba(11, 31, 42, 0.4));
}

.news-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.6rem;
  color: #fff;
  min-height: 240px;
}

.news-card-featured {
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(242, 156, 56, 0.2);
  color: #fff;
  border: 1px solid rgba(242, 156, 56, 0.6);
}

.news-card-body h3 {
  font-size: 1.2rem;
  margin: 0;
}

.news-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.news-card-footer .btn {
  margin-left: auto;
}

.news-card .news-author-item span {
  display: none;
}

.news-card-date {
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.news-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.news-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 58, 82, 0.08);
  color: #0f3a52;
}

.news-article {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-article-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(15, 58, 82, 0.7);
  font-size: 0.9rem;
}

.news-article-meta a {
  color: inherit;
}

.news-article-hero img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--ciic-shadow);
}

.news-article-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-article-content p {
  margin: 0;
  font-size: 1.02rem;
}

.news-article-content .lead {
  font-size: 1.12rem;
  color: rgba(15, 58, 82, 0.85);
}

.news-article-authors {
  font-size: 0.95rem;
  color: rgba(15, 58, 82, 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-article-authors-text {
  display: none;
  margin: 0;
}

.news-article-authors .news-avatars {
  gap: 0.4rem 0.8rem;
}

.news-article-authors a {
  color: var(--ciic-ink-2);
  font-weight: 600;
  text-decoration: none;
}

.news-article-authors a:hover {
  text-decoration: underline;
}

.news-article-authors .news-author-item {
  color: var(--ciic-ink-2);
}

.news-article-authors .news-author-item img {
  border-color: rgba(15, 58, 82, 0.2);
  filter: grayscale(0);
  opacity: 1;
}

.news-article-authors-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 0.35rem;
  color: rgba(15, 58, 82, 0.55);
}

.news-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-article-quote {
  margin: 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(15, 58, 82, 0.05);
  border: 1px solid rgba(15, 58, 82, 0.12);
}

.news-article-quote blockquote {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.news-article-quote figcaption {
  font-size: 0.9rem;
  color: rgba(15, 58, 82, 0.7);
}

.anchor-offset {
  scroll-margin-top: 120px;
}

.about-page {
  overflow: hidden;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 1rem 0 2rem;
}

.about-hero--single {
  grid-template-columns: 1fr;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ciic-ink-2);
}

.about-lead {
  font-size: 1.1rem;
  color: rgba(15, 58, 82, 0.85);
  max-width: 620px;
}

.about-hero--single .about-lead {
  max-width: none;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-hero-panel {
  background: linear-gradient(135deg, rgba(15, 58, 82, 0.08), rgba(51, 168, 156, 0.16));
  border: 1px solid rgba(15, 58, 82, 0.12);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: var(--ciic-shadow-soft);
}

.about-stat-value {
  display: block;
  font-family: var(--ciic-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ciic-ink-2);
}

.about-stat-label {
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.7);
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-timeline-item {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--ciic-shadow-soft);
}

.about-timeline-year {
  font-family: var(--ciic-font-display);
  font-weight: 700;
  color: var(--ciic-ink-2);
}

.about-timeline-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(15, 58, 82, 0.7);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--ciic-border);
}

.about-section--reverse .about-section-media {
  order: -1;
}

.about-section--full {
  grid-template-columns: 1fr;
}

.about-section--wide-media {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.about-section-text p {
  margin-bottom: 1rem;
}

.about-section-media,
.about-section-panel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.about-media-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--ciic-shadow);
}

.about-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow-soft);
}

.about-card h3 {
  margin-bottom: 0.5rem;
}

.about-card-text {
  color: rgba(15, 58, 82, 0.7);
}

.about-panel-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow-soft);
}

.about-bullets {
  padding-left: 1.1rem;
  color: rgba(15, 58, 82, 0.75);
}

.about-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-area-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--ciic-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-area-card i {
  font-size: 1.2rem;
  color: var(--ciic-accent-2);
}

.about-area-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.about-area-card p {
  margin: 0;
  color: rgba(15, 58, 82, 0.75);
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-highlight {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--ciic-shadow-soft);
}

.about-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(15, 58, 82, 0.75);
}

.about-vision-card {
  background: linear-gradient(135deg, rgba(15, 58, 82, 0.08), rgba(51, 168, 156, 0.16));
  border: 1px solid rgba(15, 58, 82, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow);
}

.about-domains {
  padding-top: 2rem;
}

.about-domains .col {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-domains .col:hover {
  transform: translateY(-3px);
  box-shadow: var(--ciic-shadow);
}

.about-domains .icon-square {
  background: rgba(15, 58, 82, 0.08);
  color: #0f3a52;
}

@media (max-width: 992px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-metric-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .about-section--reverse,
  .about-section--wide-media {
    grid-template-columns: 1fr;
  }

  .about-section--reverse .about-section-media {
    order: 0;
  }

  .member-hero {
    grid-template-columns: 1fr;
  }

  .member-hero-photo {
    justify-content: flex-start;
  }
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-highlights {
    grid-template-columns: 1fr;
  }

  .news-index-grid {
    grid-template-columns: 1fr;
  }
}

.hero-block h2 small.text-accent {
  color: var(--ciic-accent) !important;
}

.hero-block h2 small.text-body-secondary {
  color: rgba(var(--bs-secondary-color-rgb), 1) !important;
}

.hero-block::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(242, 156, 56, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-media {
  border-radius: 18px;
  box-shadow: var(--ciic-shadow);
  transform: translateY(-4px);
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  height: clamp(230px, 28vw, 320px);
  padding: 0.5rem;
  animation: floatSlow 10s ease-in-out infinite;
  pointer-events: none;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-canvas {
  width: 100%;
  max-width: none;
  height: 100%;
  opacity: 0.7;
}

.section-panel {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 18px;
  box-shadow: var(--ciic-shadow-soft);
}

.section-panel .featurette-divider {
  margin: 1.5rem 0 2rem;
}

.b-example-divider {
  background: linear-gradient(90deg, transparent, rgba(15, 58, 82, 0.15), transparent);
  height: 2px;
  border: 0;
  box-shadow: none;
}

.featurette-divider {
  border-color: rgba(15, 58, 82, 0.1);
}

.card {
  border-radius: 16px;
  border: 1px solid var(--ciic-border);
  box-shadow: var(--ciic-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ciic-shadow);
}

.card-cover {
  position: relative;
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
}

.card-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg,
      rgb(var(--card-accent, 18 132 143) / 0.75),
      rgba(5, 12, 18, 0.65));
  z-index: 0;
}

.card-cover > * {
  position: relative;
  z-index: 1;
}

.card img.rounded-circle,
.list-group-item img.rounded-circle {
  box-shadow: 0 6px 12px rgba(10, 20, 30, 0.15);
  background: #fff;
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0.65rem auto 0.35rem;
  background: #fff;
  border: 3px solid rgba(15, 58, 82, 0.08);
  box-shadow: 0 8px 16px rgba(10, 20, 30, 0.12);
}

.member-avatar--placeholder {
  object-fit: contain;
  padding: 0.35rem;
}

.member-avatar--large {
  width: 160px;
  height: 160px;
  margin: 0;
}

.member-profile {
  overflow: hidden;
}

.member-hero {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.member-hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ciic-ink-2);
}

.member-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0.5rem 0 0.75rem;
}

.member-hero-badges .member-area-badge {
  margin: 0;
}

.member-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.member-sidecard {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--ciic-shadow-soft);
  margin-bottom: 1rem;
}

.member-sidecard h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.member-side-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(15, 58, 82, 0.75);
}

.member-side-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.member-side-item--muted {
  color: rgba(15, 58, 82, 0.5);
}

.member-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.member-link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  color: var(--ciic-ink-2);
  background: rgba(15, 58, 82, 0.05);
}

.member-link-item img {
  width: 18px;
  height: 18px;
}

.member-link-item:hover {
  text-decoration: none;
  background: rgba(15, 58, 82, 0.1);
}

.member-tabs {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--ciic-border);
}

.member-tabs .nav-link {
  border: 0;
  color: rgba(15, 58, 82, 0.7);
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 12px 12px 0 0;
}

.member-tabs .nav-link.active {
  color: var(--ciic-ink-2);
  background: rgba(15, 58, 82, 0.08);
  border-bottom: 2px solid var(--ciic-accent-2);
}

.member-tab-content {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 0 16px 16px 16px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow-soft);
}

.member-list-group .list-group-item {
  border: 1px solid var(--ciic-border);
  border-radius: 14px !important;
  margin-bottom: 0.75rem;
  background: var(--ciic-surface);
  box-shadow: var(--ciic-shadow-soft);
}

.member-bio {
  font-size: 1.02rem;
  color: rgba(15, 58, 82, 0.8);
}

.member-empty {
  color: rgba(15, 58, 82, 0.6);
  font-style: italic;
}

.member-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-weight: 600;
}

.badge-q1 {
  background: rgba(51, 168, 156, 0.18);
  color: #0f3a52;
}

.badge-q2 {
  background: rgba(242, 156, 56, 0.24);
  color: #6b3d0f;
}

.badge-q3 {
  background: rgba(242, 156, 56, 0.16);
  color: #6b3d0f;
}

.badge-q4 {
  background: rgba(199, 90, 72, 0.18);
  color: #7a2e22;
}

.badge-neutral {
  background: rgba(15, 58, 82, 0.12);
  color: #0f3a52;
}

.member-toolbar {
  position: sticky;
  top: 110px;
  z-index: 20;
  background: var(--ciic-surface);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--ciic-border);
}

.member-toolbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.member-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.member-toolbar-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 200px;
}

.member-toolbar-search {
  flex: 1 1 280px;
}

.member-toolbar-sort {
  flex: 0 1 180px;
}

.member-toolbar-filters {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.member-filters,
.member-type-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.member-filters .btn,
.member-type-filters .btn {
  white-space: nowrap;
}

.member-count {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.member-card .card-header,
.member-card .card-footer {
  min-height: 48px;
}

.member-card .card-body {
  padding: 0.75rem 1rem 0.85rem;
}

.members-grid > .member {
  display: flex;
}

.member-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.member-card .card-body {
  flex: 1;
}

.member-card .list-group-item {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0.35rem 0;
}

.member-profile-btn {
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.member-area-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem auto 0.6rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f3a52;
  background: rgba(15, 58, 82, 0.08);
}

.member-area--siote {
  background: rgba(51, 168, 156, 0.16);
}

.member-area--var {
  background: rgba(242, 156, 56, 0.2);
}

.member-area--csdf {
  background: rgba(15, 58, 82, 0.18);
}

.member-area--collab {
  background: rgba(15, 58, 82, 0.08);
  color: rgba(15, 58, 82, 0.85);
}

.member-cluster {
  font-weight: 600;
}

.member-cluster--muted {
  color: rgba(15, 58, 82, 0.5);
}

.pub-summary,
.project-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.pub-stat,
.project-stat {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--ciic-shadow-soft);
}

.pub-stat-value,
.project-stat-value {
  display: block;
  font-family: var(--ciic-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ciic-ink-2);
}

.pub-stat-label,
.project-stat-label {
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.7);
}

.pub-featured,
.project-featured {
  margin-bottom: 2rem;
}

.pub-section-title,
.project-section-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.pub-featured-grid,
.project-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.pub-featured-card,
.project-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--ciic-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.project-card {
  padding: 1.2rem;
}

.project-card--featured {
  border-color: rgba(51, 168, 156, 0.35);
  background: linear-gradient(135deg, rgba(51, 168, 156, 0.08), rgba(15, 58, 82, 0.04));
}

.pub-featured-header,
.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pub-featured-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15, 58, 82, 0.6);
}

.pub-featured-title {
  margin: 0;
  font-weight: 600;
  color: var(--ciic-ink);
}

.pub-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.7);
}

.pub-featured-link {
  font-weight: 600;
  color: var(--ciic-ink-2);
}

.pub-title {
  font-weight: 700;
  color: var(--ciic-ink-2);
  background: rgba(51, 168, 156, 0.16);
  padding: 0 0.25rem;
  border-radius: 6px;
}

.pub-featured-title .pub-title {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.pub-toolbar,
.project-toolbar {
  position: sticky;
  top: 110px;
  z-index: 20;
  background: var(--ciic-surface);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--ciic-border);
}

.pub-toolbar .row,
.project-toolbar .row {
  margin-left: 0;
  margin-right: 0;
}

.pub-count,
.project-count {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pub-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pub-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
}

.pub-item-body {
  flex: 1;
}

.pub-item-year {
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.6);
  white-space: nowrap;
  margin-left: 0.75rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.project-status {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f3a52;
  background: rgba(15, 58, 82, 0.1);
}

.project-status--ongoing {
  background: rgba(51, 168, 156, 0.2);
}

.project-status--starting {
  background: rgba(242, 156, 56, 0.25);
}

.project-status--completed {
  background: rgba(15, 58, 82, 0.16);
  color: rgba(15, 58, 82, 0.75);
}

.project-scope {
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.7);
}

.project-card-title {
  margin: 0;
  font-size: 1.1rem;
}

.project-card-name {
  margin: 0;
  color: rgba(15, 58, 82, 0.75);
  font-size: 0.95rem;
}

.project-members,
.project-funding {
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.65);
  margin: 0;
}

.project-budget {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1b6b7a;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.project-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.project-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
}

.project-dates {
  font-size: 0.85rem;
  color: rgba(15, 58, 82, 0.6);
}

@media (min-width: 992px) {
  .pub-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.card-cover .btn {
  border: 0;
}

.badge {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.list-group-item {
  border: 1px solid var(--ciic-border);
  border-radius: 14px !important;
  margin-bottom: 0.75rem;
  background: var(--ciic-surface);
  box-shadow: var(--ciic-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-group-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--ciic-shadow);
}

.list-group-flush .list-group-item {
  border-radius: 0 !important;
  margin-bottom: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
}

.list-group-flush .list-group-item:last-child {
  border-bottom: 0;
}

.list-group {
  gap: 0.5rem;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(15, 58, 82, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #0f3a52, #1b6b7a);
  border: none;
}

.btn-outline-primary {
  border-color: rgba(15, 58, 82, 0.4);
  color: #0f3a52;
}

.btn-outline-primary:hover {
  background: rgba(15, 58, 82, 0.08);
  color: #0f3a52;
}

.btn-outline-secondary {
  border-color: rgba(29, 42, 51, 0.25);
}

.form-control,
.form-select {
  border-radius: 12px;
  border-color: var(--ciic-border);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(51, 168, 156, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(51, 168, 156, 0.2);
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(15, 58, 82, 0.08);
  color: #0f3a52;
}

.carousel-indicators [data-bs-target] {
  width: 24px;
  height: 4px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
  background-color: var(--ciic-accent);
}

.carousel-control-prev,
.carousel-control-next {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

.carousel-progress {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0.75rem;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.carousel-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--ciic-accent);
  animation: carouselProgress 7s linear infinite;
  transform-origin: left center;
}

#newsCarousel:hover .carousel-progress-bar {
  animation-play-state: paused;
}

.dropdown-menu.d-block {
  border-radius: 16px;
  border: 1px solid var(--ciic-border);
  box-shadow: var(--ciic-shadow-soft);
  padding: 1rem;
}

.site-footer {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 20px;
  box-shadow: var(--ciic-shadow-soft);
}

.contact-page {
  overflow: hidden;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: stretch;
  padding-bottom: 2rem;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ciic-ink-2);
}

.contact-kicker--small {
  margin-bottom: 0.4rem;
}

.contact-lead {
  font-size: 1.1rem;
  color: rgba(15, 58, 82, 0.85);
  max-width: 640px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-hero-panel {
  background: linear-gradient(135deg, rgba(15, 58, 82, 0.08), rgba(51, 168, 156, 0.18));
  border: 1px solid rgba(15, 58, 82, 0.12);
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--ciic-shadow);
}

.contact-hero-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: var(--ciic-shadow-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ciic-border);
}

.contact-card {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  box-shadow: var(--ciic-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-card-header i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ciic-ink-2);
  background: rgba(51, 168, 156, 0.18);
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-meta {
  color: rgba(15, 58, 82, 0.7);
  font-size: 0.95rem;
}

.contact-map-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ciic-border);
}

.contact-map-panel {
  background: var(--ciic-surface);
  border: 1px solid var(--ciic-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--ciic-shadow-soft);
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.contact-map {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  box-shadow: var(--ciic-shadow-soft);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(6px); }
}

@keyframes carouselProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}


@media (prefers-reduced-motion: reduce) {
  .site-main,
  .hero-media,
  .hero-graphic,
  .card,
  .btn,
  .list-group-item {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 991px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .member-toolbar {
    position: static;
  }

  .member-toolbar-right {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .contact-map {
    height: 320px;
  }

  .member-toolbar-inner {
    align-items: flex-start;
  }

  .member-toolbar-filters {
    align-items: flex-start;
  }
}



  .bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .btn-bd-primary {
    --bd-violet-bg: #0f3a52;
    --bd-violet-rgb: 15, 58, 82;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #14516b;
    --bs-btn-hover-border-color: #14516b;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #103e55;
    --bs-btn-active-border-color: #103e55;
  }

  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }



/* card header igual para todos:; 3 linhas 85px*/
.card-header{
	min-height: 63.4px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}

.card-footer{
	min-height: 63.4px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}

.carousel-control-prev{width:3%; left:-10px;}
.carousel-control-next{width:3%; right:-10px}

@media (max-width: 768px) {
  .hero-block {
    padding: 1.5rem;
  }
  .hero-media {
    margin-top: 1rem;
  }
  .hero-graphic {
    min-height: 210px;
    height: 240px;
  }

  .member-toolbar {
    position: static;
    padding-bottom: 0.5rem;
  }

  .member-filters,
  .member-type-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }

  .member-tabs .nav-link {
    padding: 0.5rem 0.75rem;
  }

  .member-tab-content {
    padding: 1.1rem;
  }

  .pub-toolbar,
  .project-toolbar {
    position: static;
    padding-bottom: 0.5rem;
  }

  .pub-featured-grid,
  .project-featured-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2rem 1.25rem 1.25rem;
    border-radius: 20px 20px 0 0;
  }

  .footer-single-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links-inline {
    gap: 0.6rem;
  }
}
