/* -- ABOUT ME PAGE STYLES -- */

/* --- Highlights Carousel Section --- */
.highlights-section {
  background-color: var(--color-bg-medium);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.highlights-container {
  max-width: var(--container-width-md);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.highlights-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-lg);
}
.highlights-title {
  font-size: var(--font-size-ML);
  font-weight: 700;
}
.highlights-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-primary-gold);
  text-decoration: none;
}
.carousel-viewport {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 calc((100vw - var(--container-width-md)) / 2);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none; 
}
.highlight-card {
  position: relative; 
  width: var(--container-width-md);
  height: 680px;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-white);
  flex-shrink: 0;
  scroll-snap-align: center;
  margin-right: var(--space-md);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; 

}

.highlight-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1; 
}
.highlight-card-content {
  width: 55%;
  padding: 0 var(--space-xl);
  box-sizing: border-box;
  color: var(--color-text-light);
  text-align: left;
  position: relative;
  z-index: 2; 
}
.highlight-card-title {
  font-size: var(--font-size-large);
  font-weight: 500;
  margin: 0 0 var(--space-lg) 0;
}
.highlight-card-text {
  font-size: var(--font-size-mid);
  font-weight: 300;
  line-height: var(--line-height-base);
  margin: 0;
}

/* --- Pagination Dots --- */
.pagination-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: var(--space-lg) auto 0 auto;
  padding: 1rem var(--space-md);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-pill);
  width: max-content;
}
.dot {
  width: var(--space-xxs);
  height: var(--space-xxs);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dot.active {
  background-color: var(--color-text-dark);
  transform: scale(1.2);
}

/* --- Resume Section --- */
.resume-section {
  background-color: var(--color-bg-medium);
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}
.resume-container {
  max-width: var(--container-width-md);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-lg);
}
.resume-title {
  font-size: var(--font-size-ML);
  font-weight: 700;
  margin: 0;
}
.resume-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-primary-gold);
  text-decoration: none;
}
.experience-cards-container {
  display: flex;
  gap: 33px;
  overflow-x: auto;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-md) calc((100vw - var(--container-width-md)) / 2 + var(--space-md));
  box-sizing: border-box;
}
.experience-card {
  width: 370px;
  height: 370px; 
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.experience-card:hover {
  transform: translateY(-0.5rem) scale(1.03);
}
.experience-card-plus {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.75rem; /* 44px */
  height: 2.75rem;
  background-color: #2f2f2f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.experience-card-plus svg {
  width: 1.875rem; /* 30px */
  height: 1.875rem;
  stroke: var(--color-bg-white);
  transition: transform 0.3s ease;
}
.experience-card-plus:hover {
  background-color: rgb(85, 85, 85);
}
.experience-role {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  margin: 0 0 1.875rem 0;
}
.experience-company {
  font-size: 1.5625rem; /* 25px */
  font-weight: 400;
  margin: 0 0 0.625rem 0;
}
.experience-location {
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  margin: 0;
}

/* --- Experience Modal --- */
.experience-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.experience-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 3rem;
  width: 80%;
  max-width: 50rem; /* 800px */
  position: relative;
  box-shadow: 0 1.875rem 3.75rem rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.experience-modal.is-active .modal-content {
  transform: scale(1);
}
.modal-close-button {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem; /* 44px */
  height: 2.75rem;
  background-color: var(--color-bg-arrow-nav);
  border-radius: 50%;
  border: none;
  font-size: 1.875rem; /* 30px */
  color: var(--color-text-subtle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-body {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}
.modal-main-content {
  flex-grow: 1;
}
.modal-date-content {
  flex-shrink: 0;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-subtle);
}
.modal-body .experience-role {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}
.modal-body .experience-company {
  font-size: 2rem;
  font-weight: 500;
  margin: 0.25rem 0 0.125rem 0;
}
.modal-body .experience-location {
  font-size: 1.5rem;
  font-weight: 400;
  color: #86868b;
  margin-bottom: 1.5rem;
}
.modal-body .experience-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* --- Toolkit Section Card Colors --- */
.toolkit-section{
margin: 2rem 0 4rem 0;
}
.toolkit-card {
  color: #fff;
}

#maya-card { background-color: #7fc5de; }
#zbrush-card { background-color: #0f0f0f; }
#arnold-card { background-color: #1f646f; }
#substance-card { background-color: #1e3101; }
#photoshop-card { background-color: #001e36; }

.toolkit-card .highlight-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}


/* ---      ABOUT PAGE - SKELETON PLACEHOLDER STYLES --- */

body.is-loading .hero-image {
  visibility: hidden;
}

body.is-loading .page-title,
body.is-loading .page-slogan {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  color: transparent !important;
  border-radius: var(--radius-xs);
}

body.is-loading .page-title {
  height: 65px;
  width: 270px;
}

body.is-loading .page-slogan {
  height: 36px;
  width: 325px;
}

body.is-loading .hero-image-wrapper {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  border-radius: var(--radius-lg);
  width: 1920px;
  height: 1260px; 
}

body.is-loading .highlights-title,
body.is-loading .highlights-link,
body.is-loading .resume-title,
body.is-loading .resume-link {
  color: transparent !important;
  user-select: none;
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  border-radius: var(--radius-xs);
}

body.is-loading .highlights-title {
  height: 50px;
  width: 350px;
}
body.is-loading .highlights-link {
  height: 30px;
  width: 150px;
}

body.is-loading .resume-title {
  height: 50px;
  width: 350px;
}
body.is-loading .resume-link {
  height: 30px;
  width: 150px;
}

body.is-loading .highlight-card-image,
body.is-loading .highlight-card-content,
body.is-loading .experience-card .card-content,
body.is-loading .experience-card .experience-card-plus {
  visibility: hidden;
}

body.is-loading .highlight-card,
body.is-loading .experience-card {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0; 
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%) !important; 
  background-size: 2000px 100%;
  border-color: transparent !important;
}

