@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0b2545;
  line-height: 1.25;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
  max-width: 72ch;
}

a {
  color: #1d4e89;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #0b2545;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:focus {
  outline: 2px solid #b8943e;
  outline-offset: 2px;
  border-radius: 2px;
}

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
ul li, ol li {
  margin-bottom: 0.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
table th, table td {
  padding: 0.5rem 1rem;
  border: 1px solid #e2e8f0;
  text-align: left;
}
table th {
  background-color: #f7f8fa;
  font-weight: 600;
}
table tr:nth-child(even) {
  background-color: #f7f8fa;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0b2545;
  color: #ffffff;
  padding: 0.5rem 1rem;
  z-index: 100;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-bottom: 3rem;
}

.page-header {
  background-color: #0b2545;
  color: #ffffff;
  padding: 4.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b8943e, transparent);
}
.page-header .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-header .page-header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
}
.page-header .page-header__logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  order: 1;
}
.page-header .page-header__inner > div {
  order: 2;
}
.page-header h1 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}

.page-subtitle {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 70ch;
  margin-bottom: 3rem;
}

.content-section {
  margin-bottom: 3rem;
}
.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}
.content-section h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: #b8943e;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: #1d4e89;
}
.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.card p {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}
.btn:focus {
  outline: 2px solid #b8943e;
  outline-offset: 2px;
}

.btn-primary {
  background-color: #0b2545;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #1d4e89;
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background-color: #8b1a2b;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #a82d3f;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border-color: #0b2545;
  color: #0b2545;
}
.btn-outline:hover {
  background-color: #0b2545;
  color: #ffffff;
  text-decoration: none;
}

.btn-sm {
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
}

.btn-group {
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.list-item {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.list-item:last-child {
  border-bottom: none;
}
.list-item:hover {
  background-color: #f7f8fa;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-primary {
  background-color: #0b2545;
  color: #ffffff;
}

.badge-accent {
  background-color: rgba(184, 148, 62, 0.12);
  color: #b8943e;
  border: 1px solid rgba(184, 148, 62, 0.3);
}

.team-list {
  list-style: none;
  padding: 0;
}
.team-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.values-list li {
  background: #f7f8fa;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0b2545;
  border: 1px solid #e2e8f0;
}

.contact-info {
  background: #f7f8fa;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  border: 1px solid #e2e8f0;
}
.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.google-form-embed {
  margin-top: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.google-form-embed iframe {
  display: block;
}

.member-profiles {
  display: inline;
  margin-left: 0.5rem;
}
.member-profiles a {
  display: inline-block;
  padding: 2px 0.25rem;
  margin-right: 0.25rem;
  font-size: 0.75rem;
  color: #0b2545;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.member-profiles a:hover {
  background-color: #0b2545;
  color: #ffffff;
  border-color: #0b2545;
}
.member-profiles a:focus {
  outline: 2px solid #b8943e;
  outline-offset: 2px;
}

.site-header {
  background-color: #0b2545;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 52px;
  gap: 0.25rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: block;
}
.main-nav a:hover, .main-nav a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.main-nav .dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  opacity: 0.7;
}

.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #0b2545;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid #b8943e;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
  display: block;
}
.dropdown li {
  width: 100%;
}
.dropdown a {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.75);
}
.dropdown a:hover, .dropdown a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dropdown-separator {
  height: 1px;
  margin: 0.25rem 1rem;
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-lang-switch a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.22rem 0.62rem;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  line-height: 1.5;
}
.nav-lang-switch a:hover {
  color: #ffffff;
  border-color: #b8943e;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: auto;
}
.mobile-menu-btn:focus {
  outline: 2px solid #b8943e;
  outline-offset: 2px;
}

.site-footer {
  background-color: #0b1929;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: #d4b05c;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer-section a:hover {
  color: #d4b05c;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-bottom .footer-search {
  width: 100%;
  max-width: 400px;
}
.footer-bottom .lang-switch a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-bottom .lang-switch a:hover {
  color: #d4b05c;
  border-color: #d4b05c;
}

