@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wdth,wght@0,75..100,100..700;1,75..100,100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  /*  color: $text-dark; */
}

.archive-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.archive-nav h2 {
  color: #1DA1F2;
  margin: 0 20px;
  font-size: 1.5em;
}
.archive-nav .nav-arrow {
  background: none;
  border: none;
  color: #1DA1F2;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0 10px;
}
.archive-nav .years {
  display: flex;
  overflow-x: hidden;
  width: 70%;
}
.archive-nav .years .year {
  background-color: #E1E8ED;
  color: #1DA1F2;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.archive-nav .years .year:hover {
  background-color: #CCD6DD;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  /*  box-shadow: $shadow; */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: block;
}
.navbar__logo-img {
  height: 48px;
  width: auto;
}
.navbar__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.navbar__toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.navbar__toggle-icon::before, .navbar__toggle-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #111827;
  transition: all 0.2s ease-in-out;
}
.navbar__toggle-icon::before {
  top: -8px;
}
.navbar__toggle-icon::after {
  top: 8px;
}
.navbar__toggle[aria-expanded=true] .navbar__toggle-icon {
  background: transparent;
}
.navbar__toggle[aria-expanded=true] .navbar__toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar__toggle[aria-expanded=true] .navbar__toggle-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.navbar__menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}
.navbar__item--cta {
  margin-left: 1.5rem;
}
.navbar__link {
  min-height: 40px;
  padding: 6px 14px;
  text-decoration: none;
  color: #111827;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 4px;
  margin-bottom: -4px; /* 
border-radius: $radius; */
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
}
.navbar__link:hover, .navbar__link.active, .navbar__link:focus {
  /*  background: rgba($accent, 0.1); */
  color: #0891b2;
  border-bottom: 4px solid #0891b2;
}
.navbar__link--cta {
  background: transparent;
  border-radius: 4px;
  border: 2px solid #0891b2;
  color: #0891b2;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  line-height: 16px;
}
.navbar__link--cta:hover, .navbar__link--cta:focus {
  background: #0891b2;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.navbar__link[aria-current=true] {
  color: #0891b2;
}
.navbar__user-dropdown {
  position: relative;
}
.navbar__user-dropdown:hover .navbar__dropdown-content, .navbar__user-dropdown:focus-within .navbar__dropdown-content {
  display: block;
}
.navbar__user-btn {
  /* background: rgba($accent, 0.3); */
  background-color: aliceblue;
  color: #0891b2;
  border: 2px solid rgba(8, 145, 178, 0.3);
  min-height: 40px;
  padding: 6px 14px;
  text-decoration: none;
  color: #0891b2;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 4px;
  margin-bottom: -4px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__user-btn:hover, .navbar__user-btn:focus {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
  outline: none;
}
.navbar__dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: #e5e7eb;
  min-width: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 1;
  margin-top: 0.5rem;
  overflow: hidden;
}
.navbar__logout {
  display: block;
  padding: 0.65rem 1rem;
  color: #dc2626;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.navbar__logout:hover, .navbar__logout:focus {
  background: #ffffff;
  color: #dc2626;
}
.navbar__lien {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 1rem;
  color: #0891b2;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #E6F4F6;
}
.navbar__lien:hover, .navbar__lien:focus {
  background: #ffffff;
  color: #0891b2;
}
@media (max-width: 768px) {
  .navbar__toggle {
    display: block;
  }
  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    display: none;
  }
  .navbar__menu.active {
    max-height: 400px;
    display: flex;
  }
  .navbar__item {
    width: 100%;
    text-align: center;
  }
  .navbar__item--cta {
    margin-left: 0;
  }
  .navbar__link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }
  .navbar__user-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
  }
  .navbar__dropdown-content {
    position: static;
    width: 100%;
    min-width: unset;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    display: none;
    background: #e5e7eb;
  }
  .navbar__logout {
    padding: 1rem;
  }
}