body.is-loading .toolkit-section img,
body.is-loading .toolkit-section .toolkit-text-content {
  visibility: hidden;
}

body.is-loading .toolkit-title,
body.is-loading .toolkit-subtitle {
  color: transparent !important;
  user-select: none;
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  border-radius: var(--radius-xs);
  margin-left: auto;
  margin-right: auto;
}

body.is-loading .toolkit-title {
  height: 65px;
  width: 600px;
  margin-bottom: 0.75rem;
}

body.is-loading .toolkit-subtitle {
  height: 65px;
  width: 500px;
}

body.is-loading .toolkit-window {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-size: 2000px 100%;
  height: 525px;
  width: 1260px;
  margin: 1.5rem auto 0 auto;
  border-radius: var(--radius-lg);
}

body.is-loading .logo-bar {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-size: 2000px 100%;
  border-radius: 999px;
  height: 60px;
  width: 760px;
  margin: 2rem auto 0 auto;
}

body.is-loading .concluding-cta .quote-mark {
  visibility: hidden;
}

body.is-loading .concluding-cta .quote-text,
body.is-loading .concluding-cta .quote-attribution {
  color: transparent !important;
  user-select: none;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  animation: placeholder-shimmer 2s linear infinite;
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  border-radius: var(--radius-xs);
}

body.is-loading .concluding-cta .quote-text {
  height: 70px;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem; 
}

body.is-loading .concluding-cta .quote-attribution {
  height: 24px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem; 
}

