@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Charter";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Charter/charter_regular.woff2") format("woff2");
}
@font-face {
  font-family: "Charter";
  font-style: italic;
  font-weight: normal;
  src: url("../fonts/Charter/charter_italic.woff2") format("woff2");
}
@font-face {
  font-family: "Charter";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Charter/charter_bold.woff2") format("woff2");
}
@font-face {
  font-family: "Charter";
  font-style: italic;
  font-weight: bold;
  src: url("../fonts/Charter/charter_bold_italic.woff2") format("woff2");
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, p, a, code, pre, ol, ul, li {
  color: #353535;
  line-height: 1.6;
  font-weight: 300;
  font-size: 18px;
  font-family: "Poppins", serif;
}

a {
  text-underline-offset: 1px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
a:hover {
  color: inherit;
}

b {
  font-weight: 600;
}

em {
  font-style: italic;
}

sub {
  font-weight: inherit;
  font-size: 0.65em;
  position: relative;
  top: 0.3em;
}

sup {
  font-weight: inherit;
  font-size: 0.65em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
hr.hard {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
hr.soft {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

video {
  width: 100%;
  margin: 0 auto;
  display: block;
}

svg {
  width: 100%;
}

.container {
  padding-right: calc(6vw - (100vw - 100%));
  padding-left: 6vw;
  flex: 1;
}

::-moz-selection {
  color: white;
  background: #353535;
}

::selection {
  color: white;
  background: #353535;
}

@media screen and (max-width: 769px) {
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 15px;
  }
  h1 {
    font-size: 24px;
    line-height: 1.2;
    padding: 1vh 0;
    font-weight: 600;
    margin: 0.6rem 0 0.4rem;
  }
  h1.title {
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 26px;
  }
  h2 {
    line-height: 1.2;
    padding: 1vh 0;
    font-weight: 600;
    font-size: 18px;
    margin: 0.5rem 0 0.3rem;
  }
  h3 {
    font-weight: 600;
    line-height: 1.2;
    padding: 1vh 0;
    font-size: 17px;
  }
  
  /* Add spacing for containers and content */
  .container.blog {
    padding: 0.6rem 0.8rem;
  }
  
  .blog-title {
    padding: 1rem 0.8rem;
  }
  
  .text {
    margin: 0.5rem 0;
    line-height: 1.3;
  }
  
  .box {
    margin: 0.6rem 0;
    padding: 0.8rem;
  }
  
  .columns-3, .columns-4 {
    gap: 0.6rem;
  }
  
  .caption {
    margin: 0.4rem 0;
  }
  
  .video-box {
    margin: 0.6rem 0;
  }
  
  .table-wrapper {
    margin: 0.6rem 0;
    overflow-x: auto;
  }
  
  .custom-box {
    padding: 0.8rem;
    margin: 0.6rem 0;
  }
  
  /* Improve navigation spacing */
  .navbar-links {
    padding: 80px 0.8rem 0.8rem;
    gap: 0.5rem;
  }
  
  .dropdown-content {
    padding-left: 0.8rem;
  }
  
  .dropdown-content a {
    padding: 4px 16px;
  }
  
  .columns-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .columns-3 .button.summary-content {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .container {
    padding-right: calc(8.5vw - (100vw - 100%));
    padding-left: 8.5vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
    line-height: 1.2;
    padding: 2vh 0;
    font-weight: 700;
  }
  h1.title {
    padding: 0 0 1vh;
    font-weight: 500;
    font-size: 26px;
  }
  h2 {
    line-height: 1.2;
    padding: 2vh 0;
    font-weight: 700;
    font-size: 18px;
  }
  h3 {
    font-weight: 700;
    line-height: 1.2;
    padding: 2vh 0;
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    padding-right: calc(12vw - (100vw - 100%));
    padding-left: 12vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
    line-height: 1.2;
    padding: 1vh 0;
    font-weight: 700;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 26px;
  }
  h2 {
    padding: 1vh 0;
    font-size: 18px;
  }
  h3 {
    padding: 1vh 0;
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding-right: calc(15vw - (100vw - 100%));
    padding-left: 15vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 18px;
  }
  h1 {
    font-size: 26px;
    line-height: 1.2;
    padding: 1vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 30px;
  }
  h2 {
    padding: 1vh 0;
    font-size: 20px;
  }
  h3 {
    padding: 1vh 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    padding-right: calc(18vw - (100vw - 100%));
    padding-left: 18vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 20px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.2;
    padding: 1.75vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 36px;
  }
  h2 {
    padding: 1.5vh 0;
    font-size: 22px;
  }
  h3 {
    padding: 1.5vh 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 2000px) {
  .container {
    padding-right: calc(22vw - (100vw - 100%));
    padding-left: 22vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 20px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.2;
    padding: 1.75vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 36px;
  }
  h2 {
    padding: 1.5vh 0;
    font-size: 24px;
  }
  h3 {
    padding: 1.5vh 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 2400px) {
  .container {
    padding-right: calc(24vw - (100vw - 100%));
    padding-left: 24vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 22px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.2;
    padding: 1.75vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 36px;
  }
  h2 {
    padding: 1.5vh 0;
    font-size: 24px;
  }
  h3 {
    padding: 1.5vh 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 3200px) {
  .container {
    padding-right: calc(32vw - (100vw - 100%));
    padding-left: 28vw;
  }
}
footer {
  padding: 3vh 0px;
  background-color: #fafafa;
}
footer span {
  padding: 0 1px;
  font-size: 0.85em;
}
footer p {
  font-style: italic;
}

@media screen and (min-width: 992px) {
  footer {
    padding: 3vh 0px;
    background-color: #fafafa;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 4vh 0px;
    background-color: #fafafa;
  }
}
@media screen and (min-width: 1600px) {
  footer {
    padding: 5vh 0px;
  }
}
/* ======================== Blog ===================== */
div.container.blog#first-content {
  padding-top: 2vh;
  background-color: #f6f6f6;
}
div.container.blog#first-content div.blog-title {
  display: grid;
  grid-template-columns: 1fr;
  grid-row: 50vh;
}
div.container.blog#first-content div.blog-title.white * {
  color: white;
}
div.container.blog#first-content div.blog-title.white *::-moz-selection {
  color: #353535 !important;
  background: white !important;
}
div.container.blog#first-content div.blog-title.white *::selection {
  color: #353535 !important;
  background: white !important;
}
div.container.blog#first-content div.blog-title.white * .link * {
  color: #f4f3ef !important;
}
div.container.blog#first-content div.blog-title.white * .info p {
  color: #f4f3ef !important;
}
div.container.blog#first-content div.blog-title .blog-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vh 0;
}
div.container.blog#first-content div.blog-title .blog-intro p.author {
  padding: 4px 0;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
}
div.container.blog#first-content div.blog-title .blog-intro p.abstract {
  font-family: "Poppins";
  font-weight: 400;
  padding: 1vh 0;
}
div.container.blog#first-content div.blog-title .blog-intro .info p {
  padding: 10px 0 0 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #353535;
  font-weight: 600;
  font-size: 0.95em;
}
div.container.blog#first-content div.blog-title .blog-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2vh 0;
}
div.container.blog#first-content div.blog-title .blog-cover img.foreground {
  position: relative;
  z-index: 2;
  padding: 0 !important;
}
div.container.blog#first-content div.blog-title .blog-cover img.background {
  position: absolute;
  z-index: 1;
  filter: blur(24px);
  padding: 0 !important;
}