.partners {
  margin-top: 3rem;
  padding-bottom: 4rem;
  padding: 4rem 1rem;
  background: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='1120' viewBox='0 0 1200 1120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 750 Q600 50 1150 750' stroke='%23E6F4F6' stroke-width='4' stroke-dasharray='20,20' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .partners {
    padding: 3rem 1rem;
  }
}
@media (max-width: 480px) {
  .partners {
    padding: 2rem 0.5rem;
  }
}
@media (max-width: 360px) {
  .partners {
    padding: 1.5rem 0.3rem;
  }
}
.partners__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .partners__container {
    max-width: 90%;
  }
}
.partners__title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: #111827;
}
@media (max-width: 768px) {
  .partners__title {
    font-size: 2rem;
  }
}
.partners__subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .partners__subtitle {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .partners__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 475px) {
  .partners__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 360px) {
  .partners__subtitle {
    font-size: 0.85rem;
  }
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
@media (max-width: 1024px) {
  .partners__grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
}
@media (max-width: 600px) {
  .partners__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
}
.partners .partner-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-align: center;
}
.partners .partner-card:hover, .partners .partner-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.partners .partner-card:focus {
  outline: 2px solid #1e40af;
  outline-offset: 4px;
}
.partners .partner-card__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .partners .partner-card__logo {
    max-width: 100px;
  }
}
@media (max-width: 475px) {
  .partners .partner-card__logo {
    max-width: 90px;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 360px) {
  .partners .partner-card__logo {
    max-width: 80px;
  }
}
.partners .partner-card__icon {
  max-width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
  background-color: #0a1a3b;
  padding: 0.3rem;
  border-radius: 4px;
  top: -60%;
}
@media (max-width: 768px) {
  .partners .partner-card__icon {
    max-width: 100px;
  }
}
@media (max-width: 475px) {
  .partners .partner-card__icon {
    max-width: 90px;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 360px) {
  .partners .partner-card__icon {
    max-width: 80px;
  }
}
.partners .partner-card__name {
  font-size: 1.5rem;
  font-weight: 300;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .partners .partner-card__name {
    font-size: 1.3rem;
  }
}
@media (max-width: 475px) {
  .partners .partner-card__name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 360px) {
  .partners .partner-card__name {
    font-size: 1.1rem;
  }
}
.partners .partner-card__description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .partners .partner-card__description {
    font-size: 0.9rem;
  }
}
@media (max-width: 475px) {
  .partners .partner-card__description {
    font-size: 0.85rem;
  }
}
@media (max-width: 360px) {
  .partners .partner-card__description {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .partners .partner-card {
    padding: 1.5rem;
  }
}
@media (max-width: 475px) {
  .partners .partner-card {
    padding: 1.2rem;
  }
}
@media (max-width: 360px) {
  .partners .partner-card {
    padding: 1rem;
  }
}

.footer {
  background-image: linear-gradient(to right, #E6F4F6, white);
  color: #5b5b5b;
  padding: 3rem 1rem 1.5rem;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__brand {
    align-items: flex-start;
    text-align: left;
  }
}
.footer__logo {
  display: inline-block;
}
.footer__logo-img {
  height: 36px;
  width: auto;
}
.footer__description {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #5b5b5b;
  line-height: 1.6;
  max-width: 280px;
}
.footer__nav-title {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #5b5b5b;
  margin-bottom: 0.75rem;
}
.footer__nav-list {
  list-style: none;
}
.footer__nav-item {
  margin-bottom: 0.5rem;
}
.footer__nav-link {
  text-decoration: none;
  color: #333;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  transition: all 0.2s ease-in-out;
}
.footer__nav-link:hover, .footer__nav-link:focus {
  color: #0891b2;
}
.footer__contact-list {
  list-style: none;
}
.footer__contact-item {
  margin-bottom: 0.5rem;
}
.footer__contact-link, .footer__contact-text {
  color: #333;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.footer__contact-link:hover, .footer__contact-link:focus {
  color: #0891b2;
}
.footer__social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__social-list {
    justify-content: flex-start;
  }
}
.footer__social-link {
  color: #5b5b5b;
  display: block;
  transition: all 0.2s ease-in-out;
}
.footer__social-link:hover, .footer__social-link:focus {
  color: #6366f1;
}
.footer__social-icon {
  width: 22px;
  height: 22px;
}
.footer__bottom {
  border-top: 1px solid white;
  max-width: 1280px;
  margin: 1.5rem auto 0;
  padding: 1rem;
  /*     border-top: 1px solid rgba($white, 0.15); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.footer__copyright {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #5b5b5b;
}
.footer__legal-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__legal-link {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #5b5b5b;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.footer__legal-link:hover, .footer__legal-link:focus {
  color: #0891b2;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0.75rem;
  }
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand {
    align-items: center;
  }
  .footer__description {
    margin: 0 auto;
  }
  .footer__nav, .footer__contact, .footer__social {
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.blog {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #E6F4F6;
}
.blog--style1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
  background: #f5f3ed;
}
.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.blog__title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: #111827;
}
@media (max-width: 768px) {
  .blog__title {
    font-size: 2rem;
  }
}
.blog__subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .blog__subtitle {
    font-size: 1rem;
  }
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
.blog .blog-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  width: 100%;
  max-width: 350px;
}
.blog .blog-card a {
  text-align: left;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
.blog .blog-card a:hover .article-title, .blog .blog-card a:focus .article-title {
  color: #0891b2;
}
.blog .blog-card .image-wrapper {
  overflow: hidden;
}
.blog .blog-card .image-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card a:hover .blog .blog-card .image-wrapper img, .article-card a:focus .blog .blog-card .image-wrapper img {
  transform: scale(1.05);
}
.blog .blog-card .category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1rem 0 0.5rem;
  display: inline-block;
}
.blog .blog-card .article-title {
  margin-bottom: 2rem;
  color: #111827;
  margin-top: 1rem;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.blog .blog-card .meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog .blog-card .meta .author, .blog .blog-card .meta .date {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog .blog-card .excerpt {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
}
.blog__view-all {
  display: inline-block;
  margin-top: 3rem;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  color: #0891b2;
  border-radius: 4px;
  border: 2px solid #0891b2;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.blog__view-all:hover, .blog__view-all:focus {
  background: #0891b2;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog .blog-card__image {
    height: 180px;
  }
  .blog .blog-card__content {
    padding: 1rem;
  }
  .blog .blog-card__title {
    font-size: 1.3rem;
  }
}

.features {
  margin-top: 6rem;
  /* padding-bottom: 4rem; */
  padding: 6rem 1rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.features__container {
  max-width: 1200px;
  margin: 0 auto;
}
.features__header {
  text-align: center;
  margin-bottom: 3rem;
}
.features__title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: #111827;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 2rem;
  }
}
.features__intro {
  font-size: 1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .features__intro {
    font-size: 0.95rem;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features .feature-card {
  background: #f5f5f5;
  border-radius: 4px;
  /*  box-shadow: $shadow; */
  padding: 2rem;
  text-align: center;
  /*  transition: $transition; */
  width: 100%;
  max-width: 350px;
  /*  &:hover {
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
     transform: translateY(-4px);


   } */
}
.features .feature-card__imgs {
  width: 100%;
  max-width: 300px;
  height: 200px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.features .feature-card__imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.features .feature-card:focus-within {
  outline: 2px solid #1e40af;
  outline-offset: 4px;
}
.features .feature-card__title {
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
  opacity: 0.8;
  font-size: 1.6rem;
  color: #111827;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.features .feature-card__description {
  font-size: 0.95rem;
  color: #111827;
  line-height: 1.5;
}
.features .feature-card__cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  color: #0891b2;
  border-radius: 4px;
  border: 2px solid #0891b2;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.features .feature-card__cta:hover, .features .feature-card__cta:focus {
  background: #0891b2;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .features {
    padding: 2rem 1rem;
  }
  .features .feature-card {
    padding: 1.5rem;
  }
  .features .feature-card__title {
    font-size: 1.4rem;
  }
  .features .feature-card__description {
    font-size: 0.9rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  background: #ffc107;
  color: #1f2a44;
  padding: 3rem 1rem;
}
@media (max-width: 640px) {
  footer {
    padding: 2rem 0.75rem;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-right: 3rem;
}
@media (max-width: 768px) {
  .footer-logo {
    margin-right: 0;
  }
}
.footer-logo .logo-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
.footer-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2a44;
}

.footer-description {
  font-size: 1rem;
  color: #1f2a44;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .footer-description {
    font-size: 0.875rem;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.footer-column h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1f2a44;
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 0.75rem;
}
.footer-column ul li a {
  font-size: 0.875rem;
  color: #4b5675;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #1f2a44;
}
@media (max-width: 640px) {
  .footer-column ul li a {
    font-size: 0.8125rem;
  }
}
.footer-column ul li.new a::after {
  content: "New";
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  color: #ffffff;
  background: #1f2a44;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.hero {
  background: #E6F4F6;
  color: #111827;
  position: relative;
  padding-bottom: 6rem;
}
.hero__content {
  padding: 3rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.hero__text {
  flex: 1;
  min-width: 300px;
  align-items: center;
  text-align: center;
  align-self: center !important;
  margin-top: 4rem;
}
.hero__text h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.hero__text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2rem;
  /*   color: #d1d5db; */
}
.hero__text .hero__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.hero__text .hero__buttons .btn {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero__text .hero__buttons .btn--primary {
  background-color: #1e40af;
  color: #ffffff;
  border: 2px solid #1e40af;
}
.hero__text .hero__buttons .btn--primary:hover {
  background-color: #2f65d6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero__text .hero__buttons .btn--secondary {
  background: #ffffff;
  border-radius: 4px;
  /*  border: 2px solid white; */
  color: #0891b2;
  border: 2px solid #ffffff;
}
.hero__text .hero__buttons .btn--secondary:hover {
  background: rgb(216.75, 216.75, 216.75);
  color: #0891b2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero__graphic {
  flex: 1;
  text-align: center;
}
.hero__graphic img {
  max-width: 100%;
}
.hero__graphic .chart-meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: center;
  color: #5b5b5b;
}
.hero__graphic .chart-meta a {
  color: #0891b2;
  text-decoration: underline;
  margin: 0 0.5rem;
  font-size: 0.85rem;
}
.hero .feature-cards {
  position: relative;
  top: 90px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: -2rem auto 0 auto;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 4px;
  padding: 0.5rem;
  transform: translateY(50%);
}
.hero .feature-cards .card {
  padding: 0.8rem;
  margin: 0.5rem;
  border-radius: 4px;
  color: #111827;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1 1 200px;
  border: 1px solid #6b7280;
}
.hero .feature-cards .card:hover {
  background-color: #fbf2f4;
}
.hero .feature-cards .card .icon {
  /*  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center; */
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.hero .feature-cards .card .icon.moi {
  background-color: #2dd4bf;
}
.hero .feature-cards .card .icon.trend {
  background-color: #f59e0b;
}
.hero .feature-cards .card .icon.sector {
  background-color: #6366f1;
}
.hero .feature-cards .card .icon i {
  color: #ffffff;
  width: 22px;
  height: 22px;
  font-size: 1.2rem;
}
.hero .feature-cards .card .badge {
  font-size: 0.7rem;
  background: #6366f1;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  color: #ffffff;
}
.hero .feature-cards .card .badge.new {
  background: #E6F4F6;
  color: #111827;
}
.hero .feature-cards .card strong {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
}
.hero .feature-cards .card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #111827;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
  }
  .hero .feature-cards {
    flex-direction: column;
    display: block;
    transform: translateY(10%);
  }
  .hero__text h1 {
    font-size: 2rem;
  }
  .hero__text p {
    font-size: 1rem;
  }
  .hero__text .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero__text .hero__buttons .btn {
    width: 300px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 24px;
  }
}
@media (max-width: 428px) {
  .hero__text .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero__text .hero__buttons .btn {
    width: 300px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 24px;
  }
}

.feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  background: #6366f1;
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
}
.feedback-btn:hover {
  transform: scale(1.1);
}
.feedback-btn i {
  font-size: 24px;
}

.feedback-popup {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: white;
  width: 300px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: slideIn 0.3s ease;
}
.feedback-popup.open {
  display: block;
}
.feedback-popup h3 {
  margin: 0 0 15px;
  font-size: 18px;
  color: #333;
}
.feedback-popup .rating {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.feedback-popup .rating i {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.feedback-popup .rating i.selected {
  color: #ffc107;
}
.feedback-popup textarea {
  width: 100%;
  height: 80px;
  resize: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
}
.feedback-popup .submit-btn {
  background: #6366f1;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}
.feedback-popup .submit-btn:hover {
  background: rgb(52.2, 56.1, 236.8);
}
.feedback-popup .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.feedback-popup .message {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
.feedback-popup .message.success {
  color: #28a745;
}
.feedback-popup .message.error {
  color: #dc3545;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 400px) {
  .feedback-popup {
    width: 90%;
    right: 5%;
  }
}
.faillites-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.faillites-container h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: #111827;
  text-align: center;
}
@media (max-width: 768px) {
  .faillites-container h2 {
    font-size: 40px;
  }
}
.faillites-container p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faillites-container p {
    font-size: 0.95rem;
  }
}
.faillites-container #faillitesTable {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #111827;
}
.faillites-container #faillitesTable th, .faillites-container #faillitesTable td {
  text-align: left;
}
.faillites-container #faillitesTable thead {
  background: #e6f4f6;
  color: #111827;
}
.faillites-container #faillitesTable thead th {
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid #6b7280;
}
.faillites-container #faillitesTable tbody tr {
  border-bottom: 1px solid #6b7280;
}
.faillites-container #faillitesTable tbody tr:hover {
  background: white;
}
.faillites-container #faillitesTable tbody tr td {
  padding: 0.75rem;
  font-size: 0.9rem;
  text-align: left;
}
.faillites-container #faillitesTable tbody tr td a {
  color: #1e40af;
  text-decoration: none;
}
.faillites-container #faillitesTable tbody tr td a:hover {
  text-decoration: underline;
}
.faillites-container #faillitesTable .center-align {
  text-align: center;
}
.faillites-container #faillitesTable .right-align {
  text-align: right;
}
.faillites-container .dataTables_wrapper .dataTables_length,
.faillites-container .dataTables_wrapper .dataTables_filter,
.faillites-container .dataTables_wrapper .dataTables_info,
.faillites-container .dataTables_wrapper .dataTables_paginate {
  color: #111827;
  margin: 1rem 0;
}
.faillites-container .dataTables_wrapper .dataTables_length label,
.faillites-container .dataTables_wrapper .dataTables_filter label,
.faillites-container .dataTables_wrapper .dataTables_info label,
.faillites-container .dataTables_wrapper .dataTables_paginate label {
  color: #111827;
}
.faillites-container .dataTables_wrapper .dataTables_length input,
.faillites-container .dataTables_wrapper .dataTables_length select,
.faillites-container .dataTables_wrapper .dataTables_filter input,
.faillites-container .dataTables_wrapper .dataTables_filter select,
.faillites-container .dataTables_wrapper .dataTables_info input,
.faillites-container .dataTables_wrapper .dataTables_info select,
.faillites-container .dataTables_wrapper .dataTables_paginate input,
.faillites-container .dataTables_wrapper .dataTables_paginate select {
  background: #ffffff;
  color: #111827;
  border: 1px solid #6b7280;
  border-radius: 4px;
  padding: 0.5rem;
}
.faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #ffffff;
  color: #111827 !important;
  border: 1px solid #6b7280;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: all 0.2s ease-in-out;
}
.faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button.current, .faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #1e40af;
  color: #ffffff !important;
  border-color: #1e40af;
}
.faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #6b7280 !important;
  cursor: not-allowed;
}
.faillites-container .checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.faillites-container .checkbox-container label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #111827;
  cursor: pointer;
}
.faillites-container .checkbox-container label input {
  accent-color: #1e40af;
  width: 1rem;
  height: 1rem;
}
.faillites-container .checkbox-container label:hover {
  color: black;
}
@media (max-width: 768px) {
  .faillites-container {
    padding: 2rem 1rem;
  }
  .faillites-container .faillites-container #faillitesTable {
    font-size: 0.85rem;
  }
  .faillites-container .faillites-container #faillitesTable thead th,
  .faillites-container .faillites-container #faillitesTable tbody td {
    padding: 0.5rem;
    text-align: left;
  }
  .faillites-container .faillites-container .checkbox-container {
    gap: 0.75rem;
    flex-direction: row;
    align-items: flex-start;
  }
  .faillites-container .faillites-container .checkbox-container label {
    font-size: 0.85rem;
  }
}

