@font-face {
  font-family: Clarika;
  src: url(/distribution-map/assets/font/clarika/ClarikaGeoBold.woff2);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Clarika;
  src: url(/distribution-map/assets/font/clarika/ClarikaGeoDemiBold.woff2);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Clarika;
  src: url(/distribution-map/assets/font/clarika/ClarikaGeoMedium.woff2);
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Clarika;
  src: url(/distribution-map/assets/font/clarika/ClarikaGeoRegular.woff2);
  font-weight: 400;
  font-display: swap;
}

body {
  font-family: "Clarika";
  background: #f9fafb;
}

.header-navbar,
.header-navbar-mobile {
  background-color: #fff;
  border-bottom: 1px solid #f4f4f4;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(9.8px);
  -webkit-backdrop-filter: blur(9.8px);
  z-index: 3;
}

.header-navbar a {
  color: #333;
  text-decoration: none;
}

.header-navbar-brand {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.header-navbar-brand img {
  height: 50px;
}

.header-navbar-mobile {
  background-color: #fff;
  border-bottom: 1px solid #f4f4f4;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(9.8px);
  -webkit-backdrop-filter: blur(9.8px);
  z-index: 3;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  display: none;
}

.header-navbar-mobile .navbar-nav a {
  text-decoration: none;
  font-weight: bold;
  color: #444;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.146);
  border-bottom: none;
}

.header-navbar-mobile .navbar-collapse {
  margin-top: 15px;
}

.header-navbar-mobile .navbar-nav a:first-child {
  border-radius: 5px 5px 0 0;
}

.header-navbar-mobile .navbar-nav a:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.146);
}

.section {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
  min-height: 60vh;
}

.title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}

.subtitle {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto 40px;
}

.article-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.article-card {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 16px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.article-card:hover {
  border-color: #6db9ff;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.1);
}

.article-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.article-content {
  flex: 1;
}

.article-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 4px;
}

.article-content p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

.article-arrow {
  font-size: 1.2rem;
  color: #a0aec0;
  flex-shrink: 0;
  margin-left: 16px;
}

.article-card:hover .article-arrow {
  color: #4299e1;
}

/* Language Switcher */
.lang-switcher {
  padding: 32px 0 0;
  text-align: center;
}

.lang-switcher p {
  display: inline;
  margin-right: 8px;
  color: #6c757d;
  font-size: 14px;
}

.lang-btn {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 13px;
  color: #495057;
  text-decoration: none;
  margin: 3px 2px;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.lang-btn:hover {
  border-color: #4299e1;
  color: #4299e1;
  background: #f0f8ff;
}

@media (max-width: 600px) {
  .article-card {
    padding: 16px;
  }
  .article-icon {
    font-size: 1.5rem;
    margin-right: 14px;
  }
  .article-content h2 {
    font-size: 1rem;
  }
}

/* Footer */
.footer-section-inner {
  background-color: #111827;
}

.footer-copy {
  background-color: #1f2937;
  padding: 10px;
  color: #eee;
  text-align: center;
}

.footer-bottom-logo {
  max-width: 100px;
  display: block;
  margin: auto;
}

.footer-bottom-logo img,
.footer-bottom-logo object {
  width: 100%;
}

.footer-social-media {
  margin: 10px 0 50px;
  text-align: center;
}

.footer-social-media a {
  color: #6c757d;
  text-decoration: none;
}

.footer-social-media a span {
  font-weight: bold;
}

.footer-social-media:hover > a {
  color: #ffffff;
}

.footer-links {
  text-align: center;
  margin-bottom: 30px;
}

.footer-links .footer-link {
  display: inline-block;
  margin: 10px;
}

.footer-links .footer-link a {
  color: #6c757d;
  text-decoration: none;
}

.footer-links .footer-link:hover > a {
  color: #ffffff;
}

@media only screen and (max-width: 992px) {
  .header-navbar {
    display: none;
  }

  .header-navbar-mobile {
    display: flex;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 550px) {
  .footer-social {
    display: none;
  }

  .footer-links .footer-link {
    display: block;
    width: 100%;
    text-align: left;
  }

  .footer-links {
    margin-bottom: 5px;
  }

  .title {
    font-size: 1.6rem;
  }
}