div.container.blog p.text {
  padding: 1.5vh 0;
  font-family: "Charter", sans-serif;
}
div.container.blog p.text:last-child {
  padding-bottom: 0;
}
div.container.blog ul, div.container.blog ol {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  padding: 0;
}
div.container.blog ul li p.text, div.container.blog ol li p.text {
  padding: 0vh 0 1.5vh 0 !important;
}
div.container.blog p.caption {
  padding: 1vh 0;
  font-weight: 500;
  line-height: 1.2;
  font-size: 90%;
}
div.container.blog p.caption b {
  font-weight: 700 !important;
}
div.container.blog p.caption a {
  font-size: inherit;
  color: inherit;
}
div.container.blog p.caption.inline {
  padding: 1.5vh 0 !important;
  font-style: italic;
}
div.container.blog p.caption.inline.center {
  text-align: center;
}
div.container.blog p.caption.comment {
  padding: 0 2vw 1vh;
}
div.container.blog p.caption.selection {
  line-height: 1;
}
div.container.blog img {
  padding-bottom: 1vh;
}
div.container.blog.first {
  margin-top: 1.5vh;
}
div.container.blog.main {
  padding: 0.5vh 6vw;
}
div.container.blog.main.comment .content-comment {
  display: none;
}
div.container.blog.main.inline {
  padding-top: 0;
  padding-bottom: 1vh;
}
div.container.blog.large {
  padding: 0.5vh 6vw;
}
div.container.blog.large.inline {
  padding-top: 0;
  padding-bottom: 1vh;
}
div.container.blog.extra-large {
  padding: 0.5vh 6vw;
}
div.container.blog.extra-large.inline {
  padding-top: 0;
  padding-bottom: 1vh;
}
div.container.blog.extra-extra-large {
  padding: 0.5vh 6vw;
}
div.container.blog.extra-extra-large.inline {
  padding-top: 0;
  padding-bottom: 1vh;
}
div.container.blog.max {
  padding: 0.5vh 0vw;
}
div.container.blog.max.inline {
  padding-top: 0;
  padding-bottom: 1vh;
}
div.container.blog.gray {
  background-color: #f6f6f6;
}
div.container.blog.gray p.caption {
  padding-bottom: 0;
}
div.container.blog.gray-linear {
  background: linear-gradient(to bottom, #f6f6f6 0%, white 10%, white 90%, #f6f6f6 100%);
}
div.container.blog.gray-linear p.caption {
  padding-bottom: 0;
}
div.gray-box {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 15px;
}

@media screen and (min-width: 769px) {
  div.container.blog#first-content {
    padding-top: 3vh;
  }
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    margin: 0 0 0 auto;
    width: 90%;
    padding: 3vh 0;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 6vw;
  }
  div.container.blog#first-content div.blog-title.no-cover h1 {
    padding: 0 2%;
    text-align: center;
  }
  div.container.blog#first-content div.blog-title.no-cover p.author {
    padding: 10px 2%;
    text-align: center;
  }
  div.container.blog#first-content div.blog-title.no-cover .info {
    display: flex;
    justify-content: space-around;
  }
  div.container.blog.first {
    margin-top: 2vh;
  }
  div.container.blog.main {
    padding: 1vh 15vw;
  }
  div.container.blog.main.comment {
    padding-left: 15vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 70vw 13vw;
  }
  div.container.blog.main.comment .content-comment {
    display: none;
  }
  div.container.blog.large {
    padding: 1vh 10vw;
  }
  div.container.blog.extra-large {
    padding: 1vh 8vw;
  }
  div.container.blog.extra-extra-large {
    padding: 1vh 8vw;
  }
}
@media screen and (min-width: 992px) {
  div.container.blog#first-content {
    padding-top: 4vh;
  }
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    grid-row: 75vh;
    -moz-column-gap: 3vw;
         column-gap: 3vw;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 7.5vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    padding: 3vh 0;
  }
  div.container.blog.first {
    margin-top: 3vh;
  }
  div.container.blog.main {
    padding: 1.5vh 20vw;
  }
  div.container.blog.main.comment {
    padding-left: 20vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 60vw 18vw;
  }
  div.container.blog.main.comment .content-comment {
    display: none;
  }
  div.container.blog.large {
    padding: 1.5vh 15vw;
  }
  div.container.blog.extra-large {
    padding: 1.5vh 8.5vw;
  }
  div.container.blog.extra-extra-large {
    padding: 1.5vh 8.5vw;
  }
}
@media screen and (min-width: 1200px) {
  div.container.blog#first-content {
    padding-top: 6vh;
  }
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    grid-row: 75vh;
    -moz-column-gap: 4vw;
         column-gap: 4vw;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    padding: 5vh 0;
  }
  div.container.blog#first-content div.blog-title .blog-intro p {
    padding: 1.5vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 9vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    padding: 5vh 0;
  }
  div.container.blog.first {
    margin-top: 4vh;
  }
  div.container.blog.main {
    padding: 2vh 24vw;
  }
  div.container.blog.main.comment {
    padding-left: 24vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 60vw 18vw;
  }
  div.container.blog.main.comment .content-comment {
    display: block;
  }
  div.container.blog.large {
    padding: 2vh 16vw;
  }
  div.container.blog.extra-large {
    padding: 2vh 12vw;
  }
  div.container.blog.extra-extra-large {
    padding: 2vh 12vw;
  }
}
@media screen and (min-width: 1600px) {
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    grid-row: 75vh;
    -moz-column-gap: 4vw;
         column-gap: 4vw;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    padding: 5vh 0;
  }
  div.container.blog#first-content div.blog-title .blog-intro p {
    padding: 1.5vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 9vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    padding: 5vh 0;
  }
  div.container.blog.first {
    margin-top: 5vh;
  }
  div.container.blog.main {
    padding: 2vh 27vw;
  }
  div.container.blog.main.comment {
    padding-left: 27vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 50vw 23vw;
  }
  div.container.blog.large {
    padding: 2vh 22vw;
  }
  div.container.blog.extra-large {
    padding: 2vh 18vw;
  }
  div.container.blog.extra-extra-large {
    padding: 2vh 14vw;
  }
}
@media screen and (min-width: 2000px) {
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    grid-row: 65vh;
    -moz-column-gap: 5vw;
         column-gap: 5vw;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    padding: 5vh 0;
  }
  div.container.blog#first-content div.blog-title .blog-intro p {
    padding: 1.5vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 8vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    padding: 5vh 0;
  }
  div.container.blog.first {
    margin-top: 5vh;
  }
  div.container.blog.main {
    padding: 2vh 30vw;
  }
  div.container.blog.main.comment {
    padding-left: 30vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 50vw 23vw;
  }
  div.container.blog.large {
    padding: 2vh 26vw;
  }
  div.container.blog.extra-large {
    padding: 2vh 22vw;
  }
  div.container.blog.extra-extra-large {
    padding: 2vh 16vw;
  }
}
@media screen and (min-width: 2400px) {
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    grid-row: 65vh;
    -moz-column-gap: 6vw;
         column-gap: 6vw;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    padding: 5vh 0;
  }
  div.container.blog#first-content div.blog-title .blog-intro p {
    padding: 1.5vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 8vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    padding: 5vh 0;
  }
  div.container.blog.first {
    margin-top: 5vh;
  }
  div.container.blog.main {
    padding: 2vh 32vw;
  }
  div.container.blog.main.comment {
    padding-left: 32vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 50vw 23vw;
  }
  div.container.blog.large {
    padding: 2vh 28vw;
  }
  div.container.blog.extra-large {
    padding: 2vh 24vw;
  }
  div.container.blog.extra-extra-large {
    padding: 2vh 18vw;
  }
}
@media screen and (min-width: 3200px) {
  div.container.blog#first-content div.blog-title {
    grid-template-columns: 1fr 1fr;
    grid-row: 75vh;
    -moz-column-gap: 7vw;
         column-gap: 7vw;
  }
  div.container.blog#first-content div.blog-title .blog-intro {
    padding: 5vh 0;
  }
  div.container.blog#first-content div.blog-title .blog-intro p {
    padding: 1.5vh 0;
  }
  div.container.blog#first-content div.blog-title.no-cover {
    grid-template-columns: 1fr;
  }
  div.container.blog#first-content div.blog-title.no-cover .blog-intro {
    padding: 6vh 10vw;
  }
  div.container.blog#first-content div.blog-title .blog-cover {
    padding: 5vh 0;
  }
  div.container.blog.first {
    margin-top: 5vh;
  }
  div.container.blog.main {
    padding: 2vh 38vw;
  }
  div.container.blog.main.comment {
    padding-left: 38vw;
    padding-right: 0vw;
    display: grid;
    grid-template-columns: 50vw 23vw;
  }
  div.container.blog.large {
    padding: 2vh 32vw;
  }
  div.container.blog.extra-large {
    padding: 2vh 28vw;
  }
  div.container.blog.extra-extra-large {
    padding: 2vh 22vw;
  }
}
/* ======================== Button ===================== */
input[type=submit], input[type=reset], input[type=button],
button, .button {
  background-color: #ececec;
  border-radius: 10px;
  padding: 0.75em 1em;
  margin-bottom: 10px;
  color: #353535;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover,
button:hover, .button:hover {
  background-color: #ececec;
  opacity: 0.8;
  color: #353535;
}
input[type=submit]:active, input[type=reset]:active, input[type=button]:active,
button:active, .button:active {
  opacity: 0.5;
  background-color: #ececec;
  color: #353535;
}
input[type=submit].icon i, input[type=reset].icon i, input[type=button].icon i,
button.icon i, .button.icon i {
  font-size: 1.2em;
  padding-left: 0.5em;
  padding-bottom: 1px;
}
input[type=submit].project, input[type=reset].project, input[type=button].project,
button.project, .button.project {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  height: 0.75em;
  padding: 0.6em;
  font-size: 1em;
  color: #353535;
}
input[type=submit].project.white, input[type=reset].project.white, input[type=button].project.white,
button.project.white, .button.project.white {
  color: #f4f3ef;
}

@media screen and (max-width: 992px) {
  input[type=submit], input[type=reset], input[type=button],
  button, .button {
    font-size: 0.6em;
  }
  input[type=submit].icon i, input[type=reset].icon i, input[type=button].icon i,
  button.icon i, .button.icon i {
    font-size: 1.2em;
  }
}
/* ======================== Slide Menu ===================== */
.slide-menu {
  display: table;
  margin: 0 auto;
  padding-bottom: 2vh;
}
.slide-menu .dots {
  margin-bottom: -10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slide-menu .dots .dot {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  background-color: #c6c6c6;
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 15px;
  transition: all 0.2s ease-in-out;
}
.slide-menu .dots .dot:after {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.slide-menu .dots .dot:hover {
  transform: scale(1.4);
}
.slide-menu .dots .dot.active {
  background-color: #E2a3a3;
  transform: scale(1.4);
}

/* ======================== Table ===================== */
.table-wrapper {
  overflow: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  padding-bottom: 1vh;
}

.table-wrapper::-webkit-scrollbar { /* WebKit */
  width: 0;
  height: 0;
}

table {
  margin: 0.5vh 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
table a {
  font-size: inherit;
}
table th, table td {
  font-size: 85%;
}
table th b, table td b {
  font-weight: 900;
}
table thead {
  font-weight: 700;
}
table tbody tr {
  border: solid 1px #404041;
  border-left: 0;
  border-right: 0;
}
table tbody tr:nth-child(2n+1) {
  background-color: #ececec;
}
table tbody tr:first-child {
  border-top: solid 2px white;
}
table tbody tr:last-child {
  border-bottom: solid 2px white;
}
table tbody tr td.gray {
  background-color: #ececec !important;
}
table tbody tr td.nogray {
  background-color: #f6f6f6 !important;
}
table tbody.center td {
  text-align: center;
}
table thead.center th {
  text-align: center;
}
table td {
  color: #353535;
  padding: 0.5em 0.5em;
}
table th {
  color: #666667;
  padding: 0 0.5em 0.25em 0.5em;
  text-align: left;
}
table tfoot {
  border-top: solid 2px white;
}
table.alt {
  border-collapse: separate;
}
table.alt tbody tr td {
  border: solid 1px white;
  border-left-width: 0;
  border-top-width: 0;
}
table.alt tbody tr td:first-child {
  border-left-width: 1px;
}
table.alt tbody tr:first-child td {
  border-top-width: 1px;
}
table.alt thead {
  border-bottom: 0;
}
table.alt tfoot {
  border-top: 0;
}

/* ======================== Code ===================== */
code {
  background-color: rgba(230, 235, 237, 0.25);
  border-radius: 10px;
  border: solid 1px #c6c6c6;
  font-family: "Fira Code", monospace;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
  color: #666667;
  font-size: 75% !important;
}

pre {
  font-family: "Fira Code", monospace;
}

pre code {
  background-color: #fafafa !important;
  display: block;
  padding: 1.5vh 1.5vw !important;
  overflow-x: auto;
}

.highlight-blue {
  background-color: rgb(204, 230, 253);
  padding: 0.1em 0.5em !important;
  margin: 0 0.1em;
  font-family: "Poppins", sans-serif !important;
  white-space: nowrap;
  display: inline-block;
}


.highlight-green {
  background-color: rgb(223, 229, 213);
  padding: 0.1em 0.5em !important;
  margin: 0 0.1em;
  font-family: "Poppins", sans-serif !important;
  white-space: nowrap;
  display: inline-block;
}

.highlight-pink {
  background-color: #f0d0d0;
  padding: 0.1em 0.5em !important;
  margin: 0 0.1em;
  font-family: "Poppins", sans-serif !important;
  white-space: nowrap;
  display: inline-block;
}

.highlight-gradient-purple-blue {
  background: linear-gradient(to right, rgb(126, 93, 158, 0.8), rgb(49, 113, 246, 0.8));
  padding: 0.1em 0.5em !important;
  margin: 0 0.1em;
  font-family: "Poppins", sans-serif !important;
  color: white;
  white-space: nowrap;
  display: inline-block;
}

.highlight-gradient-purple-red {
  background: linear-gradient(to right, rgb(126, 93, 158, 0.8), rgb(203, 72, 70, 0.8));
  padding: 0.1em 0.5em !important;
  margin: 0 0.1em;
  font-family: "Poppins", sans-serif !important;
  color: white;
  white-space: nowrap;
  display: inline-block;
}

/* ======================== Selection ===================== */
select {
  border-color: transparent;
  border-radius: 5px;
  padding: 5px 3px;
  background-color: #ececec;
  display: inline;
  line-height: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  border: 0;
  outline: none;
  margin: inherit;
  height: 30px;
  text-underline-offset: 1px;
  width: inherit;
}
select option {
  white-space: nowrap;
  overflow: hidden;
}
select:hover {
  cursor: pointer;
}
select:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333;
}

/* ======================== Slider Display ===================== */
.slider-container {
  box-shadow: none;
  outline: none;
  --divider-width: 1px;
  --divider-color: #000;
  --default-handle-width: clamp(10px, 5vw, 40px);
  --default-handle-color: #000;
}
.slider-container.white {
  --divider-color: #fff;
  --default-handle-color: #fff;
}
.slider-container img {
  padding: 0 !important;
}

.before, .after {
  margin: 0;
}

.before figcaption {
  left: 8px;
}

.after figcaption {
  right: 8px;
}

.before figcaption,
.after figcaption {
  font-size: 90%;
  font-family: "Poppins";
  background: transparent;
  color: #353535;
  padding: 8px;
  position: absolute;
  top: 99%;
  transform: translateY(-100%);
  line-height: 100%;
}
.before figcaption.white,
.after figcaption.white {
  color: #f4f3ef;
}

/* ======================== Video Control ===================== */
.video-control {
  display: flex;
  justify-content: center;
  padding: 5px 0;
  gap: 10px;
}

.video-speed {
  opacity: 0;
}
.video-speed.fade-in-out {
  animation: fadeInOut 1.4s linear forwards;
}

.video-caption {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ======================== Slide Show Control ===================== */
.slideshow .navigation {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 10px;
}

.slideshow .slider {
  position: relative;
  width: 100%;
  height: 440px;
  padding-bottom: 20px;
  overflow: hidden;
}
.slideshow .slider:hover {
  cursor: pointer;
}
.slideshow .slider .slider-item {
  width: 400px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-left: 40px;
}
.slideshow .slider .slider-item video {
  display: block;
  padding-bottom: 40px;
}

h1, h2, h3, h4, h5, h6, p, a, code, pre, ol, ul, li {
  line-height: 1.5;
}

@media screen and (max-width: 769px) {
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 15px;
  }
  h1 {
    font-size: 24px;
    line-height: 1.2;
    padding: 1vh 0;
    font-weight: 600;
    margin: 0.6rem 0 0.4rem;
  }
  h1.title {
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 26px;
  }
  h2 {
    line-height: 1.2;
    padding: 1vh 0;
    font-weight: 600;
    font-size: 18px;
    margin: 0.5rem 0 0.3rem;
  }
  h3 {
    font-weight: 600;
    line-height: 1.2;
    padding: 1vh 0;
    font-size: 17px;
  }
  
  /* Add spacing for containers and content */
  .container.blog {
    padding: 0.6rem 0.8rem;
  }
  
  .blog-title {
    padding: 1rem 0.8rem;
  }
  
  .text {
    margin: 0.5rem 0;
    line-height: 1.3;
  }
  
  .box {
    margin: 0.6rem 0;
    padding: 0.8rem;
  }
  
  .columns-3, .columns-4 {
    gap: 0.6rem;
  }
  
  .caption {
    margin: 0.4rem 0;
  }
  
  .video-box {
    margin: 0.6rem 0;
  }
  
  .table-wrapper {
    margin: 0.6rem 0;
    overflow-x: auto;
  }
  
  .custom-box {
    padding: 0.8rem;
    margin: 0.6rem 0;
  }
  
  /* Improve navigation spacing */
  .navbar-links {
    padding: 80px 0.8rem 0.8rem;
    gap: 0.5rem;
  }
  
  .dropdown-content {
    padding-left: 0.8rem;
  }
  
  .dropdown-content a {
    padding: 4px 16px;
  }
}
@media screen and (min-width: 769px) {
  .container {
    padding-right: calc(8.5vw - (100vw - 100%));
    padding-left: 8.5vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
    line-height: 1.2;
    padding: 2vh 0;
    font-weight: 700;
  }
  h1.title {
    padding: 0 0 1vh;
    font-weight: 500;
    font-size: 26px;
  }
  h2 {
    line-height: 1.2;
    padding: 2vh 0;
    font-weight: 700;
    font-size: 18px;
  }
  h3 {
    font-weight: 700;
    line-height: 1.2;
    padding: 2vh 0;
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    padding-right: calc(12vw - (100vw - 100%));
    padding-left: 12vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
    line-height: 1.2;
    padding: 1vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 26px;
  }
  h2 {
    padding: 1vh 0;
    font-size: 18px;
  }
  h3 {
    padding: 1vh 0;
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding-right: calc(15vw - (100vw - 100%));
    padding-left: 15vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 18px;
  }
  h1 {
    font-size: 26px;
    line-height: 1.2;
    padding: 1vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 30px;
  }
  h2 {
    padding: 1vh 0;
    font-size: 20px;
  }
  h3 {
    padding: 1vh 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    padding-right: calc(18vw - (100vw - 100%));
    padding-left: 18vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 20px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.2;
    padding: 1.75vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 36px;
  }
  h2 {
    padding: 1.5vh 0;
    font-size: 22px;
  }
  h3 {
    padding: 1.5vh 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 2000px) {
  .container {
    padding-right: calc(22vw - (100vw - 100%));
    padding-left: 22vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 20px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.2;
    padding: 1.75vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 36px;
  }
  h2 {
    padding: 1.5vh 0;
    font-size: 24px;
  }
  h3 {
    padding: 1.5vh 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 2400px) {
  .container {
    padding-right: calc(24vw - (100vw - 100%));
    padding-left: 24vw;
  }
  a, p, td, th, tr, code, pre, ol, ul, li, div {
    font-size: 22px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.2;
    padding: 1.75vh 0;
  }
  h1.title {
    padding: 0 0 1vh;
    font-size: 36px;
  }
  h2 {
    padding: 1.5vh 0;
    font-size: 24px;
  }
  h3 {
    padding: 1.5vh 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 3200px) {
  .container {
    padding-right: calc(32vw - (100vw - 100%));
    padding-left: 28vw;
  }
}
footer p {
  font-family: "Charter";
}

/* ======================== Blog ===================== */
div.container.blog#first-content div.blog-title .blog-intro p.author {
  padding: 4px 0 10px;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  font-size: 85%;
}
div.container.blog#first-content div.blog-title .blog-intro p.abstract {
  font-family: "Poppins";
  font-weight: 400;
  padding: 1vh 0;
  font-size: 85%;
  line-height: 1.6;
}
div.container.blog#first-content div.blog-title .blog-intro .info p {
  text-transform: uppercase;
  color: #353535;
  font-weight: 500;
  font-size: 85%;
}

div.container.blog p.text {
  padding: 1.5vh 0;
  font-family: "Charter", sans-serif;
}
div.container.blog p.text:last-child {
  padding-bottom: 0;
}
div.container.blog ul li p.text, div.container.blog ol li p.text {
  padding: 0vh 0 1vh 0 !important;
}
div.container.blog p.caption {
  padding: 1vh 0;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0px;
  font-size: 70%;
}
div.container.blog p.caption b {
  font-weight: 600 !important;
}

/* ======================== Button ===================== */
input[type=submit], input[type=reset], input[type=button],
button, .button {
  font-size: 0.65em;
  font-weight: 500;
}

/* ======================== Table ===================== */
table th b, table td b {
  font-weight: 500;
}
table thead {
  font-weight: 500;
}

/* ======================== Selection ===================== */
select {
  padding: 2px 2px;
}

/* ======================== Slider Display ===================== */
.before figcaption,
.after figcaption {
  font-size: 70%;
}

.center-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60%;
  height: auto;
  margin: 0 auto; /* Centers the div itself */
}

/* Specific style for the teaser chart container */
.center-box.flexible-chart {
  max-width: 60%;
}

@media screen and (max-width: 768px) {
  .center-box.flexible-chart {
    max-width: 95%;
  }
}

.special-gradient {
  position: relative;
  background: radial-gradient(circle at center, #D9EAFD 60%, #DFE5D5 100%);
}

.special-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* or whatever height you want for the fade */
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgb(255,255,255));
  pointer-events: none;
}

h3.title {
  font-size: 1.2em;
  text-align: center;
  font-weight: 600;
}

.summary-content {
  display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button.summary-content p.caption {
  font-size: 1.0em !important;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.summary-content .title a {
    text-decoration: none;
    color: inherit;
}

.custom-caption {
    padding-left: 10% !important;
    padding-right: 10% !important;
}

.video-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em !important;
  height: auto;
  margin: 0 auto; /* Centers the div itself */
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

td.best-result {
    font-weight: 600;
    color: #000;
}

td.second-best-result {
    text-decoration: underline;
}

tr.border-top {
    border-top: 1px solid #000 !important;
}

.custom-box {
  padding-right: 8vw; 
  padding-left: 8vw;
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: radial-gradient(circle at center, rgba(217, 234, 253, 0.5) 60%, rgba(223, 229, 213, 0.5) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    padding: 1rem 2vw;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    font-family: "Poppins";
    letter-spacing: 0px;
}

.navbar-links {
    display: flex;
    gap: 2rem;
}

.navbar-links a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: "Poppins";
    font-size: 0.8em;
    letter-spacing: 0px;
}

.navbar-links a:hover {
    color: #666;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    top: 100%;
    left: 0;
    z-index: 1;
    /* margin-top: 0.1em; */
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.7em;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-trigger {
    cursor: pointer;
}

/* Burger menu styles */
.burger-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-menu div {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .navbar-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 60%;  /* Reduced from 70% to 60% */
        background: radial-gradient(circle at center, rgba(217, 234, 253, 0.95) 60%, rgba(223, 229, 213, 0.95) 100%);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 1.5rem 2rem;  /* Reduced horizontal padding */
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        z-index: 1000;
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar-links a {
        font-size: 1.1em;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 1rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .dropdown-content a {
        padding: 8px 16px;
    }

    /* Add padding to first content section to account for navbar */
    div.container.blog#first-content {
        padding-top: 80px;
    }

    /* Burger menu animation */
    .burger-menu.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active div:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.fixed-caption-height {
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjustable columns that automatically adjust width based on content */
.adjustable-columns-2 {
  display: flex;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.adjustable-columns-2 > * {
  flex: 1;
  min-width: 0; /* Prevents flex items from overflowing */
}

.adjustable-columns-2 > *:first-child {
  flex: 0 0 auto; /* Don't grow or shrink, use natural width */
  width: auto; /* Let the content determine the width */
  max-width: 35%; /* Limit the maximum width to 40% of the container */
}

.adjustable-columns-2 > *:last-child {
  flex: 1; /* Take up remaining space */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .adjustable-columns-2 {
    flex-direction: column;
    gap: 1rem;
  }
  
  .adjustable-columns-2 > * {
    width: 100% !important;
  }

  .adjustable-columns-2 > *:first-child {
    max-width: 65%; /* Increase max-width for mobile screens */
  }
}