.faillites-section {
  background: #f9f2ef;
  padding: 6rem 1rem;
  color: #111827;
}
.faillites-section .datable_cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  color: #1e40af;
  border-radius: 4px;
  border: 2px solid #1e40af;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.faillites-section .datable_cta:hover, .faillites-section .datable_cta:focus {
  background: #1e40af;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.faillites-section .faillites-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.faillites-section .faillites-container h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: #111827;
  text-align: center;
}
@media (max-width: 768px) {
  .faillites-section .faillites-container h2 {
    font-size: 2rem;
  }
}
.faillites-section .faillites-container p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faillites-section .faillites-container p {
    font-size: 0.95rem;
  }
}
.faillites-section .faillites-container #faillitesTable {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #111827;
}
.faillites-section .faillites-container #faillitesTable thead {
  background: #e6f4f6;
  color: #111827;
}
.faillites-section .faillites-container #faillitesTable thead th {
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid #6b7280;
}
.faillites-section .faillites-container #faillitesTable tbody tr {
  border-bottom: 1px solid #6b7280;
}
.faillites-section .faillites-container #faillitesTable tbody tr:hover {
  background: white;
}
.faillites-section .faillites-container #faillitesTable tbody tr td {
  padding: 0.75rem;
  font-size: 0.9rem;
}
.faillites-section .faillites-container #faillitesTable tbody tr td a {
  color: #1e40af;
  text-decoration: none;
}
.faillites-section .faillites-container #faillitesTable tbody tr td a:hover {
  text-decoration: underline;
}
.faillites-section .faillites-container #faillitesTable .center-align {
  text-align: center;
}
.faillites-section .faillites-container #faillitesTable .right-align {
  text-align: right;
}
.faillites-section .faillites-container .dataTables_wrapper .dataTables_length,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_filter,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_info,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate {
  color: #111827;
  margin: 1rem 0;
}
.faillites-section .faillites-container .dataTables_wrapper .dataTables_length label,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_filter label,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_info label,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate label {
  color: #111827;
}
.faillites-section .faillites-container .dataTables_wrapper .dataTables_length input,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_length select,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_filter input,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_filter select,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_info input,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_info select,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate input,
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate select {
  background: #ffffff;
  color: #111827;
  border: 1px solid #6b7280;
  border-radius: 4px;
  padding: 0.5rem;
}
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #ffffff;
  color: #111827 !important;
  border: 1px solid #6b7280;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: all 0.2s ease-in-out;
}
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button.current, .faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #1e40af;
  color: #ffffff !important;
  border-color: #1e40af;
}
.faillites-section .faillites-container .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #6b7280 !important;
  cursor: not-allowed;
}
.faillites-section .faillites-container .checkbox-container {
  /*  display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   justify-content: center; */
  margin-top: 2rem;
}
.faillites-section .faillites-container .checkbox-container label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #111827;
  cursor: pointer;
}
.faillites-section .faillites-container .checkbox-container label input {
  accent-color: #1e40af;
  width: 1rem;
  height: 1rem;
}
.faillites-section .faillites-container .checkbox-container label:hover {
  color: black;
}
@media (max-width: 768px) {
  .faillites-section {
    padding: 2rem 1rem;
  }
  .faillites-section .faillites-container #faillitesTable {
    font-size: 0.85rem;
  }
  .faillites-section .faillites-container #faillitesTable thead th,
  .faillites-section .faillites-container #faillitesTable tbody td {
    padding: 0.5rem;
    text-align: left;
  }
  .faillites-section .faillites-container .checkbox-container {
    gap: 0.75rem;
    flex-direction: row;
    align-items: flex-start;
  }
  .faillites-section .faillites-container .checkbox-container label {
    font-size: 0.85rem;
  }
}

.archives-container {
  max-width: 100%;
  /*  margin: 2rem auto; */
  padding: 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0891b2;
  margin-bottom: 1rem;
}

.navigation {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 10px;
  margin: 0 auto;
  align-items: center;
  padding: 0.5rem;
}

.nav-arrow {
  background: white;
  color: white;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}
.nav-arrow.left {
  margin-right: 0.5rem;
}
.nav-arrow.right {
  margin-left: 0.5rem;
}

.years-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.years-scroll::-webkit-scrollbar {
  display: none;
}

.year-btn {
  background: white;
  border: 2px solid rgba(8, 145, 178, 0.3);
  color: #0891b2;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.year-btn:hover {
  background: #0891b2;
  color: white;
}
.year-btn:focus {
  outline: none;
}
.year-btn.active {
  background: #0891b2;
  color: white;
  font-weight: 500;
}

@media (max-width: 768px) {
  .year-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}
.login-page {
  font-family: "IBM Plex Sans", sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}
.login-page__container {
  max-width: 450px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}
