@charset "UTF-8";
img {
  -o-object-fit: cover;
     object-fit: cover;
}

i.bi-arrow-right {
  color: var(--dark-blue);
  transition: all 0.3s;
}

.insight_first_grid {
  display: grid;
  grid-template-columns: 720px 1fr;
  border-radius: 0 30px 0 30px;
  border: 1px solid var(--ag_neovo_clam_blue);
  transition: box-shadow 0.3s ease;
}
.insight_first_grid img {
  transition: transform 0.3s ease;
}
@media (min-width: 990px) {
  .insight_first_grid:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .insight_first_grid:hover img {
    transform: scale(1.05);
  }
}
@media (min-width: 990px) {
  .insight_first_grid a:hover h3 {
    text-decoration: underline;
  }
  .insight_first_grid a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}
.insight_first_grid_img {
  width: 720px;
  border-radius: 0 0 0 30px;
}
.insight_first_grid_content {
  border-radius: 0 30px 0 0;
}
.insight_first_grid_content h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.insight_first_grid_content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post_list_nav {
  background-color: var(--light-blue);
}
.post_list_nav .post_list_nav_inner {
  padding: 40px 0;
}
.post_list_nav .search_form {
  max-width: 400px;
}

.cat_nav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.cat_nav li {
  list-style-type: none;
  padding: 8px 40px;
  color: var(--dark-blue);
  border-radius: 10px 10px 0 0;
}
.cat_nav li.active {
  background-color: white;
}

.card_tag li,
.tag_group li {
  list-style-type: none;
}
.card_tag li a,
.tag_group li a {
  display: inline-block;
  border-radius: 99px;
}

.card_tag {
  gap: 8px;
}
.card_tag li a {
  padding: 4px 24px;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  transition: all 0.3s;
}
.card_tag li a:hover {
  background-color: var(--dark-blue);
  color: white;
}

.more_btn {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  color: var(--dark-blue);
  cursor: pointer;
  border: 1px solid var(--dark-blue);
  transition: all 0.3s;
}
.more_btn:hover {
  background-color: var(--dark-blue);
  color: white;
}

.tag_group ul {
  height: 52px;
}
.tag_group li {
  margin-right: 25px;
}
.tag_group li a {
  padding: 8px 40px;
  color: white;
  border: 1px solid var(--ag_neovo_orange);
  background-color: var(--ag_neovo_orange);
  transition: all 0.3s;
}
.tag_group li a:hover {
  background-color: transparent;
  color: var(--ag_neovo_orange);
}

.blog_card, .blog_card_l, .blog_card_m {
  border: 1px solid var(--ag_neovo_clam_blue);
  transition: box-shadow 0.3s ease;
}
.blog_card img, .blog_card_l img, .blog_card_m img {
  transition: transform 0.3s ease;
}
@media (min-width: 990px) {
  .blog_card:hover, .blog_card_l:hover, .blog_card_m:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .blog_card:hover img, .blog_card_l:hover img, .blog_card_m:hover img {
    transform: scale(1.05);
  }
}
@media (min-width: 990px) {
  .blog_card a:hover h3, .blog_card_l a:hover h3, .blog_card_m a:hover h3 {
    text-decoration: underline;
  }
  .blog_card a:hover i, .blog_card_l a:hover i, .blog_card_m a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}
.blog_card p, .blog_card_l p, .blog_card_m p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_card h3, .blog_card_l h3, .blog_card_m h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_card_img {
  border-radius: 20px;
}
.blog_card_m {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ag_neovo_clam_blue);
}
.blog_card_m h3 {
  height: 64px;
}
.blog_card_m_img {
  height: 230px;
}
.blog_card_l {
  border-radius: 0 30px 0 30px;
}
.blog_card_l_date {
  color: rgba(28, 28, 28, 0.5);
  margin-top: -10px;
}
.blog_card_l_img {
  height: 350px;
  border-radius: 0 0 30px 30px;
}

