.page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-numbers a{
    display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  background: 0 0;
}
.page-numbers.current {
  font-size: 16px;
  font-weight: 600;
}
/* Root container */
.learn-traacs-top {
  position: relative;
  background: url(../images/bluebg.jpg) no-repeat;
  background-size: cover;
  color: white;
  overflow: hidden;
  padding: 64px 0px;
  background-color: #014A78;
  margin-bottom: 104px
}
/* Title */
.learn-traacs-title {
    color: #fff; 
    padding-bottom: 56px;
    margin-bottom: 0;
}

/* Divider line */
.learn-traacs-divider {
  height: 1px;
  width: 100%;
  background-color:#DEE3E31A;
  margin-bottom: 40px;
}
.sw-traacs-blogs-container h2 {
  color: #050E15;
  font-family: "Inter Tight";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.44px;
  text-align: left;
  width: 100%;
}
/* Two-column layout */
.learn-traacs-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left section */
.learn-traacs-left {
  flex: 1;
  min-width: 250px;
}

.learn-traacs-subtitle {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 30.8px */
    letter-spacing: -0.22px;
    max-width: 65%;
}

/* Right section */
.learn-traacs-right {
  flex: 2;
  min-width: 300px;
}

.learn-traacs-description p{
    color: rgba(255, 255, 255, 0.30);
    font-size: 43px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    letter-spacing: -0.86px;
}
.learn-traacs-description p strong {
  color: #FFF;
  font-weight: 600;
}
/* Background shape (white triangle-like graphic) */
.learn-traacs-bg-shape {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 800px;
  height: 400px;
  background: linear-gradient(to bottom right, white 50%, transparent 50%);
  clip-path: polygon(20% 0%, 100% 100%, 0% 100%);
  opacity: 0.95;
  z-index: 1;
}


/* Default: desktop-first styles (already your base CSS) */
@media (max-width: 1440px) {
    .learn-traacs-description p{
        font-size: 38px;
    }
}
@media (max-width: 1366px) {
    .learn-traacs-description p{
        font-size: 28px;
    }
}
@media (max-width: 1280px) {
  .learn-traacs-top {
    padding: 80px 64px;
  }
  .learn-traacs-title {
    font-size: 56px;
  }
  .learn-traacs-content {
    gap: 48px;
  }
  .learn-traacs-description p{
        font-size: 30px;
    }
}
@media (max-width: 1024px) {
  .learn-traacs-top {
    padding: 72px 48px;
  }
  .learn-traacs-description {
    font-size: 28px;
    line-height: 1.45;
  }
  .learn-traacs-bg-shape {
    width: 700px;
    height: 360px;
    bottom: -120px;
  }
   .learn-traacs-description p {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .learn-traacs-top {
    padding: 64px 32px;
  }
  .learn-traacs-content {
    display: block;
  }
  .learn-traacs-left,
  .learn-traacs-right {
    width: 100%;
  }
  .learn-traacs-description {
    font-size: 24px;
  }
  .learn-traacs-divider {
    margin-bottom: 28px;
  }
  .learn-traacs-bg-shape {
    width: 80vw;
    height: 40vw;
    bottom: -15vw;
  }
  .learn-traacs-subtitle {
    max-width: 80%; 
 }
}
@media (max-width: 767px) {
    .learn-traacs-description p strong{
        font-size: 24px;
    }
    .learn-traacs-description p {
        font-size: 24px;
        margin-top: 48px;
    }
    .learn-traacs-title{
        margin-bottom: 25px;
        padding-bottom: 24px;
    }
    .learn-traacs-top {
      margin-bottom: 56px;
    }
}


/* ≤640px (large phones) */
@media (max-width: 640px) {
  .learn-traacs-top {
    padding: 56px 24px;
  }
  .learn-traacs-title {
    font-size: 44px;
    line-height: 1.2;
  }
  .learn-traacs-subtitle {
    font-size: 18px;
  }
  .learn-traacs-description {
    font-size: 22px;
  }
}

/* ≤480px (small phones) */
@media (max-width: 480px) {
  .learn-traacs-top {
    padding: 48px 20px;
  }
  .learn-traacs-title {
    font-size: 36px;
  }
  .learn-traacs-description {
    font-size: 20px;
  }
  .learn-traacs-bg-shape {
    width: 90vw;
    height: 45vw;
    bottom: -18vw;
  }
}