.login-page__header {
  margin-bottom: 2rem;
}
.login-page__header .login-page__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.login-page__header .login-page__logo .login-page__logo-img {
  max-width: 30px;
  height: auto;
  transition: all 0.2s ease-in-out;
}
.login-page__header .login-page__title {
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 1.6rem;
  color: #5b5b5b;
}
.login-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login-page__form .form-group {
  text-align: left;
}
.login-page__form .form-group__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  display: block;
  margin-bottom: 0.25rem;
}
.login-page__form .form-group__input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}
.login-page__form .form-group__input:focus {
  border-color: #0891b2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(8, 145, 178, 0.2);
}
.login-page__form .form-group__input::placeholder {
  color: #6b7280;
}
.login-page__form .form-group__error {
  font-size: 0.8rem;
  color: #ef4444;
  display: block;
  margin-top: 0.25rem;
}
.login-page__form .form-group--options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.login-page__form .form-group--options .form-group__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #111827;
}
.login-page__form .form-group--options .form-group__checkbox input {
  accent-color: #0891b2;
  width: 1rem;
  height: 1rem;
}
.login-page__form .form-group--options .form-group__link {
  font-size: 0.9rem;
  color: #0891b2;
  text-decoration: none;
}
.login-page__form .form-group--options .form-group__link:hover {
  text-decoration: underline;
}
.login-page__form .form-group__submit {
  background: #0891b2;
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.login-page__form .form-group__submit:hover, .login-page__form .form-group__submit:focus {
  background: rgb(5.8064516129, 105.2419354839, 129.1935483871);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.login-page__register {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.login-page__register .login-page__register-link {
  color: #0891b2;
  text-decoration: none;
}
.login-page__register .login-page__register-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-page {
    padding: 1rem;
  }
  .login-page__container {
    padding: 1.5rem;
  }
  .login-page__header .login-page__title {
    font-size: 1.5rem;
  }
  .login-page__header .login-page__logo-img {
    max-width: 50px;
  }
  .login-page__form {
    gap: 1rem;
  }
  .login-page__form .form-group__label {
    font-size: 0.85rem;
  }
  .login-page__form .form-group__input {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  .login-page__form .form-group__error {
    font-size: 0.75rem;
  }
  .login-page__form .form-group--options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .login-page__form .form-group--options .form-group__checkbox,
  .login-page__form .form-group--options .form-group__link {
    font-size: 0.85rem;
  }
  .login-page__form .form-group__submit {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  .login-page__register {
    font-size: 0.85rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.dashboard {
  padding: 2rem 1rem;
  min-height: 100vh;
  background: #f0f0f0;
  /*  &__search {
        position: relative;
        max-width: 500px;
        margin: 1.5rem auto;
        padding: 0 0.5rem;

        @media (max-width: 768px) {
            max-width: 90%;
            margin: 1rem auto;
        }

        @media (max-width: 480px) {
            max-width: 100%;
            padding: 0;
        }

        &-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: $white;
            border-radius: $radius;
            border: 1px solid $text-muted;
            transition: $transition;

            &:focus-within {
                border-color: $primary;
                box-shadow: 0 0 5px rgba($primary, 0.2);
            }
        }

        &-icon {
            position: absolute;
            left: 0.75rem;
            color: $text-muted;
            font-size: 1rem;

            @media (max-width: 480px) {
                left: 0.6rem;
                font-size: 0.9rem;
            }

            @media (max-width: 360px) {
                left: 0.5rem;
                font-size: 0.85rem;
            }
        }

        &-input {
            width: 100%;
            padding: 0.75rem 0.75rem 0.75rem 2.5rem;
            font-size: 0.95rem;
            color: $text-dark;
            border: none;
            border-radius: $radius;
            background: transparent;
            transition: $transition;

            &:focus {
                outline: none;
            }

            &::placeholder {
                color: $text-muted;
            }

            @media (max-width: 768px) {
                font-size: 0.9rem;
                padding: 0.6rem 0.6rem 0.6rem 2.2rem;
            }

            @media (max-width: 480px) {
                font-size: 0.85rem;
                padding: 0.5rem 0.5rem 0.5rem 2rem;
            }

            @media (max-width: 360px) {
                font-size: 0.8rem;
                padding: 0.4rem 0.4rem 0.4rem 1.8rem;
            }
        }

        &-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: $white;
            border: 1px solid $text-muted;
            border-radius: $radius;
            box-shadow: $shadow;
            list-style: none;
            max-height: 200px;
            overflow-y: auto;
            z-index: 10;
            display: none;
            margin: 0 0.5rem;

            &.active {
                display: block;
            }

            li {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
                color: $text-dark;
                cursor: pointer;
                transition: $transition;

                &:hover,
                &:focus {
                    background: $primary;
                    color: $white;
                }

                @media (max-width: 768px) {
                    font-size: 0.85rem;
                    padding: 0.6rem 0.8rem;
                }

                @media (max-width: 480px) {
                    font-size: 0.8rem;
                    padding: 0.5rem 0.7rem;
                }

                @media (max-width: 360px) {
                    font-size: 0.75rem;
                    padding: 0.4rem 0.6rem;
                }
            }

            @media (max-width: 480px) {
                max-height: 150px;
                margin: 0;
            }
        }
    } */
}
.dashboard--style1 {
  background: #1f2a44;
}
@media (max-width: 768px) {
  .dashboard {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .dashboard {
    padding: 0.5rem;
  }
}
@media (max-width: 360px) {
  .dashboard {
    padding: 0.3rem;
  }
}
.dashboard__container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
}
@media (min-width: 1025px) {
  .dashboard__container {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .dashboard__container {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .dashboard__container {
    gap: 0.5rem;
  }
}
.dashboard__aside {
  background: #ffffff;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 0 0 300px;
  position: sticky;
  top: 120px;
  height: fit-content;
  z-index: 10;
}
@media (max-width: 1024px) {
  .dashboard__aside {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 1rem;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  .dashboard__aside.active {
    left: 0;
  }
}
@media (max-width: 480px) {
  .dashboard__aside {
    width: 90%;
    max-width: 280px;
    padding: 0.8rem;
  }
}
@media (max-width: 360px) {
  .dashboard__aside {
    width: 95%;
    max-width: 260px;
    padding: 0.6rem;
  }
}
.dashboard__aside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 1025px) {
  .dashboard__aside-header .dashboard__aside-toggle {
    display: none;
  }
}
.dashboard__aside-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a1a3b;
}
@media (max-width: 480px) {
  .dashboard__aside-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 360px) {
  .dashboard__aside-title {
    font-size: 1.2rem;
  }
}
.dashboard__aside-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0a1a3b;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .dashboard__aside-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .dashboard__aside-toggle {
    font-size: 1.3rem;
  }
}
.dashboard__aside-nav {
  list-style: none;
}
.dashboard__aside-nav li {
  margin-bottom: 0.5rem;
}
.dashboard__aside-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 0.35rem;
  color: #0a1a3b;
  text-decoration: none;
  border-radius: 4px;
}
.dashboard__aside-link a {
  margin: 0 0 0 14px;
  min-width: max-content;
  /*             color: #151733; */
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}
.dashboard__aside-link i {
  font-size: 1rem;
  color: #5a6a8a;
}
.dashboard__aside-link:hover, .dashboard__aside-link:focus {
  background-color: #f0f1ff;
}
.dashboard__aside-link:hover i, .dashboard__aside-link:focus i {
  color: #6366f1;
}
.dashboard__aside-link:hover a, .dashboard__aside-link:focus a {
  color: #0a1a3b;
}
.dashboard__aside-link--active {
  background-color: #f0f1ff; /* Cyan background for active item */
  color: #0a1a3b; /* White text for active item */
  font-weight: 500;
}
.dashboard__aside-link--active i {
  color: #0a1a3b;
}
.dashboard__aside-link--active a {
  color: #0a1a3b;
}
.dashboard__aside-link--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #f0f1ff;
  border-radius: 0 2px 2px 0;
}
@media (max-width: 480px) {
  .dashboard__aside-link {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}
@media (max-width: 360px) {
  .dashboard__aside-link {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}
.dashboard__mobile-toggle {
  display: none;
  padding: 0.75rem 1rem;
  background: #0052cc;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
  align-items: center;
  gap: 0.5rem;
}
.dashboard__mobile-toggle i {
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .dashboard__mobile-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .dashboard__mobile-toggle {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 360px) {
  .dashboard__mobile-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
    margin-bottom: 0.5rem;
  }
}
.dashboard__main {
  flex: 1;
  width: 100%;
}
.dashboard__header {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .dashboard__header {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 360px) {
  .dashboard__header {
    margin-bottom: 1rem;
  }
}
.dashboard__title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: #0a1a3b;
  overflow-wrap: break-word;
  padding: 0 0.5rem;
}
.dashboard--style2 .dashboard__title {
  color: #f1f5f9;
}
@media (max-width: 768px) {
  .dashboard__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .dashboard__title {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 360px) {
  .dashboard__title {
    font-size: 1.2rem;
  }
}
.dashboard__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5a6a8a;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  .dashboard__subtitle {
    font-size: 0.9rem;
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .dashboard__subtitle {
    font-size: 0.85rem;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .dashboard__subtitle {
    font-size: 0.8rem;
  }
}
.dashboard__charts {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}
@media (max-width: 480px) {
  .dashboard__charts {
    gap: 1rem;
  }
}
@media (max-width: 360px) {
  .dashboard__charts {
    gap: 0.8rem;
  }
}
.dashboard .chart-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.dashboard .chart-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.dashboard .chart-card:focus-within {
  outline: 2px solid #0052cc;
  outline-offset: 4px;
}
.dashboard .chart-card__style1 {
  background-color: #f8f8f8;
}
.dashboard .chart-card__title {
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
  opacity: 0.8;
  font-size: 1.6rem;
  color: #0891b2;
  margin-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .dashboard .chart-card__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .dashboard .chart-card__title {
    font-size: 1.3rem;
  }
}
@media (max-width: 360px) {
  .dashboard .chart-card__title {
    font-size: 1.2rem;
  }
}
.dashboard .chart-card__description {
  background-color: #eff6ee;
  font-size: 0.9rem;
  color: #414141;
  line-height: 1.5;
  margin: 1rem 0rem;
  padding: 1rem;
}
@media (max-width: 480px) {
  .dashboard .chart-card__description {
    font-size: 0.85rem;
  }
}
@media (max-width: 360px) {
  .dashboard .chart-card__description {
    font-size: 0.8rem;
  }
}
.dashboard .chart-card__insights {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: #0a1a3b;
  margin-bottom: 1rem;
}
.dashboard .chart-card__insights li {
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .dashboard .chart-card__insights {
    font-size: 0.85rem;
    padding-left: 1.2rem;
  }
}
@media (max-width: 360px) {
  .dashboard .chart-card__insights {
    font-size: 0.8rem;
  }
}
.dashboard .chart-card__canvas {
  max-height: 400px;
  width: 100%;
}
@media (max-width: 768px) {
  .dashboard .chart-card__canvas {
    max-height: 300px;
  }
}
@media (max-width: 480px) {
  .dashboard .chart-card__canvas {
    max-height: 250px;
  }
}
@media (max-width: 360px) {
  .dashboard .chart-card__canvas {
    max-height: 200px;
  }
}
@media (max-width: 480px) {
  .dashboard .chart-card {
    padding: 1rem;
  }
}
@media (max-width: 360px) {
  .dashboard .chart-card {
    padding: 0.8rem;
  }
}

/* :root {
    --primary: #1a3c5e;
    --secondary: #e6f4fa;
    --chart-1: #1a3c5e;
    --text-dark: #333;
    --white: #fff;
    --radius: 8px;
  }

 */
/* Center and align hero content */
.hero-content {
  font-family: "IBM Plex Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: #f1f9fa;
  border-radius: 4px;
  margin: 1rem;
  margin-top: 2rem;
}

.dashboard__title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: #0a1a3b;
}

/* Style for the export report button */
.export-report {
  display: inline-flex;
  align-items: center;
  background-color: #0891b2;
  color: #ffffff;
  gap: 0.5rem;
  border-radius: 4px;
  width: auto;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 1.5rem;
  border-width: 2px;
  border-radius: 4px;
  border-style: solid;
  touch-action: manipulation;
}
.export-report.loading {
  cursor: not-allowed;
  opacity: 0.7;
}
.export-report .loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}
.export-report.loading .loader {
  display: inline-block;
}
.export-report.loading .btn-icon,
.export-report.loading .btn-text {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.export-report:hover {
  background-color: rgb(5.8064516129, 105.2419354839, 129.1935483871);
}

.export-report:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.3);
}

@media (max-width: 768px) {
  .export-report {
    padding: 10px 16px; /* Larger touch target for mobile */
    font-size: 0.6rem; /* Slightly smaller but still readable */
    width: 100%; /* Full-width on mobile for easier tapping */
    justify-content: center; /* Center content */
  }
  .export-report svg {
    width: 20px; /* Slightly smaller icon on mobile */
    height: 20px;
  }
}
/* Responsive design */
@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
  .dashboard__title {
    font-size: 1.75rem;
  }
}
.dropdowns {
  position: relative;
  display: inline-block;
}
.dropdowns .dropdown-toggle {
  max-width: 200px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #1a1d2e;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dropdowns .dropdown-toggle:hover {
  border-color: #0052cc;
  color: #0052cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dropdowns .dropdown-toggle i {
  color: #4b536f;
  font-size: 0.7rem;
}
.dropdowns .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 240px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 10;
}
.dropdowns .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdowns .dropdown-menu .dropdown-content {
  padding: 1rem;
}
.dropdowns .dropdown-menu .dropdown-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1d2e;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}
.dropdowns .dropdown-menu .checkbox-container {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.dropdowns .dropdown-menu .checkbox-container::-webkit-scrollbar {
  width: 6px;
}
.dropdowns .dropdown-menu .checkbox-container::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 3px;
}
.dropdowns .dropdown-menu .checkbox-container::-webkit-scrollbar-thumb {
  background: #4b536f;
  border-radius: 3px;
}
.dropdowns .dropdown-menu .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  color: #6b7280;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.dropdowns .dropdown-menu .checkbox-label:hover {
  color: #1a1d2e;
}
.dropdowns .dropdown-menu .checkbox-label input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dropdowns .dropdown-menu .checkbox-label input[type=checkbox]:checked {
  background: #0052cc;
  border-color: #0052cc;
}
.dropdowns .dropdown-menu .checkbox-label input[type=checkbox]:checked:after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dropdowns .dropdown-menu .checkbox-label .checkbox-custom {
  flex: 1;
}
.dropdowns .dropdown-menu .dropdown-close {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #0052cc;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.2s ease;
}
.dropdowns .dropdown-menu .dropdown-close:hover {
  background: #f0f0f0;
  color: #ffffff;
}
@media (max-width: 768px) {
  .dropdowns .dropdown-toggle {
    max-width: 200px;
    margin: 1rem;
  }
  .dropdowns .dropdown-menu {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.6;
  color: $text-dark;
  background: $secondary;
}
 */
.article-page {
  background: #f8f9fa;
}

.article-hero {
  background: #E6F4F6;
}
.article-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
@media (max-width: 768px) {
  .article-hero__container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.article-hero__image-section {
  /*  background: #2d3748; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 768px) {
  .article-hero__image-section {
    order: 1;
    padding: 1.5rem;
    min-height: 300px;
  }
}
.article-hero__image {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .article-hero__image {
    max-height: 250px;
  }
}
.article-hero__content-section {
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
}
@media (max-width: 1024px) {
  .article-hero__content-section {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .article-hero__content-section {
    order: 2;
    padding: 1.5rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
}
.article-hero__content {
  width: 100%;
  max-width: 500px;
}
.article-hero__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  color: #0a1a3b;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .article-hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .article-hero__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 30px;
  }
}
.article-hero__meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .article-hero__meta {
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }
}
.article-hero__author {
  color: #767676;
}
.article-hero__date {
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-hero__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .article-hero__social {
    gap: 0.75rem;
  }
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #5a6a8a;
  border-radius: 50px;
  background: #ffffff;
  color: #0a1a3b;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0a1a3b;
  text-decoration: none;
}
.social-btn:hover {
  transform: translateY(-1px);
  border: 1px solid #0a1a3b;
}
.social-btn i {
  font-size: 1rem;
}
@media (max-width: 480px) {
  .social-btn span {
    display: none;
  }
}
.social-btn--facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}
.social-btn--twitter:hover {
  background: #1da1f2;
  color: #ffffff;
  border-color: #1da1f2;
}
.social-btn--linkedin:hover {
  background: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
}
.social-btn--copy:hover {
  background: #0a1a3b;
  color: #ffffff;
  border-color: #0a1a3b;
}

.article-content {
  background: #ffffff;
  display: flex;
}
.article-content__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
@media (max-width: 768px) {
  .article-content__container {
    padding: 2rem 1.5rem;
  }
}
.article-content__aside {
  max-width: 450px;
  /* border: 1px solid #d2d2d2; */
  border-radius: 4px;
  background-color: #f9f2ef;
  margin: 2rem;
  flex: 0 0 350px;
  position: sticky;
  top: 120px;
  height: fit-content;
  z-index: 10;
  font-weight: 300;
  padding: 1px 2px 2px 12px;
  /*  li{
   letter-spacing: 0.2px;
    font-weight: 400;
  } */
}
.article-content__aside__title {
  font-weight: 300;
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 0.3px;
  color: #0a1a3b;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d2d2d2;
}
.article-content__aside .toc-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.article-content__aside .toc-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #0a1a3b;
}
.article-content__aside .toc-list li a {
  color: #0a1a3b;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.article-content__aside .toc-list li a:hover, .article-content__aside .toc-list li a:focus {
  color: #0891b2;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .article-content__aside .toc-list {
    padding-left: 1rem;
  }
  .article-content__aside .toc-list li {
    font-size: 0.9rem;
  }
}
@media (max-width: 1024px) {
  .article-content__aside {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 1rem;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  .article-content__aside.active {
    left: 0;
  }
}
@media (max-width: 480px) {
  .article-content__aside {
    width: 90%;
    max-width: 280px;
    padding: 0.8rem;
  }
}
@media (max-width: 360px) {
  .article-content__aside {
    width: 95%;
    max-width: 260px;
    padding: 0.6rem;
  }
}

.article-sponsor {
  color: #5a6a8a;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.article-sponsor__breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 24px;
}
.article-sponsor__breadcrumb .breadcrumb-link {
  color: #5a6a8a;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.article-sponsor__breadcrumb .breadcrumb-link:hover {
  color: #0891b2;
}
.article-sponsor__breadcrumb .breadcrumb-separator {
  margin: 0 0.5rem;
  color: #5a6a8a;
}
.article-sponsor__breadcrumb .breadcrumb-current {
  color: #0891b2;
  font-weight: 500;
}
.article-sponsor .sponsor-link {
  color: #0052cc;
  text-decoration: underline;
  font-weight: 500;
}
.article-sponsor .sponsor-link:hover {
  color: #0891b2;
}

.article-body__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1a3b;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .article-body__title {
    font-size: 1.25rem;
  }
}
.article-body__content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0a1a3b;
}
.article-body__content p {
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.article-body__content p:first-child {
  font-size: 16px;
  color: #5a6a8a;
  font-weight: 300;
}
.article-body__content h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  color: #0a1a3b;
  margin: 2.5rem 0 1.5rem;
}
.article-body__content h2:first-child {
  margin-top: 0;
}
.article-body__content h3 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.3px;
  font-weight: 300;
  color: #0a1a3b;
  margin: 2rem 0 1rem;
}
.article-body__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1a3b;
  margin: 1.5rem 0 0.75rem;
}
.article-body__content ul,
.article-body__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body__content ul li,
.article-body__content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.article-body__content blockquote {
  border-left: 4px solid #0052cc;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0, 82, 204, 0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #5a6a8a;
  font-size: 1.05rem;
}
.article-body__content a {
  color: #0052cc;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.article-body__content a:hover, .article-body__content a:focus {
  color: #0891b2;
  border-bottom-color: #0891b2;
}
.article-body__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.article-body__content code {
  background: rgba(0, 82, 204, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Monaco", "Consolas", "SF Mono", monospace;
  font-size: 0.9em;
  color: #0052cc;
}
.article-body__content pre {
  background: #0a1a3b;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: "Monaco", "Consolas", "SF Mono", monospace;
}
.article-body__content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.article-body__content hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 2.5rem 0;
}
.article-body__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.article-body__content table th,
.article-body__content table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.article-body__content table th {
  font-weight: 600;
  background: rgba(0, 82, 204, 0.05);
}

