.h1.title{
    text-transform: uppercase;
    color: rgba(4, 30, 82, 1);
}
.glide__arrows {
    margin: 20px auto 0;
}
.owl-dots, .glide__bullets{
  left: 50%;
    right: auto;
    margin-left: unset;
    transform: translateX(-50%);
}
div#newsGlide {
    margin-top: 50px;
}
.uppercase{
  text-transform: uppercase;
}
.text {
    margin-bottom: 50px;
}
h1.title{
  margin: 0;
  font-weight: 700;
  font-size: 32px;
}
.featured-card {
    display: grid;
    grid-template-columns: 500px 1fr;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: 0 4px 32px rgba(37, 99, 235, 0.08); */
    border: 1px solid #E2EAFF;
    min-height: 300px;
}

.featured-image {
    position: relative;
    overflow: hidden;
    background: #0B1D3F;
}

.featured-image img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}


.featured-body {
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(33, 102, 243, 1);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    padding: 6px 12px;
    border-radius: 6px;
    width: fit-content;
    text-transform: uppercase;
}

.badge::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 13px;
    background: rgb(255 255 255);
    /* border-radius: 50%; */
}

.featured-title {
    /* font-size: clamp(18px, 2.2vw, 26px); */
    /* font-weight: 700; */
    /* color: var(--text-dark); */
    /* line-height: 1.3; */
    /* letter-spacing: -0.3px; */
    margin-bottom: 0;
    line-height: normal;
}

.featured-excerpt {
    font-size: clamp(13px, 1.3vw, 16px);
}

.featured-excerpt a {
    color: var(--blue-primary);
    text-underline-offset: 3px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(17, 103, 232, 1);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: gap 0.2s ease;
    width: fit-content;
}

.read-more:hover {
    gap: 12px;
}

.read-more svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.read-more:hover svg {
    transform: translateX(3px);
}
.news-card {
      background: #fff;
      border-radius: 15px;
      border: 1px solid #E2EAFF;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(37,99,235,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    

    .card-image {
      position: relative;
      height: 200px;
      overflow: hidden;
      background: #0B1D3F;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .news-card:hover .card-image img { transform: scale(1.06); }

    .card-source-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 4px 8px;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 12px;
    }

    .card-title {
      font-size: clamp(15px, 1.5vw, 18px);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.35;
      letter-spacing: -0.2px;
      margin: 0;
    }
.card-title a{
    text-decoration: none;
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 22px;
    color: rgba(0, 0, 0, 1);
    min-height: 88px;
    display: inline-block;
}

    .card-excerpt {
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.65;
      flex: 1;
    }

    .card-excerpt a {
      color: var(--blue-primary);
      text-underline-offset: 3px;
    }

    .card-footer {
      padding-top: 12px;
      border-top: 1px solid #F1F5F9;
    }
    .newsletter-card {
      border-radius: 20px;
      padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 72px);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(37,99,235,0.12);
      background: rgba(243, 249, 255, 1);
    }

    .newsletter-content { position: relative; z-index: 1; }

    .newsletter-title {
      font-size: clamp(20px, 3vw, 32px);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.25;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .newsletter-desc {
      font-size: clamp(13px, 1.4vw, 15px);
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto 32px;
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 520px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
      position: relative;
    }
.newsletter-form .error{
    position: absolute;
    bottom: -25px;
    left: 0;
}

    .newsletter-input {
      flex: 1;
      min-width: 220px;
      padding: 14px 20px;
      border: 1.5px solid #CBD5E1;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: rgba(0, 0, 0, 0.6);
      background: white;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .newsletter-input::placeholder { color: var(--text-light); }

    .newsletter-input:focus {
      border-color: var(--blue-primary);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    }
.commen-title-heading.text-center h2{
    max-width:100%;
}
    .newsletter-btn {
      padding: 14px 28px;
      background: rgba(17, 103, 232, 1);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      /* box-shadow: 0 4px 16px rgba(37,99,235,0.3); */
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background: #1D4ED8;
      /* box-shadow: 0 6px 24px rgba(37,99,235,0.4); */
    }

    .newsletter-btn:active { transform: translateY(0); }
@media (max-width: 768px) {
      .featured-card {
        grid-template-columns: 1fr;
      }

      .featured-image {
        height: 220px;
      }

      .newsletter-form {
        flex-direction: column;
        align-items: stretch;
      }

      .newsletter-input {
        min-width: unset;
      }
    }

@media (max-width: 640px) {
div#newsGlide {
    margin-top: 30px;
}
}