@media (max-width: 992px) {
  .blog_card_l_date {
    margin-top: 10px;
  }
}
.post_carousel .glide__arrows {
  display: flex;
  justify-content: space-between;
  top: 20%;
  position: absolute;
  height: 1px;
  width: calc(100% + 80px);
  left: -40px;
}
.post_carousel .glide__arrows .prev_btn,
.post_carousel .glide__arrows .next_btn {
  opacity: 0.6;
  background-color: var(--gray-3);
  color: white;
  border-radius: 10px;
  width: 30px !important;
  height: 120px;
  border: none;
}
.post_carousel .glide__dots {
  justify-content: center;
  display: flex;
  margin-top: 50px;
  gap: 10px;
}
.post_carousel .glide__dots .dots {
  width: 10px !important;
  height: 10px;
  border-radius: 99px;
  background-color: var(--gray-3);
  background-color: white;
  border: none;
}
.post_carousel .glide__dots .dots.glide__bullet--active {
  background-color: var(--dark-blue);
}
.post_carousel .carousel_card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-column-gap: 20px;
}
.post_carousel .carousel_card_img {
  border-radius: 20px;
  overflow: hidden;
}
.post_carousel .carousel_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.post_carousel .carousel_card .card_tag_group li a,
.post_carousel .carousel_card .card_tag_group .more_btn {
  border-color: white;
  color: white;
}
.post_carousel .carousel_card .card_tag_group li a:hover,
.post_carousel .carousel_card .card_tag_group .more_btn:hover {
  background-color: white;
  color: var(--ag_neovo_steel);
}
.post_carousel .carousel_card .card_tag_group li a:hover i.bi-three-dots,
.post_carousel .carousel_card .card_tag_group li a:hover i.bi-x-lg,
.post_carousel .carousel_card .card_tag_group .more_btn:hover i.bi-three-dots,
.post_carousel .carousel_card .card_tag_group .more_btn:hover i.bi-x-lg {
  color: var(--ag_neovo_steel);
}
.post_carousel .carousel_card h3,
.post_carousel .carousel_card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post_carousel .carousel_card i {
  transform: translateX(-10px);
  color: white;
}
@media (min-width: 990px) {
  .post_carousel .carousel_card a:hover h3 {
    text-decoration: underline;
  }
  .post_carousel .carousel_card a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}
.post_carousel .carousel_card a:hover i {
  transform: translateX(0);
}

.post_row:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ag_neovo_clam_blue);
}
.post_row h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post_row h3.cat_footer_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 60px;
}
.post_row_content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post_row_date {
  color: rgba(28, 28, 28, 0.5);
  margin-top: -10px;
}
@media (min-width: 990px) {
  .post_row a:hover h3 {
    text-decoration: underline;
  }
  .post_row a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}

@media (max-width: 992px) {
  .post_row_date {
    margin-top: 10px;
  }
}
.nav-tabs {
  border-color: var(--dark-blue);
  gap: 20px;
}
.nav-tabs .nav-link {
  color: var(--dark-blue);
  padding: 8px 40px;
  border-radius: 10px 10px 0 0;
}
.nav-tabs .nav-link.active {
  color: var(--dark-blue);
  border-color: var(--dark-blue) var(--dark-blue) white var(--dark-blue);
}
.nav-tabs .nav-link:focus:not(.active), .nav-tabs .nav-link:hover:not(.active) {
  border-color: transparent;
}
.nav-tabs.search_nav_tab {
  border-color: transparent;
}
.nav-tabs.search_nav_tab .nav-link {
  color: white;
}
.nav-tabs.search_nav_tab .nav-link.active {
  color: var(--ag_neovo_steel);
  border-color: transparent;
}

.tag_header_bottom {
  transform: translateY(-1px);
  border-bottom: 1px solid var(--dark-blue);
}