@media (max-width: 768px) {
  .article-hero__container {
    min-height: auto;
  }
  .article-hero__image-section {
    min-height: 250px;
  }
  .social-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .article-hero__content-section {
    padding: 1rem;
  }
  .article-hero__title {
    font-size: 1.5rem;
  }
  .article-content__container {
    padding: 1.5rem 1rem;
  }
  .social-btn span {
    display: none;
  }
}
.scroll-indicator {
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #e2e8f0;
  z-index: 1000;
}

.scroll-indicator__bar {
  height: 100%;
  width: 0;
  background: #0891b2;
  transition: width 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

.jobs-threatened-section {
  padding: 1.5rem;
  background: #fefefe;
  border-radius: 8px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.jobs-threatened-section .jobs-content {
  max-width: 800px;
  margin: 0 auto;
}
.jobs-threatened-section .table-wrapper {
  overflow-x: auto;
  border-radius: 6px;
  background: #fefefe;
  border: 1px solid rgba(226, 232, 240, 0.5);
}
.jobs-threatened-section .threatened-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.jobs-threatened-section .threatened-table thead tr th {
  background: linear-gradient(to bottom, #f9fafb, #fefefe);
  color: #1a1d2e;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid #dc2626;
  white-space: nowrap;
}
.jobs-threatened-section .threatened-table thead tr th:first-child {
  border-top-left-radius: 6px;
}
.jobs-threatened-section .threatened-table thead tr th:last-child {
  border-top-right-radius: 6px;
}
.jobs-threatened-section .threatened-table tbody tr {
  transition: background 0.2s ease;
}
.jobs-threatened-section .threatened-table tbody tr:hover {
  background: rgba(220, 38, 38, 0.03);
}
.jobs-threatened-section .threatened-table tbody tr:nth-child(even) {
  background: rgba(226, 232, 240, 0.2);
}
.jobs-threatened-section .threatened-table tbody tr td {
  padding: 0.75rem 1rem;
  color: #6b7280;
  border-bottom: 1px dashed #e2e8f0;
}
.jobs-threatened-section .threatened-table tbody tr td:nth-child(1) {
  font-weight: 500;
  color: #1a1d2e;
  border-left: 2px solid #dc2626;
}
.jobs-threatened-section .threatened-table tbody tr td:nth-child(2) {
  color: #4b536f;
}
.jobs-threatened-section .threatened-table tbody tr td:nth-child(3) {
  font-weight: 500;
  color: #dc2626;
  line-height: 16px;
  font-family: monospace;
}
.jobs-threatened-section .threatened-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .jobs-threatened-section {
    padding: 1rem;
  }
  .jobs-threatened-section .threatened-table {
    font-size: 0.85rem;
  }
  .jobs-threatened-section .threatened-table th, .jobs-threatened-section .threatened-table td {
    padding: 0.5rem 0.75rem;
  }
}

.defaillance {
  padding: 4rem 1rem;
  min-height: 100vh;
  background: #ffffff;
}
.defaillance__container {
  max-width: 1400px;
  margin: 0 auto;
}
.defaillance__header {
  text-align: center;
  margin-bottom: 3rem;
}
.defaillance__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1a3b;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .defaillance__title {
    font-size: 2rem;
  }
}
.defaillance__intro {
  font-size: 1rem;
  color: #5a6a8a;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .defaillance__intro {
    font-size: 0.95rem;
  }
}
.defaillance__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .defaillance__main {
    grid-template-columns: 1fr;
  }
}
.defaillance__map-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}
.defaillance__map {
  width: 100%;
  height: 600px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .defaillance__map {
    height: 400px;
  }
}
.defaillance__stats {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.defaillance__stats-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0a1a3b;
  margin-bottom: 1rem;
}
.defaillance__stats-description {
  font-size: 0.95rem;
  color: #5a6a8a;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.defaillance__stats-content {
  min-height: 200px;
}
.defaillance__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.defaillance__table th, .defaillance__table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.defaillance__table th {
  font-weight: 600;
  color: #0a1a3b;
  background: #f8f9fa;
}
.defaillance__table td {
  color: #0a1a3b;
}
.defaillance__table tr:hover {
  background: #f8f9fa;
}
.defaillance__table tr:hover td {
  color: #0052cc;
}
.defaillance__table tr.selected {
  background: rgba(8, 145, 178, 0.1);
}
.defaillance__table tr.selected td {
  color: #0891b2;
}
@media (max-width: 768px) {
  .defaillance {
    padding: 2rem 1rem;
  }
  .defaillance__stats {
    padding: 1.5rem;
  }
  .defaillance__table {
    font-size: 0.85rem;
  }
  .defaillance__table th, .defaillance__table td {
    padding: 0.5rem;
  }
}