.scientific-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.post-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #1d4e89;
}
.post-card .post-meta {
  padding: 1rem 1.5rem 0;
  font-size: 0.8rem;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.post-card .post-meta time {
  display: block;
  margin-bottom: 0.25rem;
}
.post-card h3 {
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.1rem;
}
.post-card h3 a {
  color: #0b2545;
}
.post-card h3 a:hover {
  color: #1d4e89;
}
.post-card .post-excerpt {
  padding: 0 1.5rem 1.5rem;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.7;
}
.post-card .post-tags {
  padding: 0 1.5rem 1.5rem;
}
.post-card .post-tags .badge {
  margin-right: 0.25rem;
}

.post-full {
  max-width: 760px;
  margin: 0 auto;
}
.post-full .post-header {
  margin-bottom: 2rem;
  text-align: center;
}
.post-full .post-header h1 {
  margin-bottom: 0.5rem;
}
.post-full .post-header .post-meta {
  color: #4a5568;
  font-size: 0.9rem;
}
.post-full .post-content {
  font-size: 1.05rem;
  line-height: 1.85;
}
.post-full .post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-full .post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.post-full .post-content p {
  margin-bottom: 1rem;
}
.post-full .post-content blockquote {
  border-left: 3px solid #b8943e;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #4a5568;
}
.post-full .bibliography {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.post-full .bibliography h2 {
  border-bottom: none;
}
.post-full .bibliography ol {
  padding-left: 1.5rem;
}
.post-full .bibliography ol li {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.project-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #1d4e89;
}
.project-card h3 {
  margin-bottom: 0.5rem;
}
.project-card h3 a {
  color: #0b2545;
}
.project-card .project-description {
  color: #4a5568;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-detail {
  max-width: 800px;
  margin: 0 auto;
}
.project-detail .project-header {
  margin-bottom: 2rem;
}
.project-detail .project-header h1 {
  margin-bottom: 0.5rem;
}
.project-detail .project-content {
  line-height: 1.8;
}
.project-detail .project-content h2 {
  margin-top: 2rem;
}
.project-detail .project-content p {
  margin-bottom: 1rem;
}
.project-detail .subprojects {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.project-detail .subprojects h2 {
  margin-bottom: 1.5rem;
}
.project-detail .subproject-list {
  list-style: none;
  padding: 0;
}
.project-detail .subproject-list li {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s ease;
}
.project-detail .subproject-list li:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.project-detail .subproject-list li a {
  display: block;
  font-weight: 600;
  color: #0b2545;
  font-size: 0.95rem;
}
.project-detail .subproject-list li p {
  margin-top: 0.25rem;
  margin-bottom: 0;
  color: #4a5568;
  font-size: 0.9rem;
}

.partners-intro {
  max-width: 72ch;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.partner-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #b8943e;
}
.partner-card__logo {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.partner-card__logo img {
  height: 80px;
  width: 160px;
  object-fit: contain;
}
.partner-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.partner-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #0b2545;
}
.partner-card__abbr {
  font-weight: 400;
  color: #4a5568;
  font-size: 0.85rem;
}
.partner-card__type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8b1a2b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.partner-card__competency {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4a5568;
  flex: 1;
  margin-bottom: 1rem;
}
.partner-card__link {
  font-size: 0.8rem;
  color: #0b2545;
  text-decoration: none;
  font-weight: 600;
}
.partner-card__link:hover {
  color: #b8943e;
  text-decoration: underline;
}

.partners-join {
  background: #f7f8fa;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
}
.partners-join h2 {
  margin-bottom: 1rem;
}
.partners-join p {
  max-width: 56ch;
  margin: 0 auto 1.5rem;
  color: #4a5568;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background-color: #0b2545;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .main-nav ul.is-open {
    display: flex;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul a {
    display: block;
    padding: 1rem;
  }
  .has-dropdown .dropdown-arrow {
    display: none;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 0;
    margin-top: 0.25rem;
  }
  .dropdown a {
    padding-left: 2rem;
    font-size: 0.8rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-inner {
    position: relative;
  }
  .scientific-posts-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .page-header {
    padding: 2rem 0;
  }
  .page-header .page-header__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page-header .page-header__logo {
    width: 150px;
    height: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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