.tag_search_post_row {
  border: 1px solid var(--ag_neovo_clam_blue);
  transition: box-shadow 0.3s ease;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 520px 1fr;
}
.tag_search_post_row img {
  transition: transform 0.3s ease;
}
@media (min-width: 990px) {
  .tag_search_post_row:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .tag_search_post_row:hover img {
    transform: scale(1.05);
  }
}
@media (min-width: 990px) {
  .tag_search_post_row a:hover h3 {
    text-decoration: underline;
  }
  .tag_search_post_row a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}
.tag_search_post_row h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag_search_post_row p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag_search_post_row_img {
  overflow: hidden;
  border-radius: 20px;
}
.tag_search_post_row_img img {
  height: 100%;
}
.tag_search_post_row_content {
  padding: 40px;
}

.post_cat_footer_list_container {
  padding: 120px 0;
}

.title_news, .title_case, .title_insight {
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.title_news {
  border-bottom: 5px solid var(--ag_neovo_orange);
}
.title_case {
  border-bottom: 5px solid white;
}
.title_insight {
  border-bottom: 5px solid white;
}

.post_row_group_case .post_row, .post_row_group_insight .post_row {
  color: white;
}
.post_row_group_insight .card_tag_group .card_tag li a,
.post_row_group_insight .more_btn {
  color: white;
  border-color: white;
}
.post_row_group_insight .card_tag_group .card_tag li a:hover,
.post_row_group_insight .more_btn:hover {
  background-color: white;
  color: var(--ag_neovo_steel);
}
.post_row_group_insight .bi-arrow-right {
  color: white;
}
.post_row_group_news .card_tag li a,
.post_row_group_news .card_tag .more_btn {
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
}
.post_row_group_news .card_tag li a:hover,
.post_row_group_news .card_tag .more_btn:hover {
  color: white;
}

.a_underline {
  text-decoration: underline;
}

.post_cat_footer_list_item_0 {
  padding-right: 80px;
}
.post_cat_footer_list_item_1 {
  padding-left: 80px;
}

.more_post_container {
  margin-bottom: 200px;
}

.subscribe_container {
  padding: 120px 0;
}
.subscribe_btn {
  border-radius: 30px 0 30px 0;
  max-width: 640px;
  height: 200px;
  border: 1px solid var(--ag_neovo_clam_blue);
  transition: box-shadow 0.3s ease;
}
.subscribe_btn img {
  transition: transform 0.3s ease;
}
@media (min-width: 990px) {
  .subscribe_btn:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .subscribe_btn:hover img {
    transform: scale(1.05);
  }
}
@media (min-width: 990px) {
  .subscribe_btn a:hover h3 {
    text-decoration: underline;
  }
  .subscribe_btn a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}
.subscribe_btn i.bi-arrow-right {
  color: var(--ag_neovo_orange);
}
.subscribe_btn .subscribe_text {
  transition: all 0.3s;
}
.subscribe_btn:hover .subscribe_text {
  transition: all 0.3s;
  color: var(--ag_neovo_orange);
  transform: translateX(10px);
}

.case_cat_bar li {
  list-style-type: none;
}
.case_cat_bar li:not(.current-cat):hover a {
  background: rgba(255, 140, 0, 0.08);
}
.case_cat_bar a {
  display: inline-block;
  color: var(--ag_neovo_orange);
  padding: 12px 40px;
  font-size: 15px;
  line-height: 26px;
  border-radius: 360px;
}
.case_cat_bar .current-cat {
  position: relative;
}
.case_cat_bar .current-cat:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--ag_neovo_orange);
  border-radius: 10px 10px 0 0;
}

.post_ajax_loading .loadingio_spinner {
  width: 23px;
  height: 23px;
  margin: 8px -10px;
}
.post_ajax_loading .loading_round {
  transform: translateZ(0) scale(0.4);
}