/* Base variables */
/* Base styles - Mobile first */
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Banner */
.banner {
  background-size: cover;
  background-position: -40px 650px;
  padding: 2rem 0;
  margin-bottom: 2rem;
}
.banner .bannercontainer {
  text-align: center;
  color: white;
}
.banner .bannercontainer header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.banner .bannercontainer header .back-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.banner .bannercontainer header .back-link:hover {
  color: #2989d8;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.banner .bannercontainer header .back-link:focus {
  outline: 2px solid #2989d8;
  outline-offset: 2px;
}

/* Feedback Message */
.feedback-message {
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}
.feedback-message.feedback-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.feedback-message.feedback-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Form Styles */
#article-form {
  max-width: 800px;
  margin: 0 auto;
  /* Drop Zone */
  /* Image Preview */
  /* Submit Button */
}
#article-form .form-group {
  margin-bottom: 1.5rem;
}
#article-form .form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
#article-form .form-group input[type=text],
#article-form .form-group select,
#article-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
#article-form .form-group input[type=text]:focus,
#article-form .form-group select:focus,
#article-form .form-group textarea:focus {
  border-color: #2989d8;
  outline: none;
  box-shadow: 0 0 0 2px rgba(41, 137, 216, 0.2);
}
#article-form .form-group textarea {
  min-height: 200px;
  resize: vertical;
}
#article-form .form-group .help-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
  display: block;
}
#article-form .drop-zone {
  border: 2px dashed #e5e5e5;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
#article-form .drop-zone.drop-zone--over {
  border-color: #2989d8;
  background-color: #f0f8ff;
}
#article-form .drop-zone .drop-zone__prompt {
  font-size: 0.95rem;
  color: #333;
}
#article-form .drop-zone .drop-zone__input {
  display: none;
}
#article-form .image-preview {
  margin-top: 1rem;
}
#article-form .image-preview .cropper-container {
  margin-top: 1rem;
}
#article-form .image-preview .cropper-container img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
#article-form .image-preview .cropper-container .cropper-tools {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
#article-form .image-preview .cropper-container .cropper-tools .crop-btn,
#article-form .image-preview .cropper-container .cropper-tools .reset-btn,
#article-form .image-preview .cropper-container .cropper-tools .recrop-btn {
  padding: 0.5rem 1rem;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}
#article-form .image-preview .cropper-container .cropper-tools .crop-btn:hover,
#article-form .image-preview .cropper-container .cropper-tools .reset-btn:hover,
#article-form .image-preview .cropper-container .cropper-tools .recrop-btn:hover {
  opacity: 0.9;
}
#article-form .image-preview .cropper-container .cropper-tools .crop-btn:focus,
#article-form .image-preview .cropper-container .cropper-tools .reset-btn:focus,
#article-form .image-preview .cropper-container .cropper-tools .recrop-btn:focus {
  outline: 2px solid #2989d8;
  outline-offset: 2px;
}
#article-form .image-preview .cropper-container .cropper-tools .crop-btn {
  background: #2989d8;
}
#article-form .image-preview .cropper-container .cropper-tools .reset-btn {
  background: #6c757d;
}
#article-form .image-preview .cropper-container .cropper-tools .recrop-btn {
  background: #6c757d;
}
#article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options span {
  font-size: 0.95rem;
  color: #333;
}
#article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options .ratio-btn {
  padding: 0.3rem 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
#article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options .ratio-btn.active {
  background: #2989d8;
  color: white;
  border-color: #2989d8;
}
#article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options .ratio-btn:hover {
  background: #e9ecef;
}
#article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options .ratio-btn:focus {
  outline: 2px solid #2989d8;
  outline-offset: 2px;
}
#article-form .image-preview .cropper-container .cropped-preview {
  margin-top: 1rem;
  text-align: center;
}
#article-form .image-preview .cropper-container .cropped-preview img {
  max-width: 100%;
  border-radius: 4px;
}
#article-form .submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #2989d8;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 200px;
  margin: 1rem auto;
}
#article-form .submit-button:hover {
  background: #1e5799;
}
#article-form .submit-button:focus {
  outline: 2px solid #2989d8;
  outline-offset: 2px;
}
#article-form .submit-button:disabled {
  background: #6c757d;
  cursor: not-allowed;
}
#article-form .submit-button .loading-spinner {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Desktop styles */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  .banner {
    padding: 3rem 0;
    margin-bottom: 3rem;
  }
  .banner .container header h1 {
    font-size: 2.2rem;
  }
  .banner .container header .back-link {
    font-size: 1.1rem;
  }
  .feedback-message {
    padding: 1rem;
    font-size: 1rem;
  }
  #article-form .form-group {
    margin-bottom: 2rem;
  }
  #article-form .form-group label {
    font-size: 1.1rem;
  }
  #article-form .form-group input[type=text],
  #article-form .form-group select,
  #article-form .form-group textarea {
    padding: 1rem;
    font-size: 1.1rem;
  }
  #article-form .form-group .help-text {
    font-size: 0.9rem;
  }
  #article-form .drop-zone {
    padding: 2rem;
  }
  #article-form .drop-zone .drop-zone__prompt {
    font-size: 1rem;
  }
  #article-form .image-preview .cropper-container .cropper-tools .crop-btn,
  #article-form .image-preview .cropper-container .cropper-tools .reset-btn,
  #article-form .image-preview .cropper-container .cropper-tools .recrop-btn {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  #article-form .image-preview .cropper-container .cropper-tools .aspect-ratio-options .ratio-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
  #article-form .submit-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    max-width: 250px;
  }
}
.image-preview {
  margin-top: 10px;
}
.image-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Large desktop styles */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  .banner .container header h1 {
    font-size: 2.5rem;
  }
}
.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  /*  background: $background-light; */
}
@media (max-width: 768px) {
  .blog-container {
    padding: 2rem 0.75rem;
  }
}

.header {
  background-image: url("../imgs/bp.webp");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
}
.header .overlay {
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
}
.header .badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-size: 54px;
  line-height: 60px;
  color: #1f2937;
  margin: 0.5rem 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.header .subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: #1f2937;
  line-height: 1.5;
  max-width: 600px;
}

.main-layout {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
    gap: 2rem;
  }
}

.main-content {
  width: 70%;
}
@media (max-width: 768px) {
  .main-content {
    width: 100%;
  }
}

