@charset "UTF-8";
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Title/Heading Fonts */
h1, h2 {
  font-family: "Crimson Pro", serif;
  font-variant: small-caps;
  letter-spacing: 0.02em;
}

h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

/* Styles for placeholder navbar - before navbar kicks in */
navbar {
  background-color: #414141;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Main Content Styles */
main {
  max-width: 1300px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.content-section {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.content-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #764ba2;
  margin-bottom: 0.5rem;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #764ba2;
}

/* Footer styles */
footer {
  background-color: #414141;
  color: #ccc;
  padding: 30px 0 30px;
}
footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
footer .footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4fc3f7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
footer .footer-section ul {
  list-style: none;
}
footer .footer-section ul li {
  margin-bottom: 12px;
}
footer .footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}
footer .footer-section a:hover {
  color: #4fc3f7;
}
footer .institution-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}
footer .logo-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 60px;
}
footer .logo-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}
footer .logo-placeholder {
  color: #999;
  font-size: 12px;
  text-align: center;
}
footer .logo-img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
footer .compliance-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
footer .badge {
  background: rgba(79, 195, 247, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.3);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  color: #4fc3f7;
  transition: all 0.3s ease;
}
footer .badge:hover {
  background: rgba(79, 195, 247, 0.2);
  border-color: #4fc3f7;
}
footer .badge-logo {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-decoration: none;
  cursor: pointer;
}
footer .badge-logo-img {
  max-height: 50px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
footer .badge-logo:hover .badge-logo-img {
  opacity: 1;
  transform: scale(1.05);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-bottom p {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
}
footer .footer-bottom a {
  color: #4fc3f7;
  text-decoration: none;
}
footer .footer-bottom a:hover {
  text-decoration: underline;
}
footer .support-info {
  background: rgba(79, 195, 247, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #4fc3f7;
  margin-top: 20px;
}
footer .support-info h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #4fc3f7;
}
footer .support-info ul {
  list-style: none;
  color: #ccc;
  font-size: 13px;
}
footer .support-info ul li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}
footer .support-info ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4fc3f7;
}
@media (max-width: 968px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer .footer-container {
    padding: 0 20px;
  }
  footer footer {
    padding: 40px 0 20px;
  }
  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* end footer styles */
/* Sub-menu Navigation */
.submenu-nav {
  background: linear-gradient(to bottom, #5a5a5a 0%, #4a4a4a 100%);
  color: white;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.submenu-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.submenu-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: white;
  min-width: 150px;
}

.submenu-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.submenu-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-transform: none;
}

.submenu-links a:hover {
  color: #5cbbea;
}

@media (max-width: 968px) {
  .submenu-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .submenu-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
/* Directory Section (Grid Layout) */
.directory-section {
  padding: 4rem 0;
}

.directory-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.directory-section h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
}

.directory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.directory-card {
  display: flex;
  gap: 5px;
  padding: 5px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 calc(50% - 2rem);
  text-decoration: none;
}

.directory-card:nth-child(4n+1),
.directory-card:nth-child(4n+2) {
  background-color: #dce9ed;
}

.directory-card:nth-child(4n+3),
.directory-card:nth-child(4n+4) {
  background-color: #f2f3f5;
}

.directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.directory-card-image {
  flex: 0 0 180px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 0 2.5rem 2.5rem;
  background: inherit;
  border-radius: 12px 0 0 12px;
}

.directory-card-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.directory-card-content {
  flex: 1;
  padding: 2.5rem;
  background: inherit;
  border-radius: 0 12px 12px 0;
}

.directory-card-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.directory-card-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .directory-card {
    flex: 1 1 100%;
    flex-direction: column;
  }
  .directory-card-image {
    flex: 1 1 auto;
    width: 100%;
  }
}
/* References Section */
.references-section {
  padding: 4rem 1rem;
}

.references-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.references-section h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 400;
}

