@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


html, body{
    font-family: "Inter", system-ui, sans-serif;
}
body{
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Ensure all text elements use CSS variables for dark mode compatibility */
/* Default text color - applied to body, inherited by all children */


/* Headings should use heading color */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading) !important;
}

/* Links should use link color */
/* a {
    color: var(--text-link) !important;
}
a:hover {
    color: var(--text-link-hover) !important;
} */

/* Input fields should have proper text color */
input[type="text"], input[type="email"], input[type="search"], 
textarea, select {
    color: var(--text-primary) !important;
}
.footer-last a {
    font-weight: 600;
    color: #2563eb !important;
}

.footer-last a:hover {
  color: #1e40af !important;
}

#live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-search);
    border: 1px solid var(--border-primary);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    padding: 8px 0;
  }
  
  .live-search-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-tertiary);
    cursor: pointer;
    text-align: center;
    font-size: 15px;
  }
  .live-search-item:last-child{
    border-bottom: none;
  }
  
  .live-search-item:hover {
    background-color: var(--bg-search-hover);
  }
  
  .live-search-title {
    color: var(--text-search-title);
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    text-align: left;
  }
  
  .live-search-desc {
    color: var(--text-search-desc);
    font-size: 12.15px;
    line-height: 1.3;
    margin-top: 7px;
    text-align: left;
  }
  .live-search-desc:empty{
    display: none;
    margin: 0;
  }
  /**** Search *****/
  #ajaxsearchlite1 .probox, div.asl_w .probox{
    height: 62px !important;
    border-radius: 8px;
    overflow: hidden;
  }
  div.asl_m .probox .proinput input:not(.autocomplete){
    height: 62px !important;
    font-size: 16px !important;
    color: var(--text-dark) !important;
    padding: 0 30px;
  }
  div.asl_w .probox .proinput input.autocomplete{
    height: inherit !important;
  }
  .site-main,
  .content-area {
    position: relative;
    min-height: 100%;
}
.header-search-sec{
    overflow: inherit !important;
}
.site-content{
    min-height: calc(100dvh - 472px);
}
.loader-items{
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    box-sizing: border-box;
    padding: 15px;
    width: 100%;
}
.loading-post-data .loader-items{
    display: flex !important;
}
.loader-items span{
    display: inline-block;
    width: 34px; /* size-6 = 1.5rem = 24px */
    height: 34px;
    border-width: 3px;
    border-style: solid;
    border-color: currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: var(--color-blue);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.last-updated {
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    border-top: solid 1px var(--border-primary);
    border-bottom: solid 1px var(--border-primary);
    margin-top: 40px;
    color: var(--text-primary);
}
h1.entry-title {
    line-height: 1.3;
    text-wrap: balance;
}
#blog-content > div p,
#post-list > div p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* Clamp to 2 lines */
  line-clamp: 2;
}
.not-found-page-main{
    padding: 30px 0;
    height: calc(100dvh - 500px);
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}
  .not-found-page-main-inner h1{
    font-size: 76px;
    line-height: 1;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 20px;
  }
  .not-found-page-main-inner p{
    margin-bottom: 20px; 
  }
  .logo-not-fount{
    text-align: center;
    margin-bottom: 30px;
  }
  .logo-not-fount > a{
    display: inline-block;
  }
  .logo-not-fount > a img{
    width: 100%;
    height: auto;
    max-width: 150px;
  }
  #post-list > p {
    text-align: center;
    padding: 10px;
    background: var(--bg-post-message);
    font-size: 14px;
    border: solid 1px var(--border-alert);
    border-radius: 6px;
    color: var(--text-primary);
}
.pagination-wrap,
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.pagination-wrap .page-numbers,
.nav-links .page-numbers{
  display: inline-flex;
  min-width: 36px;
  padding: 5px 10px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--border-primary);
  border-radius: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current{
  border-color: var(--color-blue);
  background-color: var(--color-blue);
  color: #fff;
}
.pagination-wrap .page-numbers.next,
.pagination-wrap .page-numbers.prev,
.nav-links .page-numbers.next,
.nav-links .page-numbers.prev {
  font-size: 0;
  position: relative;
}
.pagination-wrap .page-numbers.next:after,
.pagination-wrap .page-numbers.prev:after,
.nav-links .page-numbers.next:after,
.nav-links .page-numbers.prev:after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: url(../images/pagi-icon.svg) no-repeat center center;
  background-size: 16px;
} 
.pagination-wrap .page-numbers.next:hover:after,
.pagination-wrap .page-numbers.prev:hover:after,
.nav-links .page-numbers.next:hover:after,
.nav-links .page-numbers.prev:hover:after{
  filter: brightness(0) invert(1); 
}
.pagination-wrap .page-numbers.prev:after,
.nav-links .page-numbers.prev:after{
  transform: rotate(180deg);
}
.article-items{
  position: relative;
}
a.post-link-items,
.single-article-items-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 99;
    margin: 0 !important;
    display: block;
}
.header{
  z-index: 999;
}
.article-main ul li img,
.article-main ol li img{
  margin-top: 10px;
  margin-bottom: 20px;
  border:solid 1px #ddd;
  box-sizing: border-box;
  border-radius: 10px;
}
.article-main > div > h2:first-child,
.article-main > div > h3:first-child{
  margin-top: 0 !important;
}
.home-page-category-list{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  width: 100%;
}
.info-banner-sec {
    position: relative;
    z-index: 11;
    display: flex;
    justify-content: center;
    padding-top: 90px;
}
.info-banner{
  border: solid 1px var(--border-secondary);
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 14px;
    background-color: var(--bg-info-banner);
    font-weight: 400;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}