.toc-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--ag_neovo_clam_blue);
}
.toc-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
}
.toc-list::-webkit-scrollbar {
  width: 8px;
}
.toc-list::-webkit-scrollbar-thumb {
  background-color: var(--light-blue);
  border-radius: 10px;
}
.toc-item {
  list-style-type: none;
  color: var(--gray-3);
}
.toc-item a:hover {
  text-decoration: underline;
}
.toc-item a.active {
  font-weight: 500;
  color: var(--dark-blue);
  position: relative;
}
.toc-item a.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 3px;
  height: 100%;
  background-color: var(--dark-blue);
}

.related_read_container {
  padding: 40px;
  border-radius: 20px;
  background-color: var(--light-blue);
}
.related_read_container ul {
  padding: 0;
  margin: 0;
}
.related_read_container li {
  list-style-type: none;
  line-height: 42px;
}
.related_read_container li a {
  color: var(--ag_neovo_orange);
  text-decoration: underline;
}

.page_nav_btns_item {
  padding: 12px 40px;
  border-radius: 10px;
  border: 1px solid var(--dark-blue);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
}
.page_nav_btns_item a {
  display: flex;
  align-items: center;
}
.page_nav_btns_item:hover {
  color: var(--dark-blue);
}
.page_nav_btns_item.back_to_article_list_btn {
  padding: 12px 65px;
  border-color: var(--ag_neovo_orange);
  color: var(--ag_neovo_orange);
}

.insight_header {
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  background-image: url("../images/blog/blog_featuredimg_bg.png"), url("../images/blog/blog_featuredimg_bg.png");
}
.insight_header .blog_header_content {
  max-width: 800px;
}
.insight_header .blog_header_img {
  overflow: hidden;
  border-radius: 30px;
  height: 450px;
}
.insight_header .blog_header_img img {
  height: 100%;
}

.case_header .blog_header_tags_title_container {
  max-width: 800px;
  position: relative;
}
.case_header .blog_header_tags_title_container:after {
  content: " ";
  width: 800px;
  height: 450px;
  transform: translateY(45px);
  position: absolute;
  z-index: -1;
  background-color: var(--light-blue);
  border-radius: 0px 30px 30px 30px;
}
.case_header .blog_header_img {
  overflow: hidden;
  border-radius: 30px 30px 0 30px;
  height: 450px;
  max-width: 800px;
}
.case_header .blog_header_img img {
  height: 100%;
}
.case_header .introduction_container {
  max-width: 650px;
}

.news_header .blog_header_img {
  border-radius: 0 30px 0 30px;
  overflow: hidden;
}
.news_header .introduction_container_bg {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--light-blue);
}
.news_header .introduction_container:before, .news_header .introduction_container:after {
  color: white;
}
.news_header .introduction_container:before {
  font-size: 165px;
  top: -165px;
  left: -100px;
}
.news_header .introduction_container:after {
  font-size: 100px;
  bottom: -35px;
  right: -110px;
}

.content_block_item_introduction {
  margin: 150px auto;
}

.introduction_container,
.content_block_item_introduction {
  position: relative;
}
.introduction_container:before, .introduction_container:after,
.content_block_item_introduction:before,
.content_block_item_introduction:after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  position: absolute;
  color: var(--ag_neovo_orange);
}
.introduction_container:before,
.content_block_item_introduction:before {
  content: "\f6b0";
}
.introduction_container:after,
.content_block_item_introduction:after {
  content: "\f6b0";
  transform: rotate(180deg);
}

.introduction_container:before {
  font-size: 200px;
  top: -60px;
  left: -210px;
}
.introduction_container:after {
  font-size: 90px;
  bottom: 20px;
  right: -110px;
}

.introduction_name,
.content_block_item_introduction_name {
  text-align: right;
  color: var(--gray-3);
  font-style: italic;
  margin-top: 20px;
}
.introduction_name:before,
.content_block_item_introduction_name:before {
  content: "—";
  margin-right: 10px;
}