.references-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.references-links li {
  margin-bottom: 1rem;
}

.references-links li:last-child {
  margin-bottom: 0;
}

.references-links a {
  color: #5cbbea;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.references-links a:hover {
  color: #049cba;
  text-decoration: underline;
}

/* Import Google Fonts
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');
*/
/* latin */
@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/crimsonpro/v28/q5uDsoa5M_tv7IihmnkabARboYF6CsKj.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Hero Section Styles */
.hero-section {
  background: linear-gradient(to bottom, #5a5a5a 0%, #4a4a4a 100%);
  padding: 4rem 1rem 5rem 1rem;
  text-align: center;
  color: white;
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  font-variant: normal;
  letter-spacing: 0.5px;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  color: #666;
}

.search-input::placeholder {
  color: #999;
}

.search-button {
  background: #ff9933;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.search-button:hover {
  background: #ff8800;
}

.search-button i {
  font-size: 1.3rem;
}

.hero-chat-hint {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.hero-chat-hint a {
  color: #5cbbea;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
  margin-bottom: 0;
}

.hero-chat-hint a:hover {
  text-decoration: underline;
}

/* What is FaceBase Section */
.what-is-section {
  background: #f2fdff;
  padding: 4rem 1rem;
}

.what-is-container {
  max-width: 1300px;
  margin: 0 auto;
}

.what-is-section h2 {
  text-align: center;
  font-size: 3rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 400;
}

.what-is-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.what-is-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.what-is-text p:last-child {
  font-weight: 600;
  color: #333;
}

.what-is-text a {
  color: #5cbbea;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.what-is-text a:hover {
  text-decoration: underline;
}

.what-is-image {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.what-is-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .what-is-content {
    grid-template-columns: 1fr;
  }
}
/* Our Consortiums Section */
.consortiums-section {
  background: #f2fdff;
  padding: 4rem 1rem;
}

.consortiums-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.consortiums-section h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 400;
}

.consortiums-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}

.consortium-item {
  font-family: "Latin Modern Roman", "Computer Modern", "Times New Roman", serif;
  font-size: 1.8rem;
  color: #555;
  font-style: italic;
  font-weight: 200;
  flex: 1;
  text-align: center;
}

.consortium-link {
  color: #555;
  text-decoration: none;
}

.consortium-link:hover {
  text-decoration: none;
  color: #5cbbea;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .consortiums-grid {
    flex-direction: column;
    gap: 2rem;
  }
}
/* Featured Research Section */
.featured-research-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.featured-research-container {
  max-width: 1300px;
  margin: 0 auto;
}

.featured-research-section h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 400;
}

.research-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.research-card {
  background: #dce9ed;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.research-card-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #dce9ed;
}

.research-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.research-card-content {
  padding: 2rem;
  text-align: center;
}

.research-card-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
  text-decoration: none;
}

.explore-link:hover {
  text-decoration: none;
  gap: 0.5rem;
}

/*
.explore-link::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.1rem;
}
*/
@media (max-width: 968px) {
  .research-cards {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 969px) and (max-width: 1300px) {
  .research-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Featured Resources Section */
.featured-resource-section {
  background: #f8f9fa;
  padding: 4rem 1rem;
}

.featured-resource-container {
  max-width: 1300px;
  margin: 0 auto;
}

.featured-resource-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-resource-cards-container, .disease-specific-cards-container, .organism-specific-cards-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
}

.organism-specific-cards-container {
  background: #e8f5e9;
}

.disease-specific-cards-container {
  background: #fef9e7;
}

.featured-resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-resource-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 200px;
  flex-shrink: 0;
}

.featured-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.featured-resource-card h3 {
  color: #5cbbea;
  font-size: 1.3rem;
  min-height: 3.2em;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-resource-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-resource-text h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 400;
}

.featured-resource-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.featured-resource-text p strong {
  color: #333;
  font-weight: 600;
}