body.is-loading .concluding-cta .realistic-glass-button {
  color: transparent !important;
  user-select: none;
  pointer-events: none;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #d1d1d1 !important;
  text-shadow: none !important; 
  animation: placeholder-shimmer 2s linear infinite;
  background-image: linear-gradient(to right, #d1d1d1 0%, #e0e0e0 40%, #d1d1d1 80%, #d1d1d1 100%) !important;
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  width: 220px;
  height: 52px;
  padding: 0;
  border-radius: var(--radius-pill);
  display: inline-block;
}

body.is-loading .concluding-cta .realistic-glass-button::before {
  display: none !important;
}

/* =================================================================== */
/* ==               ABOUT PAGE RESPONSIVE STYLES                    == */
/* =================================================================== */

@media (max-width: 1070px) {
    .highlight-card {
        width: 85vw;
        height: 520px;
    }
    .carousel-track {
        padding: 0 calc((100vw - 85vw) / 2);
    }
    .highlight-card-title {
        font-size: 28pt;
    }
    .highlight-card-text {
        font-size: 15pt;
    }
    .experience-cards-container {
        padding: var(--space-md) 20px;
    }
    .toolkit-title, .toolkit-subtitle {
        font-size: 30pt;
    }
    .logo-bar img {
        height: 5rem;
    }
    body.is-loading .hero-image-wrapper {
        width: 100%;
        max-width: 1070px;
        height: auto;
        aspect-ratio: 1680 / 850;
    }
    body.is-loading .highlights-title,
    body.is-loading .resume-title {
        height: 40px;
        width: 280px;
    }
    body.is-loading .highlights-link,
    body.is-loading .resume-link {
        height: 24px;
        width: 120px;
    }
    body.is-loading .highlight-card {
        width: 85vw;
        height: 520px;
    }
    body.is-loading .toolkit-title {
        width: 480px;
    }
    body.is-loading .toolkit-subtitle {
        width: 400px;
    }
    body.is-loading .toolkit-window {
        width: 100%;
        height: 420px;
    }
    body.is-loading .logo-bar {
        width: 100%;
        max-width: 650px;
    }    
}

@media (max-width: 832px) {
    .highlights-title, .resume-title {
        font-size: 24pt;
    }
    .highlight-card {
        width: 90vw;
        height: 480px;
    }
    .carousel-track {
        padding: 0 calc((100vw - 90vw) / 2);
    }
    .highlight-card-content {
        width: 50%;
        padding: 0 var(--space-lg);
    }
    .highlight-card-title {
        font-size: 24pt;
        margin-bottom: var(--space-md);
    }
    .highlight-card-text {
        font-size: 14pt;
    }
    .experience-card {
        width: 300px;
        height: 300px;
    }
    .experience-role {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .experience-company {
        font-size: 1.25rem;
    }
    .experience-location {
        font-size: 1rem;
    }
    .toolkit-window {
        height: auto;
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }
    .toolkit-window-title {
        font-size: 2rem;
    }
    .toolkit-text-content p {
        font-size: 1.25rem;
    }
    .logo-bar {
        flex-wrap: wrap;
        padding: 2rem;
    }
    .logo-bar img {
        height: 4rem;
    }
    body.is-loading .highlights-title,
    body.is-loading .resume-title {
        height: 36px;
        width: 200px;
    }
    body.is-loading .highlight-card {
        width: 90vw;
        height: 480px;
    }
    body.is-loading .experience-card {
        width: 300px;
        height: 300px;
    }
    body.is-loading .toolkit-window {
        height: auto;
        min-height: 400px;
    }
    body.is-loading .logo-bar {
        height: auto;
        padding: 2rem;
    }    
}

@media (max-width: 734px) {

  /* =================================== */
  /* ==   Highlights Carousel Section == */
  /* =================================== */
  .highlights-section {
    background-color: var(--color-bg-medium);
    padding: 1rem 0;
    overflow: hidden;
  }

  .highlights-container,
  .resume-container,
  .toolkit-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .highlights-header {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-md);
    box-sizing: border-box;
    width: 100%;
  }

  .highlights-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
  }

  .highlights-link {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-primary-gold);
    text-decoration: none;
  }

  .carousel-viewport {
    width: 100%;
    position: static;
    transform: none;
  }

  .carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 calc((100vw - 320px) / 2);
  }

  .highlight-card {
    position: relative; 
    width: 320px;
    height: 480px;
    border-radius: var(--radius-md);
    background-color: #000;
    flex-shrink: 0;
    scroll-snap-align: center;
    margin-right: var(--space-md);
    display: flex;
    align-items: flex-start; 
    overflow: hidden; 
    color: #fff;
  }

  .highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2;
    pointer-events: none;
  }

  .highlight-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
    filter: brightness(0.9);
  }

  .highlight-card-content {
    width: 100%;
    padding: var(--space-xl);
    box-sizing: border-box;
    text-align: left;
    position: relative;
    z-index: 3;
  }

  .highlight-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 var(--space-sm) 0;
  }

  .highlight-card-text {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
  }

  .pagination-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: var(--space-lg) auto 0 auto;
    padding: 1.5rem 2.5rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-pill);
    width: max-content;
  }

  .dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .dot.active {
    background-color: var(--color-text-dark);
    transform: scale(1.2);
  }

  /* =================================== */
  /* ==      Resume Section           == */
  /* =================================== */
  .resume-section {
    background-color: var(--color-bg-medium);
    padding: 3rem 0;
    margin-bottom: var(--space-sm);
    overflow: hidden;
  }

  .experience-cards-container {
    display: flex;
    gap: 33px;
    overflow-x: auto;
    width: 100%;
    position: static;
    transform: none;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    padding: 0 calc((100vw - 270px) / 2);
  }
  .resume-header {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-md);
    box-sizing: border-box;
    width: 100%;
  }

  .resume-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
  }

  .resume-link {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-primary-gold);
    text-decoration: none;
    margin-top: 1rem;
  }  
  .experience-card {
    width: 270px;
    height: 270px; 
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .experience-card:hover {
    transform: none;
  }

  .experience-card-plus {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.1rem;
    height: 2.1rem;
    background-color: #2f2f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .experience-card-plus svg {
    width: 1.4rem;
    height: 1.4rem;
    stroke: var(--color-bg-white);
    transition: transform 0.3s ease;
  }

  .experience-role {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 1.875rem 0;
  }

  .experience-company {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 0.625rem 0;
  }

  .experience-location {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding-bottom: 2.5rem;
  }

  .carousel-arrow-nav {
    width: 90%;
  }

  /* =================================== */
  /* ==      Experience Modal         == */
  /* =================================== */
  .modal-content {
    max-width: 408px;
    height: 70%;
    width: 60%;
  }

  .modal-body {
    display: block;
  }

  .modal-main-content {
    display: flex;
    flex-direction: column;
  }

  .modal-date-content {
    display: none;
  }

  .modal-body .experience-role {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    order: 1;
  }

  .modal-body .experience-company {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0.75rem 0 0.125rem 0;
    order: 2;
  }

  .modal-body .experience-dates {
    font-size: 1.2rem;
    font-weight: 400;
    color: #86868b;
    margin: 1rem 0; 
    order: 3;
  }

  .modal-body .experience-location {
    font-size: 1.2rem;
    font-weight: 400;
    color: #86868b;
    margin: 1rem 0; 
    order: 4;
    padding-bottom: 0;
  }

  .modal-body .experience-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-body);
    order: 5;
  }

  /* =================================== */
  /* ==        Toolkit Section        == */
  /* =================================== */
  .toolkit-section {
    padding:0;
    margin-bottom: 3rem;
    overflow: hidden;
  }
  .toolkit-window {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0;
    background: none;
    height: auto;
  }

  .toolkit-text-content {
    flex: 0 0 100%; 
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    opacity: 1;
    box-sizing: border-box;
    padding: 3rem 2rem;
    min-height: 480px;
    border-radius: var(--radius-lg);
    align-items: center;
    text-align: center;
  }

  .toolkit-text-content p {
    max-width: 300px;
  }

  #maya-text { background-color: #7fc5de; }
  #zbrush-text { background-color: #0f0f0f; }
  #substance-text { background-color: #1e3101; }
  #photoshop-text { background-color: #001e36; }
  #arnold-text { background-color: #1f646f; }

  .logo-bar {
    display: none;
  }

  .toolkit-pagination-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: var(--space-lg);
  }

}