.content_block_item_text_img_img, .content_block_item_summary_img {
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
}
.content_block_item_summary {
  border-radius: 30px;
  background-color: var(--light-blue);
}
.content_block_item_introduction {
  padding: 40px 0;
  border-top: 1px solid var(--ag_neovo_orange);
  border-bottom: 1px solid var(--ag_neovo_orange);
}
.content_block_item_introduction:before {
  font-size: 90px;
  top: -85px;
  left: -90px;
}
.content_block_item_introduction:after {
  font-size: 55px;
  bottom: -50px;
  right: -65px;
}

blockquote.wp-block-quote {
  position: relative;
  padding: 40px 0;
  margin: 80px auto;
  border-top: 1px solid var(--ag_neovo_orange);
  border-bottom: 1px solid var(--ag_neovo_orange);
}
blockquote.wp-block-quote:before, blockquote.wp-block-quote:after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  position: absolute;
  color: var(--ag_neovo_orange);
}
blockquote.wp-block-quote:before {
  content: "\f6b0";
  font-size: 90px;
  top: -85px;
  left: -90px;
}
blockquote.wp-block-quote:after {
  content: "\f6b0";
  transform: rotate(180deg);
  font-size: 55px;
  bottom: -50px;
  right: -65px;
}
blockquote.wp-block-quote cite {
  text-align: right;
  color: var(--gray-3);
  font-style: italic;
  margin-top: 20px;
}
blockquote.wp-block-quote cite:before {
  content: "—";
  margin-right: 10px;
}

.blog_content_toc {
  padding-right: 100px;
}
.blog_content_toc_wrapper {
  position: relative;
}
.blog_content_toc_wrapper .toc-level-3 {
  padding-left: 20px;
}
.blog_content_toc_wrapper .toc-level-4 {
  padding-left: 40px;
}
.blog_content_toc .toc-list {
  padding-left: 10px;
}

.case_toc_mt-180px {
  margin-top: -180px;
}