.featured-resource-text p a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
}

.featured-resource-text p a:hover {
  text-decoration: underline;
}

.featured-resource-text p:last-child {
  color: #666;
  font-weight: 600;
}

@media (max-width: 968px) {
  .featured-resource-content {
    grid-template-columns: 1fr;
  }
  .featured-resource-cards {
    grid-template-columns: 1fr;
  }
}
/* Explore FaceBase Section */
.explore-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.explore-container {
  max-width: 1300px;
  margin: 0 auto;
}

.explore-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:nth-child(1) {
  background: #e8eaf6;
}

.stat-card:nth-child(2) {
  background: #e0f2f1;
}

.stat-card:nth-child(3) {
  background: #546e7a;
  color: white;
}

.stat-card:nth-child(4) {
  background: #fff9e6;
}

.stat-card:nth-child(5) {
  background: #d7ccc8;
}

.stat-card:nth-child(6) {
  background: #8d6e63;
  color: white;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-card:nth-child(1) .stat-icon {
  color: #7e57c2;
}

.stat-card:nth-child(2) .stat-icon {
  color: #26a69a;
}

.stat-card:nth-child(3) .stat-icon {
  color: white;
}

.stat-card:nth-child(4) .stat-icon {
  color: #5d6d7e;
}

.stat-card:nth-child(5) .stat-icon {
  color: #ff6f00;
}

.stat-card:nth-child(6) .stat-icon {
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: inherit;
}

.explore-text {
  position: relative;
}

.explore-text h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 400;
}

.explore-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.explore-text p:last-child {
  font-weight: 600;
  color: #333;
}

.explore-text p a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
}

.explore-text p a:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .explore-content {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* Share Your Data Section */
.share-data-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.share-data-container {
  max-width: 1300px;
  margin: 0 auto;
}

.share-data-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.share-data-text {
  position: relative;
}

.share-data-text h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 400;
}

.share-data-arrow {
  position: absolute;
  top: 0;
  right: 0;
  color: #5cbbea;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.share-data-arrow:hover {
  transform: translateX(5px);
}

.share-data-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.share-data-text p:last-child {
  font-weight: 600;
  color: #333;
}

.share-data-text p a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
}

.share-data-text p a:hover {
  text-decoration: underline;
}

.share-data-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.share-data-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 968px) {
  .share-data-content {
    grid-template-columns: 1fr;
  }
}
/* News Section */
.news-section {
  background: #f8f9fa;
  padding: 2.5rem 1rem 4rem 1rem;
}

.news-container {
  max-width: 1300px;
  margin: 0 auto;
}

