.blog_banner .head{
  padding-top: 7rem;
}

.blog_sticky {
    position: relative;
    padding: 13rem 0 14rem;
}
.blog_sticky .blog_sticky_swiper {
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}
.blog_sticky .blog_sticky_swiper .swiper-pagination {
    bottom: 0;
}
.blog_sticky .blog_sticky_swiper .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #d9d9d9;
    opacity: 1;
    margin: 0 0.5rem;
    transition: background 0.3s ease, width 0.3s ease;
}
.blog_sticky .blog_sticky_swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 2.4rem;
    border-radius: 0.5rem;
}
.blog_sticky .card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1rem 3rem rgba(226, 231, 232, 0.55);
}
.blog_sticky .card:hover img{
  transform: scale(1.05);
}
.blog_sticky .card_img {
    width: 47.36%;
    position: relative;
    flex-shrink: 0;
}
.blog_sticky .card_img .img_wrap {
    width: 100%;
    aspect-ratio: 680/500;
    overflow: hidden;
}
.blog_sticky .card_img .img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.blog_sticky .card_tag {
    position: absolute;
    top: 1.4rem;
    left: 1.6rem;
    background: var(--primary);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    padding: 0.6rem 1.2rem;
    letter-spacing: 0.09em;
    clip-path: polygon(0 0, calc(100% - 0.6rem) 0, 100% 0.6rem, 100% 100%, 0.6rem 100%, 0 calc(100% - 0.6rem));
}
.blog_sticky .card_info {
  width: 52.77%;
  padding: 9.5rem 10rem;
  
}
.blog_sticky .date {
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.blog_sticky strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--title);
  line-height: 4rem;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  max-width: 42rem;
}
.blog_sticky .desc {
    color: var(--text);
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 5rem;
    max-width: 59rem;
}
.blog_sticky .btn_learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    width: 16.8rem;
    height: 4.6rem;
    background-color: var(--title);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0 1rem 0 1rem;
    transition: background-color 0.3s ease;
}
.blog_sticky .btn_learn:hover {
    background-color: var(--primary);
}
.blog_sticky .btn_learn svg {
    width: 1.4rem;
    height: auto;
    stroke: currentColor;
    fill: none;
    stroke-miterlimit: 3;
    stroke-width: 1.5;
}


.blog_main {
    background-color: #f7f7f7;
    padding: 3.5rem 0 22rem;
    font-family: 'Outfit', sans-serif;
  }
  .blog_main .tabs {
    justify-content: center;
    gap: 2rem;
    margin-bottom: 7rem;
  }
  .blog_main .tabs .tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4.5rem;
    line-height: 4.5rem;
    padding: 0 3.2rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--title);
    background: #e2e8f0;
    border: 0;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 1.1rem) 0, 100% 1.1rem, 100% 100%, 1.1rem 100%, 0 calc(100% - 1.1rem));
    transition: all 0.3s !important;
  }
  .blog_main .tabs .tab::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: #fff;
    clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
    z-index: -1;
    transition: all 0.3s;
  }
  .blog_main .tabs .tab:hover,
  .blog_main .tabs .tab.active {
    background: var(--primary);
    color: #fff;
  }
  .blog_main .tabs .tab:hover::before,
  .blog_main .tabs .tab.active::before {
    background: var(--primary);
  }
  .blog_main .head {
    margin-bottom: 5.8rem;
  }
  .blog_main .head .subtitle {
    margin-bottom: 0.2rem;
  }
  .blog_main .head h2 {
    
  }
  .blog_main .grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 4rem 3.5rem;
  }
  .blog_main .card {
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .blog_main .card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    border-color: #d1d9e6;
  }
  .blog_main .card .img_wrap {
    position: relative;
    aspect-ratio: 456/264;
    overflow: hidden;
  }
  .blog_main .card .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .blog_main .card:hover .img_wrap img {
    transform: scale(1.05);
  }
  .blog_main .card .tag {
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
    background: var(--primary);
    color: #fff;
    font-weight: 300;
    font-size: 1.4rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    clip-path: polygon(0 0, calc(100% - 0.8rem) 0, 100% 0.8rem, 100% 100%, 0.8rem 100%, 0 calc(100% - 0.8rem));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  .blog_main .card .info {
    padding: 4rem 2.9rem 3rem;
  }
  .blog_main .card .date {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  .blog_main .card strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--title);
    margin-bottom: 2rem;
    text-transform: uppercase;
    max-width: 26.3rem;
  }
  .blog_main .card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 3.5rem;
  }
  .blog_main .card .learn_more {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary);
    transition: opacity 0.3s;
  }
  .blog_main .card .learn_more svg {
    width: 1.4rem;
    height: 1.4rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    margin-left: 0.8rem;
    transition: transform 0.3s;
  }
  .blog_main .card:hover .learn_more svg {
    transform: translateX(0.4rem);
  }
  .blog_main .btn_wrap {
    margin-top: 6rem;
  }



@media screen and (min-width: 769px) and (max-width: 1220px) {
  .blog_sticky .card_img .img_wrap{
    
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
  }
  .blog_sticky .card_img .img_wrap{
    min-height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .blog_sticky{
    padding: 40px 0 0;
  }
  .blog_sticky .card{
    flex-flow: wrap;
  }
  .blog_sticky .card_img{
    width: 100%;
  }
  .blog_sticky .card_info{
    width: 100%;
  }
  .blog_sticky .card_tag{
    font-size: 12px;
  }
  .blog_sticky .card_info{
    padding: 20px;
  }
  .blog_sticky .date{
    font-size: 13px;
    margin-bottom: 10px;
  }
  .blog_sticky strong{
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .blog_sticky .desc{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .blog_main .tabs .tab{
    font-size: 14px;
    line-height: 35px;
    padding: 0 20px;
    height: 35px;
    white-space: nowrap;
  }
  .blog_main .tabs{
    flex-flow: unset;
    overflow-y: hidden;
    justify-content: left;
    gap: 15px;
    margin-bottom: 30px;
  }
  .blog_main .head{
    margin-bottom: 20px;
  }
  .blog_main .grid{
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
  }
  .blog_main .card .img_wrap{
    aspect-ratio: 1/0.8;
  }
  .blog_main .card .tag{
    top: 10px;
    left: 10px;
    font-size: 13px;
    letter-spacing: 0;
    height: 22px;
  }
  .blog_main .card .info{
    padding: 15px;
  }
  .blog_main .card .date{
    font-size: 13px;
  }
  .blog_main .card strong{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .blog_main .card p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .blog_main .card .learn_more{
    font-size: 13px;
  }
  .blog_main .card .learn_more svg{
    width: 10px;
    height: 10px;
  }
  .blog_main .btn_wrap{
    margin-top: 30px;
  }
  .blog_main{
    padding-bottom: 50px;
  }
}

/* Load More - Loading Animation */
.blog_main .btn_wrap {
  position: relative;
  transition: all 0.3s ease;
}

.blog_main .btn_wrap.loading .load_more_post_ajax {
  opacity: 0;
  pointer-events: none;
}

.blog_main .btn_wrap .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #333;
  border-radius: 50%;
  animation: loadMoreSpin 0.7s linear infinite;
}

@keyframes loadMoreSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.blog_main .btn_wrap.loading {
  min-height: 60px;
}