@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.study-page {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  /* ---------------------
      BREADCRUMB
  ---------------------- */
  /* ---------------------
      HERO
  ---------------------- */
  /* ---------------------
      QUOTE
  ---------------------- */
  /* ---------------------
      MARQUEE
  ---------------------- */
  /* ---------------------
      DETAILS
  ---------------------- */
  /* ---------------------
      KEY AREAS
  ---------------------- */
}
.study-page .max, .study-page .areas .areas-content, .study-page .details .details-content, .study-page .quote .quote-content, .study-page .hero .hero-content, .study-page .breadcrumb .breadcrumb-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.study-page .breadcrumb {
  background-color: #000435;
  padding-left: 2rem;
}
.study-page .breadcrumb .breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 1.2rem 0;
}
.study-page .breadcrumb .breadcrumb-content a {
  color: #878787;
  text-decoration: none;
  font-weight: 300;
}
.study-page .breadcrumb .breadcrumb-content a:hover {
  color: #83AAFE;
}
.study-page .breadcrumb .breadcrumb-content .active {
  color: #F95900;
  font-weight: 300;
}
.study-page .breadcrumb .breadcrumb-content span {
  opacity: 0.6;
  color: #878787;
}
.study-page .hero {
  background-color: #000435;
  padding: 6rem 8rem;
}
.study-page .hero .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 900px) {
  .study-page .hero .hero-content {
    flex-direction: column;
  }
}
.study-page .hero .hero-text {
  max-width: 620px;
}
.study-page .hero .hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #E8EEFF;
}
.study-page .hero .hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #C9DAFF;
  font-weight: 300;
}
.study-page .hero .hero-image img {
  width: 32rem;
  border-radius: 16px;
}
@media (max-width: 1100px) {
  .study-page .hero .hero-image img {
    width: 24rem;
  }
}
@media (max-width: 768px) {
  .study-page .hero .hero-image img {
    width: 16rem;
  }
}
@media (max-width: 1200px) {
  .study-page .hero {
    padding: 3rem 4rem;
  }
}
.study-page .quote {
  background-color: #FFF9D7;
  padding: 2.5rem 0;
  text-align: center;
}
.study-page .quote .quote-content p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #000435;
  line-height: 1.6;
}
.study-page .categories-marquee {
  background-color: #242320;
  padding: 1rem 0;
  overflow: hidden;
}
.study-page .categories-marquee .marquee {
  overflow: hidden;
  width: 100%;
}
.study-page .categories-marquee .track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}
.study-page .categories-marquee .track p {
  margin: 0;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ECE6D7;
  white-space: nowrap;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.study-page .details {
  background-color: #FFF9D7;
  padding: 6rem 0;
}
.study-page .details .details-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000435;
  margin-bottom: 1.2rem;
}
.study-page .details .details-content .details-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.study-page .details .details-content .details-text p {
  max-width: 1000px;
  color: #000;
  line-height: 1.6;
}
.study-page .areas {
  background-color: #FFE9B7;
  padding: 6rem 0 10rem;
}
.study-page .areas .areas-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000435;
  margin-bottom: 3rem;
}
.study-page .areas .areas-content .areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1100px) {
  .study-page .areas .areas-content .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .study-page .areas .areas-content .areas-grid {
    grid-template-columns: 1fr;
  }
}
.study-page .areas .areas-content .areas-grid .area-card {
  background-color: #FFF9D7;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #000435;
}
.study-page .areas .areas-content .areas-grid .area-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.study-page .areas .areas-content .areas-grid .area-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}