.news-section h2 {
  text-align: center;
  font-size: 3rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.news-links {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 1.1rem;
}

.news-links a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
  margin: 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

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

.news-links i {
  font-size: 1rem;
}

.news-links .fa-twitter {
  background: #1DA1F2;
  color: white;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
}

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

.news-column {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.news-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.news-column-header h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.news-column-header i {
  color: #5cbbea;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.news-column-header i:hover {
  transform: translateX(3px);
}

.news-item, .bibliography li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child, .bibliography li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-item .bibliography {
  list-style-type: none;
}

.news-item-date {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-item-status {
  background: grey;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.news-item-status.open {
  background: #ff9800;
}

.news-item-status.open:hover {
  background: #ff8800;
}

.news-item-status.closed {
  background: #999;
}

.news-item-status.upcoming {
  background: lightyellow;
  color: #666;
  border: 2px solid yellow;
}

.news-item-status a {
  color: white;
  text-decoration: none;
}

.news-item-title {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.news-item-title a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
}

.news-item-title a:hover {
  text-decoration: underline;
}

.news-item-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.news-item-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.news-item-journal {
  color: #666;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

@media (max-width: 1300px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
/* Overview Section */
.resource-overview-section {
  background: #f2fdff;
  padding: 4rem 1rem;
}

.resource-overview-container {
  max-width: 1300px;
  margin: 0 auto;
}

.resource-overview-section h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
}

.resource-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.resource-overview-text {
  color: #666;
  line-height: 1.8;
}

.resource-overview-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.browse-data-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5cbbea;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
}

.browse-data-link:hover {
  gap: 0.8rem;
}

.browse-data-link i {
  font-size: 1.3rem;
}

.resource-overview-image {
  background: inherit;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.resource-overview-image img {
  max-width: 100%;
  height: auto;
}

.resource-overview-image iframe {
  max-width: 100%;
}

@media (max-width: 968px) {
  .resource-overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Resource page content */
.resource-page-content {
  padding: 4rem 1rem;
}

/* Data summary section */
.data-summary-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: start;
}

.data-summary-chart {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0.2rem;
  flex: 0 0 calc(50% - 2rem);
}

.data-summary-chart h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: #555;
  font-weight: 600;
  flex: 1;
  text-align: center;
  margin-bottom: 0.8rem;
  margin-top: 0.6rem;
}

.data-summary-chart iframe {
  max-width: 100%;
  display: block;
  border-style: none;
  border-color: inherit;
  border-width: 0px;
}

.data-summary-text {
  flex: 0 0 calc(50% - 2rem);
}

.data-summary-text h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 400;
}

.data-summary-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .data-summary-container {
    flex-direction: column;
    gap: 2rem;
  }
  .data-summary-chart,
  .data-summary-text {
    flex: 1 1 100%;
  }
}
/* =============================================================================
   SUB-PAGE LAYOUT STYLES
   Append to main.css before the sourceMappingURL comment.
   All layout classes use "pb-" prefix to avoid Bootstrap 5 conflicts.
   ============================================================================= */
/* ---------------------------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------------------------- */
.page-breadcrumb {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 0.6rem 1rem;
}

.page-breadcrumb-container {
  max-width: 1300px;
  margin: 0 auto;
  font-size: 14px; /* explicit px so BS3's 14px body and new 16px body both render the same */
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.page-breadcrumb-container a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 500;
}

.page-breadcrumb-container a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: #999;
  margin: 0 0.1rem;
}

.breadcrumb-current {
  color: #555;
  font-weight: 500;
}

/* ---------------------------------------------------------------------------
   Page section wrapper
   --------------------------------------------------------------------------- */
.page-section {
  background: #ffffff;
  padding: 2.5rem 1rem 4rem;
}

/* Subsite pages (layout: subsite) use Bootstrap's .container directly
   inside <body> which has background: #f4f4f4 from main.css.
   This gives the content area a white background to match page.html. */
body #content.container {
  background: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.page-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
   Page title (h1)
   --------------------------------------------------------------------------- */
.page-title {
  font-family: "Crimson Pro", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e8e8e8;
}

/* ---------------------------------------------------------------------------
   Prose content
   --------------------------------------------------------------------------- */
.page-content {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
}

.page-content .lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.page-content .lead.announce {
  text-align: center;
  margin-top: 20px;
  padding: 0 2rem;
  font-size: 1.12em;
}

.page-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}

.page-content a {
  color: #5cbbea;
  text-decoration: none;
  font-weight: 500;
}

.page-content a:hover {
  text-decoration: underline;
  color: #049cba;
}

.page-content h2 {
  font-family: "Crimson Pro", serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #333;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e8e8e8;
}

.page-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #555;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-content h2.anchor,
.page-content h3.anchor {
  scroll-margin-top: 1.5rem;
}

.page-content ul,
.page-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  padding: 0;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.5rem;
}