.info-banner .arrow{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 26px;
  height: 26px;
  background-color: #ddd;
  border-radius: 50%;
  display: none;
}
.info-banner .arrow svg{
  width: 16px;
  height: 16px;
}
.info-banner .text span{
  color: var(--color-blue-light);
  font-weight: 500;
  display: inline-block;
}
.info-banner .text span:hover{
  color: var(--text-primary);
}
.category-box a.category-link {
    width: 100%;
    display: flex;
    background: var(--bg-category);
    padding: 10px 11px;
    border: solid 1px var(--border-primary);
    box-sizing: border-box;
    align-items: center;
    border-radius: 10px;
    font-size: 14px;
    justify-content: space-between;
    color: var(--text-primary);
}
.category-box a.category-link:hover{
  background-color: var(--bg-category-hover);
}
@media (min-width:568px){
  .home-page-category-list{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width:640px){
  .not-found-page-main-inner h1{
    font-size: 128px;
  }
  .home-page-category-list{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width:767px){
  .home-page-category-list{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width:1024px){
  .home-page-category-list{
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width:1024px){
  .info-banner-sec{
    padding-top: 40px;
  }
    .last-updated{
        padding: 15px 0;
        margin-top: 30px;
    }
    .live-search-item{
        font-size: 14px;
        padding: 12px 20px;
    }
    .live-search-title{
        font-size: 13px;
        line-height: 1.2;
    }
    .live-search-desc{
        font-size: 12px;
        line-height: 1.2;
    }
}
@media (max-width:767px){
  .info-banner-sec{
    padding-top: 40px;
  }
    .footer-last {
      margin-top: 30px;
  }
    .last-updated{
        padding: 12px 0;
        margin-top: 20px;
    }
    .loader-items span{
        width: 24px;
        height: 24px;
    }
    .live-search-item{
        padding: 10px 15px;
    }
    .live-search-title{
        font-size: 12px;
    }
    #live-search-input{
        font-size: 14px;
    }
}
.wp-block-image{
  margin-top: 10px;
  overflow: hidden;
  border-radius: 12px;
}

.btn-transparent {
  padding: 0.5rem; /* p-2 */
  display: flex; /* flex */
  align-items: center; /* items-center */
  font-size: 0.875rem; /* text-sm */
  border-radius: 0.5rem; /* rounded-lg */
  color: #1f2937 !important; /* text-gray-800 */
  outline: none; /* focus:outline-none */
}

/* Hover state */
.btn-transparent:hover {
  background-color: #f3f4f6; /* hover:bg-gray-100 */
}

/* Dark mode */
.dark .btn-transparent{
  color: #e5e7eb; /* dark:text-neutral-200 */
}

.dark .btn-transparent:hover {
  color: #737373; /* dark:hover:text-neutral-500 */
}

.dark .btn-transparent:focus {
  color: #737373; /* dark:focus:text-neutral-500 */
}

.btn-singup {
  display: inline-flex;
    align-items: center;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    border-radius: .5rem;
    border-width: 1px;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgb(28 84 227 / var(--tw-bg-opacity));
    padding: .5rem .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

@media (min-width: 761px) {
  .btn-singup.hidden {
    display: none !important;
  }
}

.last-updated-date-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.last-updated-date-box span{
  font-size: 0;
}
.last-updated-date-box-wrap{
  text-align: right;
}
.pt-0{
  padding-top: 0 !important;
}
.image-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overflow-y: auto;
  min-height: 100dvh;
  min-width: 100%;
  cursor: zoom-out;
}
.wp-block-image img,
.article-main img,
.blog-content img{
  cursor: zoom-in;
}
.image-modal-overlay img {
  max-width: 90%;
  max-height: 80dvh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  cursor: zoom-out;
}
.zoom-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    min-height: 100dvh;
}
html.image-modal-open {
    position: relative;
    overflow: hidden;
}
.last-updated-date-box svg{
  width: 14px;
}
.single-post .footer-wrap-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
/* .single-post footer .wrapper {
  padding-top: 0 !important;
} */
 .widget-btn-box{
  margin-top: 30px;
  text-align: center;
 }
.faq-list{
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  .faq-item{
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--divider);
    position: relative;
  }
  .aritcle-link{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .faq-item:last-child{
    border-bottom: 0;
  }

  .faq-item__icon{
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    color: #6b7280; /* muted */
  }

  .faq-item__content{
    flex: 1 1 auto;
    min-width: 0;
  }

  .article-main .faq-item__question{
    font-size: 18px; /* md:text-lg vibe */
    font-weight: 600;
    margin: 0 0 .25rem 0 !important;
    color: var(--text-faq-question) !important;
  }
  .faq-item__question a{
    color: var(--text-faq-question) !important;
  }
  .faq-item__question a:hover,
  .faq-item:hover .faq-item__question{
    color: var(--text-link-hover) !important;
    text-decoration: none;
  }

.article-main .faq-item__answer{
    margin: 0;
    color: var(--text-faq-answer);
    font-size: 14px;
    line-height: 1.75;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .faq-list > .faq-item{
    border-bottom: solid 1px var(--border-faq);
  }
  .faq-list > .faq-item:last-child{
    border-bottom: 0 !important;
  }
  .article-main .faq{
    margin-top: 60px !important;
  }
  .article-main .faq .faq__title{
    margin-bottom: 10px !important;
  }
  .category-link svg{
    flex-shrink: 0;
  }
  /* @media (min-width:568px){
    #post-list{
      grid-template-columns: repeat(2, minmax(0, 2fr));
    }
  } */
  /* @media (min-width:767px) and (max-width:920px){
    #post-list{
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
  } */
   .footer-description.footer-short-description {
    width: 100%;
    max-width: 590px;
    font-size: 14px;
    margin-top: 25px;
}
.footer-description.footer-short-description p{
  margin-bottom: 16px;
}
.footer-description.footer-short-description p:last-child{
  margin-bottom: 0;
}
@media (max-width:567px){
  .last-updated-date-box {
    font-size: 12px;
  }
  .last-updated-date-box svg{
    width: 14px;
  }
  .btn-singup{
    font-size: 12px;
  }
  .btn-transparent{
    font-size: 12px;
  }
  .logo img{
    max-width: 140px;
  }
  .last-updated-date-box{
    gap: 5px;
  }
  .article-main .faq{
    margin-top: 40px !important;
  }
}
@media (max-width:359px){
  .logo img{
    max-width: 103px;
  }
}

    .faq{
      max-width: 42rem; /* ~672px */
      margin: 0 auto;
    }

    .faq__title{
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 2rem 0 !important;
    }
    @media (min-width: 768px){
      .faq__title{
        font-size: 2.25rem; /* md:text-4xl-ish */
      }
    }
    .breadcrumb{
      margin-top: 40px;
    }
    .breadcrumb ol{
      column-gap: 8px;
      justify-content: center;
    }
    .breadcrumb ol svg{
      width: 20px;
      height: auto;
      flex-shrink: 0;
    }
    .breadcrumb ol li,
    .breadcrumb ol li a{
      font-size: 14px;
      color: var(--text-breadcrumb);
      text-align: left;
    }
    .breadcrumb ol li:nth-child(3) a{
      white-space: nowrap;
    }
    .breadcrumb ol li a:hover{
      color: var(--text-link-hover);
    }
    .breadcrumb ol [aria-current="page"]{
      color: var(--text-breadcrumb-current);
    }
    @media (max-width:767px){
      .breadcrumb{
        margin-top: 20px;
      }
    }

    /***** Foooter Button ******/
    .button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.button {
  padding: 0.5rem 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  font-size: 13px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.try-it {
  background-color: #3b82f6; /* Blue color */
  color: white;
}

.try-it:hover {
  background-color: #2563eb;
  box-shadow: none;
}

.try-it:focus {
  background-color: #2563eb;
  box-shadow: none;
}

.try-it:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.get-demo {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4b5563; /* Gray color */
}
.get-demo:hover{
  color: #1e40af;
}
.get-demo svg{
  width: 14px;
  height: auto;
}
.get-demo:focus {
  outline: none;
}
.get-demo svg path.line-code{
  opacity: 0;
  transform: translateX(-8px);
   transition: all 0.1s ease-in-out;
}
.get-demo svg path.arrow-code{
  transform: translateX(-8px);
   transition: all 0.1s ease-in-out;
}
.get-demo:hover svg path.arrow-code{
  transform: translateX(0);
}
.get-demo:hover svg path.line-code{
  opacity: 1;
  transform: translateX(0);
}
.get-demo:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.get-demo:hover .icon, .get-demo:focus .icon {
  opacity: 1;
  transform: translateX(0);
}

.get-demo .icon path{
  opacity: 0;
  transform: translateX(-1rem);
}
.foot-box-sec{
  background-color: var(--bg-footer);
  position: relative;
}
.foot-box-sec:before {
    content: "";
    background-image: radial-gradient(#7c7c7c 1px,transparent 1px);
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    opacity: .3;
}
.last-foot-menu-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding-top: 20px;
    border-top: solid 1px #e5e7eb;
    margin-bottom: 30px;
}
ul.footer-menu{
  display: flex;
  align-items: center;
  gap: 16px;
}
ul.footer-menu li a{
  font-size: 14px;
  line-height: 20px;
  color: #4b5563 !important; 
  transition: color 0.3s ease; /* smooth color transition on hover */
}
ul.footer-menu li a:hover{
  color: #1F2937 !important;
}
.social-menu{
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0;
}
.social-menu li a{
   display: inline-block;       /* inline-block layout */
  color: #4b5563 !important;              /* gray-500 text color */
  transition: color 0.3s ease; /* smooth color change on hover */
}
.social-menu li a:hover{
  color: #1F2937;
}
.social-menu li a svg{
  width: 16px;
  height: 16px;
}
.social-share-copy{
  display: inline-block;
  color: #6B7280;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
.social-share-copy:hover{
  color: #1F2937;
}
.social-share-copy svg{
  width: 16px;
  height: 16px;
}
.footer-last{
  margin-top: 50px;
}
.footer-top-wraper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}
.footer-logo a{
  display: inline-block;
  font-size: 0;
  line-height: 0;
}
.footer-logo img{
  width: 100%;
  height: auto;
  max-width: 128px;
}
.footer-logo {
    font-size: 0;
    line-height: 0;
}
.footer-description{
  margin-top: 12px;
  font-size: 14px;
  --tw-text-opacity: 1 !important;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1)) !important;
}

.footer-menu-title {
  margin: 0;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #111827 !important;
}
.footer-main-menu{
  margin-top: 12px;
}
.footer-main-menu ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-main-menu ul li{
  line-height: 1;
}
.footer-main-menu ul li + li{
  margin-top: 12px;
}
.footer-main-menu ul li a{
  font-size: 14px;
  color: #4b5563 !important;
  line-height: 20px;
}

.footer-main-menu ul li a:hover{
  color: #1f2937 !important;
}
.breadcrumb ol{
  align-items: flex-start;
}
.box svg{
  color: #1c54e3;
}
.wrapper .feedspace-embed .feedspace-element-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
section.widget-box {
    margin-top: 60px;
}
.single-post section.widget-box{
  margin-top: 0 !important;
}
@media (max-width:1399px){
  .info-banner-sec{
    padding-top: 70px;
  }
}
@media (max-width:767px){
  section.widget-box {
    margin-top: 40px;
}
  .footer-top-wraper{
    margin-top: 40px;
  }
  .footer-last {
      margin-top: 30px;
      font-size: 14px;
  }
  .footer-top-wraper{
    margin-bottom: 30px;
  }
  .last-foot-menu-wrap{
    margin-top: 40px;
  }
  .footer-description{
    font-size: 12px;
  }
}
@media (max-width:639px){
  .last-foot-menu-wrap{
    flex-direction: column;
    margin-top: 20px;
  }
  .footer-top-wraper{
    margin-bottom: 25px;
  }
}
@media (max-width:479px){
  .footer-top-wraper{
    flex-direction: column;
  }
}
@media (max-width:991px){
  .footer-description.footer-short-description{
    font-size: 12px;
    max-width: 420px;
  }
}
@media (max-width:767px){
  .footer-description.footer-short-description{
    max-width: 330px;
  }
}

@media (max-width:639px){
  .footer-top-wraper{
    flex-direction: column;
  }
  .footer-description.footer-short-description{
    max-width: 100%;
    margin-top: 15px;
  }
  .footer-top-right {
      margin-top: 25px;
  }

}
section.infomation-banner{
  margin-top: 80px;
  text-align: center;
}
.section-info-box {
    margin-bottom: 40px;
}
 .info-banner-alert {
            padding: 1rem 1.5rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(89deg, #BEDCFF 0%, #DBEBFE 100%);
            color: #1f2937;
            border-radius: 10px;
            margin: 0 auto;
            display: inline-flex;
        }

        .info-banner-alert {
            background: var(--bg-alert);
            color: var(--text-primary);
        }

        .info-banner-alert h4 {
            font-weight: 500;
            color: var(--text-primary);
            margin: 0;
        }


        .info-banner-alert .text span {
            font-weight: 500;
            color: var(--color-blue-light);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .info-banner-alert .text span:hover {
            color: var(--text-primary);
        }
.search-box {
    margin-top: 20px;
}
.article-main p:empty{
  display: none;
}
@media (max-width:767px){
  .section-info-box {
      margin-bottom: 30px;
  }
}

/* Text Primary Color - Match reference design */
.text-primary {
    --tw-text-opacity: 1;
    color: rgb(28 84 227 / var(--tw-text-opacity));
}

.text-white {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

.article-main .blog-content p {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: var(--text-primary);
}

.blog-content blockquote {
  background-color: #eff6ff; /* bg-blue-50 */
  border-left-width: 4px; /* border-s-4 */
  border-left-color: #3b82f6; /* border-blue-500 */
  padding: 1rem; /* p-4 */
  margin-top: 1.75rem;
}

.blog-content blockquote a.fs-blog-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border-width: 1px;
  border-color: transparent;
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  text-decoration: none;
  margin-top: .5rem;
}

.blog-content blockquote a.fs-blog-btn:hover,
.blog-content blockquote a.fs-blog-btn:focus,
.blog-content blockquote a.fs-blog-btn:active {
  text-decoration: none;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark .blog-content blockquote {
  background-color: rgba(153, 27, 27, 0.3); /* dark:bg-red-800/30 */
}

.blog-content blockquote p {
  margin-top: 0.5rem !important;
}

.blog-content figure {
  margin: auto; /* m-auto */
  display: flex; /* flex */
  justify-content: center; /* justify-center */
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.blog-content figure + p {
  margin-top: 1.5rem !important;
}

.blog-content figure img {
  width: 100%; /* w-3/4 */
  object-fit: cover; /* object-cover */
  border-radius: 0.75rem; /* rounded-xl */
  display: block;/
}



.preferred-source a {
  text-decoration: none !important;
  color: rgb(31 41 55 / var(--tw-text-opacity)) !important;
}

/* --------------------------------------------------------------------------
   Header Navigation Styles & Behavior
--------------------------------------------------------------------------- */

/* Sticky Header with Border & Background */

/* Dropdown Arrow Rotation */


/* Navigation Links Hover States */

/* Button Styles */


.header-btn-sm, .article-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn:not(.btn-white) {
  background-color: #2563eb; /* blue-600 */
  color: #ffffff !important;
}

.btn:not(.btn-white):hover {
  background-color: #1d4ed8; /* blue-700 */
}

.btn-white {
  background-color: #ffffff;
  border-color: #e5e7eb; /* gray-200 */
  color: #1f2937 !important; /* gray-800 */
}

.btn-white:hover {
  background-color: #f9fafb; /* gray-50 */
}

/* Dark Mode Support for Navigation */
.dark .hs-dropdown-toggle,
.dark a[class*="p-2"] {
  color: #e5e7eb; /* neutral-200 */
}

.dark .hs-dropdown-toggle:hover,
.dark a[class*="p-2"]:hover {
  background-color: #404040; /* neutral-700 */
}

.dark .hs-dropdown-menu {
  background-color: #262626; /* neutral-800 */
}

.dark .hs-dropdown-menu a:hover {
  background-color: #404040; /* neutral-700 */
}