.article-card {
  background-color: #f2f6ec;
  border-radius: 4px;
  padding: 2rem;
  overflow: hidden;
}
.article-card.featured {
  background-color: #f6ecec;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 768px) {
  .article-card.featured {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 580px) {
  .article-card.featured {
    gap: 1rem;
  }
}
.article-card.featured .image-wrapper {
  flex: 0 0 40%;
  max-width: 400px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}
.article-card.featured .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card.featured .content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.article-card.featured .article-title {
  /* font-size: clamp(1.5rem, 3vw, 2.25rem); */
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.article-card.featured .excerpt {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.article-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.article-card a:hover .article-title, .article-card a:focus .article-title {
  color: #0891b2;
}
.article-card .cta {
  font-weight: 200;
  color: black;
  margin-top: 1rem;
}
.article-card .cta:hover, .article-card .cta:focus {
  text-decoration: underline;
  transition: all 0.2s ease;
}
.article-card .image-wrapper {
  overflow: hidden;
  border-radius: 0px;
}
.article-card .image-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card a:hover .article-card .image-wrapper img, .article-card a:focus .article-card .image-wrapper img {
  transform: scale(1.05);
}
.article-card .category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1rem 0 0.5rem;
  display: inline-block;
}
.article-card .article-title {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.article-card .nd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.article-card .meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-style: italic;
}
.article-card .meta .author,
.article-card .meta .date {
  font-size: 0.8rem;
  font-weight: 400;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-card .excerpt {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #1f2937;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.sidebar {
  width: 30%;
  min-width: 250px;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    min-width: unset;
  }
}
.sidebar .sidebar-list {
  counter-reset: list;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #414141;
}
.sidebar .sidebar-list li {
  letter-spacing: 0.2px;
  font-weight: 400;
}
.sidebar .sidebar-nav {
  margin-bottom: 2rem;
  padding: 32px 32px 12px 32px;
  background-color: #f5f5f5;
}
.sidebar .sidebar-nav .sidebar-title {
  font-weight: 300;
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 0.3px;
  color: #1f2937;
  margin-bottom: 1rem;
}
.sidebar .sidebar-nav a {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0891b2;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}
.sidebar .sidebar-nav a.active {
  color: #414141;
  font-weight: 700;
}
.sidebar .sidebar-nav a:hover, .sidebar .sidebar-nav a:focus {
  color: rgb(9.0967741935, 164.8790322581, 202.4032258065);
}
.sidebar .highlighted-links .highlighted-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0891b2;
  text-decoration: underline;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}
.sidebar .highlighted-links .highlighted-link:hover, .sidebar .highlighted-links .highlighted-link:focus {
  color: rgb(9.0967741935, 164.8790322581, 202.4032258065);
}

.no-articles {
  text-align: center;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  padding: 2rem;
}

.fade-in {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.image-wrapper img {
  animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
.trends-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem;
}
.trends-container .trend-card {
  background-color: #ffffff;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 500px;
  transition: all 0.2s ease-in-out;
}
.trends-container .trend-card:first-child {
  background-color: #f9f2ef;
}
.trends-container .trend-card:last-child {
  background-color: #EFF6EE;
}
.trends-container .trend-card .trend-header {
  margin-bottom: 1rem;
}
.trends-container .trend-card .trend-header h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #111827;
}
.trends-container .trend-card .trend-header h2 span {
  font-weight: normal;
  color: #6b7280;
  margin-left: 0.25rem;
}
.trends-container .trend-card .trend-header p {
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
  color: #6b7280;
}
.trends-container .trend-card .trend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trends-container .trend-card .trend-list li {
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.trends-container .trend-card .trend-list li:last-child {
  border-bottom: none;
}
.trends-container .trend-card .trend-list li .icon {
  width: 45px;
  height: 45px;
  background-color: #fbf2f4;
  color: rgb(246.2047244094, 169.6858267717, 40.3952755906);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 0.75rem;
  font-size: 1.3rem;
}
.trends-container .trend-card .trend-list li .icon.green {
  color: rgb(9.0967741935, 164.8790322581, 202.4032258065);
  background-color: #E6F4F6;
}
.trends-container .trend-card .trend-list li .label {
  flex: 1;
  font-size: 0.95rem;
  color: #111827;
}
.trends-container .trend-card .trend-list li .percentage {
  font-weight: 600;
  font-size: 0.9rem;
}
.trends-container .trend-card .trend-list li .percentage.red {
  color: rgb(248.0118110236, 187.2145669291, 84.4881889764);
}
.trends-container .trend-card .trend-list li .percentage.green {
  color: #0891b2;
}

.errorpage {
  background: #f8fafc;
  color: #111827;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 1rem;
}
.container h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #0891b2;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .container h1 {
    font-size: 3rem;
  }
}
.container p {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .container p {
    font-size: 1rem;
  }
}
.container .buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.container .buttons a {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: #0891b2;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.container .buttons a:hover, .container .buttons a:focus {
  background: rgb(5.8064516129, 105.2419354839, 129.1935483871);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.container .buttons a.secondary {
  background: #1e40af;
}
.container .buttons a.secondary:hover, .container .buttons a.secondary:focus {
  background: rgb(22.5365853659, 48.0780487805, 131.4634146341);
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }
}
.signup-container {
  font-family: "IBM Plex Sans", sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}