.page-content ul ul,
.page-content ol ol,
.page-content ul ol,
.page-content ol ul {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Definition lists */
.page-content dl {
  margin: 0.75rem 0 1.5rem 0;
}

.page-content dt {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.page-content dt:first-child {
  margin-top: 0;
}

.page-content dd {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-content strong {
  font-weight: 600;
  color: #333;
}

.page-content em {
  font-style: italic;
  color: #555;
}

.page-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2.5rem 0;
}

.page-content figure {
  margin: 1.5rem 0 2rem;
  padding: 12px;
  max-width: 100%;
}

.page-content figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.page-content figcaption {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
  margin-top: 0.6rem;
  font-style: italic;
}

.page-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-content p img,
.page-content li img {
  display: inline;
  vertical-align: middle;
}

.page-content .pb-img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
}

.page-content th {
  background: #f0f0f0;
  color: #333;
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #ddd;
}

.page-content td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e8e8e8;
  color: #444;
  vertical-align: top;
}

.page-content tr:last-child td {
  border-bottom: none;
}

.page-content tr:nth-child(even) td {
  background: #f9f9f9;
}

.page-content blockquote {
  border-left: 4px solid #5cbbea;
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: #f2fdff;
  color: #555;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.page-content blockquote p {
  margin-bottom: 0;
}

.page-content code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
  background: #f4f4f4;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: #c7254e;
}

.page-content pre {
  background: #f4f4f4;
  padding: 1.25rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}

.page-content pre code {
  background: none;
  padding: 0;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------------------------------------------------------------------------
   Callout / alert boxes
   --------------------------------------------------------------------------- */
.page-content .bg-info,
.page-content .info {
  background-color: #e8f4fd !important;
  border-left: 4px solid #5cbbea;
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.25rem;
  color: #444 !important;
}

.page-content .bg-warning {
  background-color: #fff8e1 !important;
  border-left: 4px solid #ffb300;
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.25rem;
  color: #444 !important;
}

.page-content .bg-success {
  background-color: #f0faf0 !important;
  border-left: 4px solid #4caf50;
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.25rem;
  color: #444 !important;
}

.page-content .bg-danger {
  background-color: #fdf0f0 !important;
  border-left: 4px solid #e53935;
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.25rem;
  color: #444 !important;
}

/* pb-alert family — replaces Bootstrap 3 .alert.alert-* */
.page-content .pb-alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  border: 1px solid transparent;
}

.page-content .pb-alert-info {
  background-color: #e8f4fd;
  border-color: #b8daff;
  color: #1a5276;
}

.page-content .pb-alert-success {
  background-color: #eafaf1;
  border-color: #a9dfbf;
  color: #1e6b3a;
}

.page-content .pb-alert-warning {
  background-color: #fef9e7;
  border-color: #f9e79f;
  color: #7d6608;
}

.page-content .pb-alert-danger {
  background-color: #fdedec;
  border-color: #f5b7b1;
  color: #922b21;
}

.page-content .pb-alert strong {
  color: inherit;
}

.page-content .pb-alert a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   Grid — pb- prefixed
   --------------------------------------------------------------------------- */
.page-content .pb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.page-content .pb-col-half {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 280px;
}

.page-content .pb-col-third {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 200px;
}

.page-content .pb-col-quarter {
  flex: 1 1 calc(25% - 2rem);
  min-width: 200px;
}

.page-content .pb-col-full {
  flex: 1 1 100%;
}

/* Main + aside split (replaces col-md-8 / col-md-4) */
.page-content .pb-col-main {
  flex: 1 1 calc(66% - 1.25rem);
  min-width: 280px;
}

.page-content .pb-col-aside {
  flex: 1 1 calc(34% - 1.25rem);
  min-width: 220px;
}

.page-content .pb-col-half iframe,
.page-content .pb-col-main iframe,
.page-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 4px;
  border: none;
}

/* ---------------------------------------------------------------------------
   Float utilities
   --------------------------------------------------------------------------- */
.page-content .pb-float-right {
  float: right;
  margin: 0 0 1.25rem 1.5rem;
  max-width: 50%;
}