@media (max-width: 992px) {
  .post_list_nav .post_list_nav_inner {
    padding-bottom: 70px;
  }
  .post_list_nav .search_form {
    max-width: 100%;
  }
  .post_list_nav .cat_nav {
    width: 100%;
    justify-content: start;
    overflow-x: auto;
  }
  .post_list_nav .cat_nav li {
    padding: 4px 20px;
    flex-shrink: 0;
  }
  .insight_first_grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
    overflow: hidden;
  }
  .insight_first_grid_img {
    width: 100%;
  }
  .articulos_post_list,
  #post-container {
    gap: 20px;
  }
  .blog_card_l {
    border-radius: 20px;
  }
  .blog_card_l_img {
    height: 230px;
  }
  .blog_card_m {
    border: none;
    border-bottom: 1px solid var(--ag_neovo_clam_blue);
    display: flex;
    padding-bottom: 20px;
    border-radius: 0px;
  }
  .blog_card_m_img {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
  }
  .blog_card_m h3 {
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #post-container > div[class^=col-]:last-child .blog_card_m {
    border-bottom: none;
  }
  .moblie_col_active .blog_card_m {
    border-radius: 0 20px 0 20px;
    border: 1px solid var(--ag_neovo_clam_blue);
    display: block;
    overflow: hidden;
    padding: 0;
  }
  .moblie_col_active .blog_card_m_img {
    width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
  }
  .post_row_img {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .post_row_content h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .post_row_content h3.cat_footer_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: auto;
  }
  .card_tag li a {
    padding: 4px 16px;
  }
  .tag_group ul {
    height: auto;
  }
  .tag_group ul li {
    margin-bottom: 20px;
  }
  .post_carousel .glide__arrows {
    display: none;
  }
  .post_carousel .carousel_card_img {
    max-height: 160px;
  }
  .post_carousel .carousel_card_img img {
    width: 100%;
  }
  .post_cat_footer_list_container {
    background: inherit;
    padding: 0;
  }
  .post_cat_footer_list_item_0, .post_cat_footer_list_item_1 {
    padding: 80px 40px;
  }
  .post_cat_footer_list_container .post_row_group {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ag_neovo_clam_blue);
  }
  .more_post_container {
    margin-bottom: 120px;
  }
  .subscribe_container {
    padding: 80px 20px;
  }
  .insight_header {
    background-size: 160px 160px, 240px 240px;
  }
  .insight_header .blog_header_img {
    height: 190px;
  }
  .blog_content_toc {
    padding-right: 15px;
  }
  .blog_content_toc .sticky-toc {
    position: fixed;
    z-index: 9;
    left: 0;
    width: 100%;
  }
  .blog_content_toc .sticky-toc .toc-container {
    border-radius: 0px;
    border-width: 0 0 1px 0;
  }
  .blog_content_toc .toc-list {
    max-height: 300px;
  }
  .blog_content_toc .toc_toggle_btn {
    transition-duration: 0.3s;
  }
  .blog_content_toc .toc_toggle_btn.active {
    transform: rotate(180deg);
  }
  blockquote.wp-block-quote,
  .content_block_item_introduction {
    max-width: 230px;
    margin: 70px auto;
  }
  blockquote.wp-block-quote:before,
  .content_block_item_introduction:before {
    font-size: 65px;
    top: -65px;
    left: -70px;
  }
  blockquote.wp-block-quote:after,
  .content_block_item_introduction:after {
    font-size: 50px;
    bottom: -50px;
    right: -55px;
  }
  .related_read_container {
    padding: 20px;
  }
  .page_nav_btns_item {
    padding: 12px 20px;
  }
  .page_nav_btns_item.back_to_article_list_btn {
    padding: 12px 40px;
  }
  .case_header .blog_header_tags_title_container:after {
    background-color: var(--light-blue);
    border-radius: 0px 30px 30px 30px;
    width: 280px;
    height: 480px;
    top: -80px;
  }
  .case_header .blog_header_img {
    height: 190px;
  }
  .case_header .introduction_container,
  .introduction_container {
    max-width: 270px;
    margin: 50px auto;
  }
  .news_header .introduction_container:before,
  .introduction_container:before {
    font-size: 70px;
    top: -30px;
    left: -65px;
  }
  .news_header .introduction_container:after,
  .introduction_container:after {
    font-size: 50px;
    bottom: -10px;
    right: -50px;
  }
  .case_toc_mt-180px {
    margin-top: 0px;
  }
  .nav-tabs {
    gap: 0px;
  }
  .nav-tabs .nav-link {
    padding: 8px 25px;
  }
  .tag_search_post_row {
    border: 1px solid var(--ag_neovo_clam_blue);
    transition: box-shadow 0.3s ease;
    border-radius: 0px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-width: 0 0 1px 0;
    grid-template-columns: 120px 1fr;
  }
  .tag_search_post_row img {
    transition: transform 0.3s ease;
  }
}
@media (max-width: 992px) and (min-width: 990px) {
  .tag_search_post_row:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .tag_search_post_row:hover img {
    transform: scale(1.05);
  }
}
@media (max-width: 992px) and (min-width: 990px) {
  .tag_search_post_row a:hover h3 {
    text-decoration: underline;
  }
  .tag_search_post_row a:hover i {
    color: var(--ag_neovo_orange);
    transform: translateX(10px);
  }
}
@media (max-width: 992px) {
  .tag_search_post_row:last-child {
    border-width: 0px;
  }
  .tag_search_post_row h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tag_search_post_row p {
    display: none;
  }
  .tag_search_post_row_img {
    border-radius: 10px;
    align-self: baseline;
  }
  .tag_search_post_row_img img {
    height: auto;
  }
  .tag_search_post_row_content {
    padding: 0 0 0 20px;
  }
  .tag_search_post_row_content > a {
    display: flex;
  }
}
.insight_hr {
  margin: 120px 0 0 0;
}
.insight_hr hr {
  opacity: 0;
}

@media (max-width: 992px) {
  .insight_hr {
    margin: 20px 0;
  }
  .insight_hr hr {
    opacity: 1;
  }
}/*# sourceMappingURL=blog.css.map */