.signup-container .signup-box {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.signup-container .signup-box .signup-header {
  margin-bottom: 2rem;
}
.signup-container .signup-box .signup-header a {
  display: inline-block;
  margin-bottom: 1rem;
}
.signup-container .signup-box .signup-header a img.signup-logo {
  max-width: 60px;
  height: auto;
  transition: all 0.2s ease-in-out;
}
.signup-container .signup-box .signup-header h1 {
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 1.6rem;
  color: #5b5b5b;
}
.signup-container .signup-box .message-container {
  color: #111827;
}
.signup-container .signup-box .message-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.signup-container .signup-box .message-container p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.signup-container .signup-box .message-container p a {
  color: #0891b2;
  text-decoration: none;
}
.signup-container .signup-box .message-container p a:hover {
  text-decoration: underline;
}
.signup-container .signup-box .signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.signup-container .signup-box .signup-form .form-flex-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.signup-container .signup-box .signup-form .form-flex-container .form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.signup-container .signup-box .signup-form .form-flex-container .form-section .form-group {
  text-align: left;
}
.signup-container .signup-box .signup-form .form-flex-container .form-section .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  display: block;
  margin-bottom: 0.25rem;
}
.signup-container .signup-box .signup-form .form-flex-container .form-section .form-group input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}
.signup-container .signup-box .signup-form .form-flex-container .form-section .form-group input:focus {
  border-color: #0891b2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(8, 145, 178, 0.2);
}
.signup-container .signup-box .signup-form .form-flex-container .form-section .form-group input::placeholder {
  color: #6b7280;
}
.signup-container .signup-box .signup-form .form-group.checkbox-group {
  text-align: left;
  font-size: 0.9rem;
}
.signup-container .signup-box .signup-form .form-group.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #111827;
}
.signup-container .signup-box .signup-form .form-group.checkbox-group label input {
  accent-color: #0891b2;
  width: 1rem;
  height: 1rem;
}
.signup-container .signup-box .signup-form .form-group.checkbox-group label a.link {
  color: #0891b2;
  text-decoration: none;
}
.signup-container .signup-box .signup-form .form-group.checkbox-group label a.link:hover {
  text-decoration: underline;
}
.signup-container .signup-box .signup-form .signup-btn {
  background: #0891b2;
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.signup-container .signup-box .signup-form .signup-btn:hover, .signup-container .signup-box .signup-form .signup-btn:focus {
  background: rgb(5.8064516129, 105.2419354839, 129.1935483871);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.signup-container .signup-box .signup-footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.signup-container .signup-box .signup-footer p {
  margin: 0;
}
.signup-container .signup-box .signup-footer p a.login-link {
  color: #0891b2;
  text-decoration: none;
}
.signup-container .signup-box .signup-footer p a.login-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .signup-container {
    padding: 1rem;
  }
  .signup-container .signup-box {
    padding: 1.5rem;
  }
  .signup-container .signup-box .signup-header h1 {
    font-size: 1.5rem;
  }
  .signup-container .signup-box .signup-header img.signup-logo {
    max-width: 50px;
  }
  .signup-container .signup-box .message-container h2 {
    font-size: 1.2rem;
  }
  .signup-container .signup-box .message-container p {
    font-size: 0.9rem;
  }
  .signup-container .signup-box .signup-form .form-flex-container {
    flex-direction: column;
    gap: 1rem;
  }
  .signup-container .signup-box .signup-form .form-flex-container .form-section .form-group label {
    font-size: 0.85rem;
  }
  .signup-container .signup-box .signup-form .form-flex-container .form-section .form-group input {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  .signup-container .signup-box .signup-form .form-group.checkbox-group label {
    font-size: 0.85rem;
  }
  .signup-container .signup-box .signup-form .signup-btn {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  .signup-container .signup-box .signup-footer {
    font-size: 0.85rem;
  }
}
/* Base variables */
/* Base styles - Mobile first */
.stats-page {
  background-color: #ffffff;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.5;
  /* Alphabetical Navigation */
  /* Letter Sections */
  /* Smooth scrolling */
}
.stats-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.stats-page__header {
  text-align: center;
  padding: 2rem 0 1.5rem;
  background-color: rgb(19.5512195122, 41.7092682927, 114.0487804878);
  margin: 0 -1rem 2rem;
  color: white;
}
.stats-page__header .stats-page__title {
  font-size: 34px;
  line-height: 60px;
  font-weight: 300;
  margin-bottom: 1.25rem;
  margin: 0;
}
.stats-page__alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.stats-page__alphabet-nav .alphabet-letter {
  font-size: 1rem;
  font-weight: 500;
  color: #2989d8;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.stats-page__alphabet-nav .alphabet-letter:hover {
  background-color: #f0f8ff;
  color: #1e5799;
}
.stats-page__alphabet-nav .alphabet-letter:focus {
  outline: 2px solid #2989d8;
  outline-offset: 2px;
}
.stats-page .letter-section {
  margin-bottom: 2rem;
}
.stats-page .letter-section .letter-header {
  margin-bottom: 1.5rem;
}
.stats-page .letter-section .letter-header .letter-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #666;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e5e5;
  display: inline-block;
}
.stats-page .letter-section .letter-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.stats-page .letter-section .letter-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.8rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stats-page .letter-section .letter-content .region-group,
.stats-page .letter-section .letter-content .department-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stats-page .letter-section .letter-content .region-group .location-item,
.stats-page .letter-section .letter-content .department-group .location-item {
  flex: 0 1 auto;
  min-width: 100%; /* Full width on mobile */
}
.stats-page .letter-section .letter-content .region-group .location-item a,
.stats-page .letter-section .letter-content .department-group .location-item a {
  color: #2989d8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s ease;
}
.stats-page .letter-section .letter-content .region-group .location-item a:hover,
.stats-page .letter-section .letter-content .department-group .location-item a:hover {
  color: #1e5799;
  text-decoration: underline;
}
.stats-page .letter-section .letter-content .region-group .location-item a:focus,
.stats-page .letter-section .letter-content .department-group .location-item a:focus {
  outline: 2px solid #2989d8;
  outline-offset: 2px;
}
.stats-page html {
  scroll-behavior: smooth;
}

/* Desktop styles */
@media (min-width: 768px) {
  .stats-page {
    font-size: 18px;
  }
  .stats-page__container {
    padding: 0 2rem;
  }
  .stats-page__header {
    padding: 3rem 0 2rem;
    margin: 0 -2rem 3rem;
  }
  .stats-page__header .stats-page__title {
    font-size: 34px;
  }
  .stats-page__alphabet-nav {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  .stats-page__alphabet-nav .alphabet-letter {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }
  .stats-page .letter-section {
    margin-bottom: 3rem;
  }
  .stats-page .letter-section .letter-header .letter-title {
    font-size: 3rem;
  }
  .stats-page .letter-section .letter-content {
    grid-template-columns: 1fr; /* Single column for regions and departments */
    gap: 2rem;
  }
  .stats-page .letter-section .letter-content h3 {
    font-size: 1.1rem;
  }
  .stats-page .letter-section .letter-content .region-group,
  .stats-page .letter-section .letter-content .department-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
  }
  .stats-page .letter-section .letter-content .region-group .location-item,
  .stats-page .letter-section .letter-content .department-group .location-item {
    flex: 0 1 calc(33.333% - 0.666rem); /* 3 items per row, accounting for gap */
    min-width: 200px;
    margin-bottom: 0;
  }
  .stats-page .letter-section .letter-content .region-group .location-item a,
  .stats-page .letter-section .letter-content .department-group .location-item a {
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
}
/* Large desktop styles */
@media (min-width: 1200px) {
  .stats-page__container {
    max-width: 1400px;
  }
  .stats-page__header .stats-page__title {
    font-size: 34px;
  }
  .stats-page .letter-section .letter-content .region-group .location-item,
  .stats-page .letter-section .letter-content .department-group .location-item {
    flex: 0 1 calc(25% - 0.75rem); /* 4 items per row, accounting for gap */
    min-width: 250px;
  }
}
.premium-cta {
  background: #fff;
  padding: 8rem 2rem;
  overflow: hidden;
}
.premium-cta .premium-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
  animation: slideIn 1s ease forwards;
  opacity: 0;
}
.premium-cta .premium-image {
  flex: 1 1 400px;
  /*  img:hover {
     transform: scale(1.05);
   } */
}
.premium-cta .premium-image img {
  max-width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
  -webkit-filter: grayscale(80%); /* Safari 6.0 - 9.0 */
  filter: grayscale(50%);
}
.premium-cta .premium-text {
  flex: 1 1 500px;
}
.premium-cta .premium-text h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.3px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #5b5b5b;
}
.premium-cta .premium-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2rem;
  margin-bottom: 1rem;
  color: #5b5b5b;
}
.premium-cta .premium-text ul {
  list-style: none;
  padding-left: 0;
}
.premium-cta .premium-text ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.premium-cta .premium-text .cta-button {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1.5rem;
  background: #1e40af;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}
.premium-cta .premium-text .cta-button:hover {
  background: #0891b2;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .premium-cta .premium-container {
    flex-direction: column;
    text-align: center;
  }
  .premium-cta .premium-text h2 {
    font-size: 1.5rem;
  }
}

.tableau {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.tableau-header {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tableau-header .tableau-title {
  margin: 0;
  color: #2c3e50;
  font-size: 24px;
}
.tableau-header .filter-panel {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tableau-header .filter-panel .filter-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tableau-header .filter-panel .filter-group label {
  font-weight: bold;
  font-size: 14px;
}
.tableau-header .filter-panel .filter-group select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.tableau-header .filter-panel .filter-group select:focus {
  outline: 2px solid #0891b2;
  outline-offset: 2px;
}
.tableau-header .filter-panel .apply-filters {
  padding: 8px 15px;
  background-color: #0891b2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tableau-header .filter-panel .apply-filters:hover {
  background-color: rgb(5.8064516129, 105.2419354839, 129.1935483871);
}
.tableau-header .filter-panel .apply-filters:focus {
  outline: 2px solid rgb(5.8064516129, 105.2419354839, 129.1935483871);
  outline-offset: 2px;
}

.tableau-content .business-health, .tableau-content .deeper-dive {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.tableau-content .business-health--style1, .tableau-content .deeper-dive--style1 {
  position: relative;
  background-image: url("https://images.pexels.com/photos/224924/pexels-photo-224924.jpeg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
}
.tableau-content .business-health--style1::before, .tableau-content .deeper-dive--style1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  pointer-events: none;
}
.tableau-content .business-health--style1 *, .tableau-content .deeper-dive--style1 * {
  position: relative;
  z-index: 1;
}
.tableau-content .business-health--style1 .section-title, .tableau-content .deeper-dive--style1 .section-title {
  color: #fff;
  padding: 1rem;
  margin: 0 auto;
  text-align: center;
}
.tableau-content .business-health--style1 .dive-summary, .tableau-content .deeper-dive--style1 .dive-summary {
  margin: 0 auto;
  text-align: center;
  color: #f8f9fa;
}
.tableau-content .business-health .section-title, .tableau-content .deeper-dive .section-title {
  color: #2c3e50;
  margin-top: 0;
}
.tableau-content .business-health .health-summary, .tableau-content .business-health .dive-summary, .tableau-content .deeper-dive .health-summary, .tableau-content .deeper-dive .dive-summary {
  color: #7f8c8d;
  margin-bottom: 20px;
}
.tableau-content .business-health .charts-grid, .tableau-content .deeper-dive .charts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .tableau-content .business-health .charts-grid, .tableau-content .deeper-dive .charts-grid {
    grid-template-columns: 1fr;
  }
}
.tableau-content .business-health .charts-grid-one, .tableau-content .deeper-dive .charts-grid-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .tableau-content .business-health .charts-grid-one, .tableau-content .deeper-dive .charts-grid-one {
    grid-template-columns: 1fr;
  }
}
.tableau-content .business-health .chart-card .chart-title, .tableau-content .deeper-dive .chart-card .chart-title {
  margin-top: 0;
  color: #2c3e50;
}
.tableau-content .business-health .chart-card .chart-placeholder, .tableau-content .deeper-dive .chart-card .chart-placeholder {
  max-height: 400px;
  width: 100%;
  background-color: #EFF6EE;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.tableau-content .business-health .chart-card.revenue-quarter .revenue-value, .tableau-content .deeper-dive .chart-card.revenue-quarter .revenue-value {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
  color: #10b981;
}
.tableau-content .business-health .chart-card.revenue-quarter .revenue-value .amount, .tableau-content .deeper-dive .chart-card.revenue-quarter .revenue-value .amount {
  font-size: 28px;
}
.tableau-content .business-health .chart-card.revenue-quarter .revenue-value .currency, .tableau-content .deeper-dive .chart-card.revenue-quarter .revenue-value .currency {
  font-size: 16px;
  color: #7f8c8d;
}
.tableau-content .business-health .chart-card.revenue-quarter .revenue-change, .tableau-content .deeper-dive .chart-card.revenue-quarter .revenue-change {
  color: #e74c3c;
  font-size: 14px;
}
.tableau-content .business-health .chart-card.revenue-quarter .goal-bar, .tableau-content .deeper-dive .chart-card.revenue-quarter .goal-bar {
  background-color: #e8f4f1;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}
.tableau-content .business-health .chart-card.revenue-quarter .goal-bar .goal-label, .tableau-content .deeper-dive .chart-card.revenue-quarter .goal-bar .goal-label {
  margin: 5px 0;
  font-size: 14px;
}
.tableau-content .business-health .chart-card.revenue-quarter .goal-bar .progress-bar, .tableau-content .deeper-dive .chart-card.revenue-quarter .goal-bar .progress-bar {
  height: 20px;
  background-color: #10b981;
  border-radius: 4px;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .tableau-header {
    flex-direction: column;
    text-align: center;
  }
  .filter-panel {
    justify-content: center;
  }
}

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