.page-content .pb-float-left {
  float: left;
  margin: 0 1.5rem 1.25rem 0;
  max-width: 50%;
}

.page-content .pb-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 600px) {
  .page-content .pb-float-right,
  .page-content .pb-float-left {
    float: none;
    max-width: 100%;
    margin: 0 0 1.25rem 0;
  }
}
/* ---------------------------------------------------------------------------
   Post layout – contain floated images within .innercontent
   --------------------------------------------------------------------------- */
.innercontent {
  overflow: hidden; /* clearfix: contains any floated children (e.g. pb-float-right images) */
}

/* ---------------------------------------------------------------------------
   Phase cards
   --------------------------------------------------------------------------- */
.page-content .pb-phases {
  margin: 1.5rem 0 2rem;
}

.page-content .pb-phases .pb-row {
  gap: 1.5rem;
  align-items: stretch;
}

.page-content .pb-cards {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-content .pb-cards:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.page-content .pb-cards i.fa,
.page-content .pb-cards i.fas,
.page-content .pb-cards i.far {
  color: #5cbbea;
  margin-bottom: 0.5rem;
}

.page-content .pb-cards h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-align: center;
}

.page-content .pb-cards p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  flex: 1;
}

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.page-content .pb-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
  line-height: 1.4;
}

.page-content .pb-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.page-content .pb-btn-primary {
  background-color: #1285bf;
  color: #ffffff;
}

.page-content .pb-btn-primary:hover {
  background-color: #0f6fa3;
  color: #ffffff;
}

/* ---------------------------------------------------------------------------
   Utility classes
   --------------------------------------------------------------------------- */
.page-content .pb-text-center {
  text-align: center;
}

.page-content .pb-list-unstyled {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-content .pb-hidden-mobile {
  display: block;
}

.page-content .pb-welcome-img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.page-content .pb-office-hours-img {
  max-width: 100%;
  height: auto;
}

.page-content .teaser {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-align: center;
  background-color: #5cbbea;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.page-content .teaser a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   Publications page
   --------------------------------------------------------------------------- */
/* Title and venue */
.page-content .pub-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.page-content .pub-title a {
  color: #1285bf;
  text-decoration: none;
}

.page-content .pub-title a:hover {
  text-decoration: underline;
}

.page-content .pub-venue {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Button row */
.page-content .pub-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.page-content .pub-actions .pb-btn {
  font-size: 0.88rem;
  padding: 0.35rem 0.9rem;
}

/* Abstract toggle */
.page-content .pub-abstract-toggle {
  background: none;
  border: 1px solid #1285bf;
  color: #1285bf;
  font-size: 0.88rem;
  padding: 0.35rem 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.page-content .pub-abstract-toggle:hover {
  background: #1285bf;
  color: #fff;
}

/* Abstract panel — hidden by default, shown when .pub-abstract-open is added by JS */
.page-content .pub-abstract {
  display: none;
  background: #f8f9fa;
  border-left: 3px solid #5cbbea;
  padding: 1rem 1.25rem;
  margin: 0.5rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  border-radius: 0 4px 4px 0;
}

.page-content .pub-abstract.pub-abstract-open {
  display: block;
}

/* Year headings from jekyll-scholar group_by */
#pub-bibliography h3 {
  font-family: "Crimson Pro", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  margin: 2rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e8e8e8;
}

/* Individual entry list items */
#pub-bibliography ol,
#pub-bibliography ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#pub-bibliography li {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f0f0f0;
}

#pub-bibliography li:last-child {
  border-bottom: none;
}

/* Pagination controls */
.pub-pagination-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.5rem 0;
}

.pub-page-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #444;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  min-width: 2.2rem;
  text-align: center;
}

.pub-page-btn:hover:not(.disabled):not(.active) {
  background: #f0f7ff;
  border-color: #1285bf;
  color: #1285bf;
}

.pub-page-btn.active {
  background: #1285bf;
  border-color: #1285bf;
  color: #fff;
  cursor: default;
}

.pub-page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pub-pagination-ellipsis {
  padding: 0.4rem 0.4rem;
  color: #999;
  font-size: 0.9rem;
}

.pub-pagination-summary {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: #777;
}

/* ---------------------------------------------------------------------------
   EnamelBase / uh3 navigation
   --------------------------------------------------------------------------- */
.uh3-nav {
  margin: 1rem 0 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.uh3-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.uh3-nav-item {
  position: relative;
}

.uh3-nav-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #444;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.uh3-nav-link:hover {
  color: #1285bf;
  text-decoration: none;
  background: #f5f5f5;
}

.uh3-nav-item.active > .uh3-nav-link {
  color: #1285bf;
  border-bottom-color: #1285bf;
  font-weight: 600;
}

/* Dropdown toggle */
.uh3-nav-toggle {
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.uh3-caret {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

/* CSS-only hover dropdown */
.uh3-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 100;
}

.uh3-nav-dropdown:hover .uh3-dropdown-menu {
  display: block;
}

.uh3-nav-dropdown:hover .uh3-caret {
  transform: rotate(180deg);
}

.uh3-dropdown-item {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  transition: background 0.2s, color 0.2s;
}

.uh3-dropdown-item:hover {
  background: #f0f7ff;
  color: #1285bf;
  text-decoration: none;
}

/* Mobile: stack nav items */
@media (max-width: 768px) {
  .uh3-nav-list {
    flex-direction: column;
  }
  .uh3-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
  .uh3-nav-dropdown:hover .uh3-dropdown-menu {
    display: block;
  }
}
/* ---------------------------------------------------------------------------
   EnamelBase content helpers
   --------------------------------------------------------------------------- */
.enamel-home-image {
  max-width: 300px;
  height: auto;
  border-radius: 4px;
}

.enamel-amelogenesis-image-wrapper {
  text-align: center;
  margin: 1.5rem 0;
}

.enamel-amelogenesis-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Mouse models table scroll wrapper */
.mouse-model-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

.MouseReagents {
  min-width: 900px;
  font-size: 0.95rem;
}

.MouseReagents th {
  background: #f0f0f0;
  font-weight: 600;
  white-space: nowrap;
}

.MouseReagents td {
  vertical-align: top;
  line-height: 1.5;
}

/* ---------------------------------------------------------------------------
   Responsive breakpoints
   --------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .page-content .pb-col-half,
  .page-content .pb-col-main,
  .page-content .pb-col-aside {
    flex: 1 1 100%;
  }
  .page-content .pb-col-quarter {
    flex: 1 1 calc(50% - 1rem);
  }
  .page-content .pb-hidden-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-content .pb-col-third {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .page-title {
    font-size: 1.8rem;
  }
  .page-content h2 {
    font-size: 1.5rem;
  }
  .page-section {
    padding: 1.5rem 1rem 3rem;
  }
  .page-content .pb-col-quarter {
    flex: 1 1 100%;
  }
  .page-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* ── News / Articles & Events page ─────────────────────────────────────────
   Replaces .pagination (conflicts with Bootstrap 5's own component)
   and .newsItem with pb- prefixed equivalents.
   Append to assets/css/main.css
   ─────────────────────────────────────────────────────────────────────────── */
.page-content .pb-news-item {
  margin-bottom: 2rem;
}

.page-content .pb-news-item h2 {
  margin-bottom: 0.25rem;
}

.page-content .pb-news-item small {
  display: block;
  color: #666;
  margin-bottom: 0.75rem;
}

.page-content .pb-news-pagination {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
  padding: 0;
  list-style: none;
}

.page-content .pb-news-pagination-count {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.page-content .pb-news-pagination a {
  text-decoration: none;
}

.page-content .pb-news-pagination .pb-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/*# sourceMappingURL=main.css.map */