@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* Core Brand Colors - PayDayPortal Theme */
  --background: #ffffff;
  --foreground: #404040;
  --dark-foreground: #0f0f0f;
  /* Navy Blue - Primary Brand Color */
  --primary: #1b407e;
  --primary-foreground: #ffffff;
  --primary-light: #2c4d85;
  /* Magenta Pink - Accent Color */
  --accent: #ff0080;
  --accent-foreground: #ffffff;
  --accent-light: #ff66b3;
  /* Secondary Colors */
  --secondary: #f4f7f9;
  --secondary-foreground: #474747;
  /* Card & Surface Colors */
  --card: #ffffff;
  --card-foreground: #1f293a;
  /* Muted Colors */
  --muted: #f7f7f7;
  --muted-foreground: #9e9e9e;
  /* Border & Input */
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #0f234d;
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #f30043, #181062);
  --gradient-cta: linear-gradient(90deg, #154185, #f30050);
  --gradient-footer: linear-gradient(180deg, #1a2d66, #0f1f4d);
  /* Success/Error */
  --success: #22c55e;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  /* Popover */
  --popover: #ffffff;
  --popover-foreground: #1f293a;
  --radius: 8px;
  /* 0.5rem = 8px */
}

.blog-page {
  /* Hero Section */
  /* font-family: "Montserrat"; */
  font-family: 'Roboto', sans-serif;
  background: #f0f5ff;
  /* Card Styles */
  /* Section Styles */
  /* Flex Layouts */
  /* CTA Section */
  /* Topic Tags */
  /* Responsive */
}

.blog-page .pt-0 {
  padding-top: 0 !important;
}

.blog-page .pb-0 {
  padding-bottom: 0 !important;
}

.blog-page .mt-0 {
  margin-top: 0 !important;
}

.blog-page .mb-0 {
  margin-bottom: 0 !important;
}

.blog-page .mt-30 {
  margin-top: 30px !important;
}

.blog-page .hero-section {
  background-image: url(../images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -35px;
  padding: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-page .hero-section.bg-muted-section {
  background: transparent;
  /* border-top: 2px solid var(--muted-foreground); */
  border-bottom: 1px solid var(--muted-foreground);
  padding: 50px 0;
}

.blog-page .hero-title {
  color: var(--primary-foreground);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
}

.blog-page .hero-subtitle {
  color: var(--primary-foreground);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  opacity: 1;
  max-width: 640px;
  margin: 0 auto;
}

.blog-page .article-card {
  border-radius: var(--radius);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.blog-page .article-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.blog-page .article-image .image-text {
  position: absolute;
  z-index: 1;
  background: rgba(14, 57, 101, 0.7215686275);
  color: #ffffff;
  padding: 15px 5px;
  font-weight: 500;
  max-width: 85%;
  font-size: 18px;
  left: 0;
  line-height: 24px;
  top: 15px;
}

.blog-page .article-content {
  padding: 0 60px;
  flex: 1;
  /* display: flex; */
  flex-direction: column;
}

.blog-page .article-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 5px 28px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-page .article-title,
.blog-page .article-title a {
  font-size: 22px;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.3;
  margin: 0;
  text-decoration: none;
}

.blog-page .article-excerpt {
  color: var(--muted-foreground);
  font-size: 15.2px;
  margin-top: auto;
}

.blog-page .section {
  padding: 50px 0;
}

.blog-page .section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-foreground);
  position: relative;
}

.blog-page .section-title span {
  background: #f0f5ff;
  display: inline-block;
  padding: 0 50px 0 0;
  position: relative;
  z-index: 1;
}

.blog-page .section-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--dark-foreground);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.blog-page .articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.blog-page .articles-grid>* {
  flex: 1 1 300px;
  max-width: 670px;
}

.blog-page .cta-section {
  background: var(--gradient-cta);
  padding: 45px 0;
  text-align: center;
}

.blog-page .cta-title {
  color: var(--primary-foreground);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-page .cta-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1180px;
  margin: auto;
  margin-top: 50px;
}

.blog-page .cta-cards>* {
  flex: 1 1 300px;
  max-width: 100%;
}

.blog-page .cta-card {
  max-width: 540px;
  margin: auto;
  background: var(--card);
  padding: 40px 30px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-page .cta-card .btn-common {
  margin: auto;
  min-width: 200px;
  font-weight: 600;
  display: flex;
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 25px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}

.blog-page .cta-card .btn-common::after {
  font: normal normal normal 18px / 1 FontAwesome;
  margin-left: 15px;
  content: "\f192";
  display: inline-block;
}

.blog-page .cta-card .btn-common.pink {
  background-color: #f3004e;
}

.blog-page .cta-card h3 {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-foreground);
}

.blog-page .cta-card h3 span.pink {
  color: #f3004e;
}

.blog-page .cta-card h3 span.blue {
  color: #1b407e;
}

.blog-page .cta-card p {
  color: var(--dark-foreground);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-page .topics-container {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 16px;
  justify-content: space-evenly;
  padding-top: 20px;
  padding-bottom: 40px;
}

.blog-page .topic-tag {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Montserrat";
  text-align: center;
}

.blog-page .topic-tag.active {
  background: var(--primary);
  color: #ffffff;
}

.blog-page .topic-tag:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.blog-page .explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.blog-page .explore-grid>* {
  flex: 1 1 250px;
  max-width: 100%;
}

.blog-page .signup-section {
  padding: 0 0 64px;
}

.blog-page .signup-section .signup-container {
  position: relative;
  background: linear-gradient(90deg,
      rgba(23, 70, 133, 1) 0%,
      rgba(236, 21, 86, 1) 100%);
  background-image: url(../images/subscribe-bg.svg);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  padding: 18px;
  position: relative;
  text-align: center;
  border-radius: 57px;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.62);
}

.blog-page .signup-section .signup-container::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 60px;
  background-image: url(../images/email-1.svg);
  background-repeat: no-repeat;
  background-size: 136px 140px;
  height: 140px;
  width: 136px;
  z-index: -1;
}

.blog-page .signup-section .signup-container::after {
  content: "";
  position: absolute;
  right: 360px;
  top: -60px;
  background-image: url(../images/email-2.svg);
  background-repeat: no-repeat;
  background-size: 170px 173px;
  width: 170px;
  height: 174px;
  z-index: -1;
}

.blog-page .signup-section .signup-container .email-3 {
  position: absolute;
  left: -50px;
  width: 180px;
  top: -60px;
  z-index: -1;
}

.blog-page .signup-section .signup-container .signup-plane {
  width: 104px;
  height: 88px;
}

.blog-page .signup-section .signup-container .open-mail {
  position: absolute;
  width: 353px;
  height: 352px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.blog-page .signup-section .signup-container svg {
  width: 82px;
  height: 82px;
}

.blog-page .signup-container h2 {
  color: var(--primary-foreground);
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-page .btn-common {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  background-color: #f37821;
  color: var(--primary-foreground);
  transition: background 0.3s ease;
}

.blog-page .btn-common:hover {
  background-color: #1D3E7D;
}

.blog-page .btn-common.invert {
  background-color: var(--primary-foreground);
  color: var(--primary);
  padding: 6px 35px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 16px;
}

.blog-page .trending-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

.blog-page .trending-grid>*:first-of-type {
  flex: 1;
  max-width: 100%;
}

.blog-page .trending-grid>*:last-of-type {
  flex: 0 0 56%;
  max-width: 100%;
}

.blog-page .trending-section .article-image {
  min-height: 400px;
}

.blog-page .about-blog-section .about-blog-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 65px;
  justify-content: space-between;
}

.blog-page .about-blog-section .about-blog-inner img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.blog-page .about-blog-section .about-blog-inner h2,
.blog-page .about-blog-section .about-blog-inner h2 a {
  text-decoration: none;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-page .about-blog-section .about-blog-inner h2 a:hover {
  color: #1D3E7D !important;
}

.blog-page .about-blog-section .about-blog-inner p {
  font-size: 18px;
  color: var(--foreground);
}

.blog-page .about-blog-section .about-blog-inner>*:first-of-type {
  flex: 0 0 57%;
  max-width: 100%;
}

.blog-page .about-blog-section .about-blog-inner>*:last-of-type {
  flex: 1;
  max-width: 100%;
}

.blog-page .editor-section .article-title,
.blog-page .editor-section .article-title a {
  font-weight: 600;
  font-size: 24px;
}

.blog-page .editor-section .article-title a:hover {
  color: #1D3E7D;
}

/* .blog-page .editor-section .articles-grid {
  padding-top: 30px;
} */

.blog-page .editor-section .article-image {
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 0 8px rgb(0 0 0 / 11%);
  aspect-ratio: 16 / 10;
}

.blog-page .editor-section .article-content {
  padding: 0;
  padding-top: 30px;
}

.blog-page .editor-section .date-parent {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.blog-page .editor-section .date,
.blog-page .editor-section .article-badge {
  margin: 0 0 8px;
}

.blog-page .trending-section .article-title,
.blog-page .trending-section .article-title a {
  font-size: 30px;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 16px;
  margin-bottom: 0;
}

.blog-page .trending-section .article-title a:hover {
  color: #1D3E7D !important;
}

.blog-page .trending-section .article-excerpt {
  font-size: 19px;
  color: var(--foreground);
  margin-top: 20px;
}

.blog-page .trending-section .article-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.blog-page .immediate-payouts {
  padding: 50px 0 0;
  text-align: center;
}

.blog-page .immediate-payouts h3 {
  color: var(--primary-foreground);
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.blog-page .immediate-payouts p {
  color: var(--primary-foreground);
  font-size: 29px;
}

.blog-page .explore-section {
  background: #f0f5ff;
  padding: 50px 0;
  /* margin-top: 54px; */
  /* Fix for arrow visibility */
}

.blog-page .explore-section .section-title span {
  /* background: var(--muted); */
}

.all-blogs-main .blogs-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 50px;
}

.all-blogs-main .blogs-container .article-card {
  border-radius: var(--radius);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  /* max-width: 670px; */
}

.all-blogs-main .blogs-container .article-card .article-image {
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 0 8px rgb(0 0 0 / 11%);
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  position: relative;
}

.all-blogs-main .blogs-container .article-card .article-content {
  padding: 0;
  padding-top: 30px;
  flex: 1;
  display: flex !important;
}

.all-blogs-main .blogs-container .article-card .date-parent {
  display: flex !important;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.all-blogs-main .blogs-container .article-card .date-parent .date {
  margin: 0 0 8px;
}

.blog-page .explore-section .explore-slider .slick-list {
  margin: 0 -20px;
}

.blog-page .explore-section .explore-slider .slick-track {
  display: inline-flex;
}

.blog-page .explore-section .explore-slider .article-card {
  padding: 0 20px;
}

.blog-page .explore-section .explore-slider .article-card .box_main {
  padding: 0px;
  background: #fff;
  height: 100%;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.13);
  border-radius: 15px;
  overflow: hidden;
  margin: 8px 0;
}

.blog-page .explore-section .article-image {
  height: 218px;
  border-radius: 0;
  object-fit: cover;
}

.blog-page .explore-section .article-content {
  padding: 20px;
}

.blog-page .explore-section .article-card {
  box-shadow: none;
  border-radius: 0;
}

.blog-page .explore-section .slick-slide {
  display: flex;
  justify-content: center;
}

.blog-page .explore-section p {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-page .explore-section .read-more {
  background: #FFF url(../images/btn-arrow-top.png) no-repeat;
  background-size: 10px;
  background-position: right 16px center;
  padding: 8px 40px 8px 14px;
  font-weight: 700;
  border-radius: 30px;
  border: 1px solid #1D3E7D;
  color: #1D3E7D;
  font-size: 14px;
  height: 36px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
}

.blog-page .explore-section .read-more:hover {
  border: 1px solid #009542;
  background: #009542 url(../images/btn-arrow.png) no-repeat;
  background-size: 10px;
  background-position: right 16px center;
  color: #fff;
}

.blog-page .explore-section .slick-prev,
.blog-page .explore-section .slick-next,
.blog-page .latest-article-slider .slick-prev,
.blog-page .latest-article-slider .slick-next {
  position: absolute;
  z-index: 10;
  border-radius: 50%;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 40px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.blog-page .latest-article-slider .slick-prev,
.blog-page .latest-article-slider .slick-next {
  top: 50%;
}

.blog-page .explore-section .slick-prev::before,
.blog-page .explore-section .slick-next::before,
.blog-page .latest-article-slider .slick-prev::before,
.blog-page .latest-article-slider .slick-next::before {
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: 40px;
  color: var(--primary);
  font-size: 38px;
  opacity: 1;
  background-color: #fff;
  border-radius: 50%;
}

.blog-page .explore-section .slick-prev {
  left: -20px;
}

.blog-page .latest-article-slider .slick-prev {
  left: 0;
}

.blog-page .explore-section .slick-prev::before,
.blog-page .latest-article-slider .slick-prev::before {
  transform: rotate(180deg);
}

.blog-page .explore-section .slick-next {
  right: -20px;
}

.blog-page .latest-article-slider .slick-next {
  right: 0;
}

@media (max-width: 1240px) {

  .blog-page .explore-section .slick-prev,
  .blog-page .latest-article-slider .slick-prev {
    left: 0;
  }

  .blog-page .explore-section .slick-next,
  .blog-page .latest-article-slider .slick-next {
    right: 0;
  }
}

.blog-page .explore-section .explore-slider,
.blog-page .latest-article-slider {
  position: relative;
}

.blog-page .date {
  font-size: 16px !important;
  margin: 12px 0;
  color: var(--muted-foreground) !important;
  text-align: left;
}

.blog-page .container {
  max-width: 1340px;
}

.blog-page .topic-section {
  padding-bottom: 0px;
}

.blog-page .trending-section .trending-grid {
  gap: 30px;
}

.blog-page .search-bar {
  padding: 50px 20px 0;
}

.blog-page .search-wrapper {
  position: relative;
  max-width: 620px;
  margin: auto;
}

.blog-page .search-bar .dropdown {
  position: absolute;
  top: 52px;
  width: 100%;
  background: #f5f8ff;
  border: 1px solid #b2b2b2;
  border-radius: 10px;
  min-height: 250px;
  overflow-y: auto;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.blog-page .search-bar .dropdown.no-result-dropdown {
  min-height: 100px;
}

.blog-page .search-bar .dropdown li a {
  padding: 10px 24px;
  cursor: pointer;
  border-bottom: 1px solid #b2b2b2;
  font-size: 18px;
  line-height: 1.4;
  display: block;
  color: #404040;
  text-decoration: none;
}

.blog-page .search-bar .dropdown li a:hover,
.blog-page .search-bar .dropdown li a:focus {
  background: #e3ecff;
}

.blog-page .search-bar .no-result {
  color: rgb(86 86 86);
  padding: 25px;
  text-align: center;
  border: none !important;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.blog-page .search-bar input {
  width: 100%;
  max-width: 620px;
  margin: auto;
  display: block;
  border: 2px solid #b2b2b2;
  font-size: 18px;
  padding: 9px 50px;
  border-radius: 50px !important;
  transition: all 0.3s;
  background: #f0f5ff;
}

.blog-page .search-bar input:focus {
  border: 2px solid transparent;
  border-radius: 10px;

  background: linear-gradient(#f5f8ff, #f5f8ff) padding-box,
    linear-gradient(90deg, #154185, #f30050) border-box;
}

.blog-page .search-bar input::-moz-placeholder {
  font-family: "Montserrat";
  font-weight: 100;
  color: #b2b2b2;
}

.blog-page .search-bar input::placeholder {
  font-family: "Montserrat";
  font-weight: 100;
  color: #b2b2b2;
}

.blog-page .search-bar input:focus-visible {
  outline: none;
}

.blog-page.article-page {
  background-color: #f0f5ff;
}

.blog-page.article-page .section-title span {
  background: #f0f5ff;
}

.blog-page.article-page .hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 85px;
  justify-content: space-between;
}

.blog-page.article-page .hero-image-wrapper {
  /* padding-top: 33%; */
  position: relative;
  flex: 0 0 55%;
  display: flex;
}

.blog-page.article-page .hero-image-wrapper img {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: right;
}

.blog-page.article-page .hero-image {
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pc-show {
  display: block;
}

.pc-hide {
  display: none;
}

@media (max-width: 1024px) {
  .pc-show {
    display: none;
  }

  .pc-hide {
    display: block;
  }

  .blog-page.article-page .hero-image-wrapper img {
    height: auto;
  }

  .blog-page.article-page .hero-grid {
    gap: 25px;
  }
}

.blog-page.article-page .hero-text {
  flex: 1;
}

.blog-page.article-page .hero-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
  text-align: left;
}

.blog-page.article-page .hero-subtitle {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary);
  text-align: left;
}

.blog-page.article-page .hero-author {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.blog-page.article-page .author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-page.article-page .author-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--foreground);
}

.blog-page.article-page .author-meta {
  font-size: 18px;
  color: var(--secondary-foreground);
  font-weight: 100;
}

.blog-page.article-page .content-grid {
  display: flex;
  gap: 50px;
  margin: 50px 0;
}

.blog-page.article-page .article-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-page.article-page .article-main p {
  font-size: 18px;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 20px;
}

.blog-page.article-page .article-main p em {
  font-family: "Noto Serif", serif;
}

.blog-page.article-page .article-main h2 span {
  display: block;
  font-size: 20px;
  margin-top: 10px;
}

.blog-page.article-page .article-main p strong {
  font-weight: 600;
}

.blog-page.article-page .sidebar {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-page.article-page .sidebar h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000619;
}

.blog-page.article-page .share-article {
  padding: 0;
}

.blog-page.article-page .share-article h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* .blog-page.article-page .article-main-inner {
  padding-left: 12%;
} */

.blog-page.article-page .article-main-inner .article-section a.orange-btn.arrow,
.blog-page.article-page .article-main-inner .article-section a.green-btn.arrow {
  color: #fff;
  text-decoration: none;
}

.blog-page.article-page .article-main-inner .article-section .btn-group a {
  font-size: 18px;
  padding: 15px 58px 15px 25px;
  display: inline-flex;
  align-items: center;
}

.blog-page.article-page .article-main-inner .article-section a {
  color: #009542;
  font-weight: 600;
  text-decoration: underline;
}

.blog-page.article-page .article-main-inner .article-section a:hover {
  color: #1D3E7D;
}

/* .blog-page.article-page .article-main-inner-second {
  padding: 0 7%;
} */

.blog-page.article-page .section-title-primary {
  font-size: 24px;
  font-weight: 600;
  color: #000619;
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-page.article-page .highlight-card {
  position: relative;
}

.blog-page.article-page .highlight-card::after {
  content: "";
  background: url(../images/left-quote.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  position: absolute;
  z-index: 0;
  left: 0;
  top: -20px;
  opacity: 0.15;
}

.blog-page.article-page .highlight-card p {
  padding-left: 50px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  color: var(--foreground);
  position: relative;
  z-index: 2;
}

.blog-page.article-page .highlight-card p em {
  font-size: 26px;
  font-family: "Noto Serif", serif;
  font-style: italic;
}

.blog-page.article-page .list-check {
  margin: 40px 0;
  padding: 0;
}

.blog-page.article-page .list-check li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
}

.blog-page.article-page .list-check li span {
  color: var(--primary);
  margin-right: 8px;
}

.blog-page.article-page .just-for-you {
  background-color: var(--card);
  padding: 30px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.blog-page.article-page .share-buttons {
  display: flex;
  gap: 8px;
}

.blog-page.article-page .btn-share {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  color: var(--accent-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.blog-page.article-page .btn-share svg {
  width: 16px;
  height: 16px;
}

.blog-page.article-page .btn-share.fb {
  background-color: #3b5998;
}

.blog-page.article-page .btn-share.fb:hover {
  background-color: #334d84;
}

.blog-page.article-page .btn-share.tw {
  background-color: #1da1f2;
}

.blog-page.article-page .btn-share.tw:hover {
  background-color: #0d95e8;
}

.blog-page.article-page .btn-share.ln {
  background-color: #0077b5;
}

.blog-page.article-page .btn-share.ln:hover {
  background-color: #00629c;
}

.blog-page.article-page .btn-share.link {
  background-color: #555;
}

.blog-page.article-page .btn-share.link:hover {
  background-color: #333;
}

.blog-page.article-page .recommendations {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-page.article-page .recommendation {
  cursor: pointer;
}

.blog-page.article-page .recommend-img {
  width: 100%;
  /* max-width: 240px; */
  height: 190px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 8px;
}

.blog-page.article-page .recommendation p {
  margin: 0;
}

.blog-page.article-page .recommendation p:first-of-type,
.blog-page.article-page .recommendation p:first-of-type a {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  transition: color 0.3s ease;
  margin: 10px 0;
  text-decoration: none;
  color: #009542;
}

.blog-page.article-page .recommendation p:first-of-type a:hover {
  color: var(--primary);
}

.blog-page.article-page .recommendation:hover p:first-child {
  color: var(--primary);
}

.blog-page.article-page .read-time {
  font-size: 12px;
  color: #777;
}

.blog-page.article-page .call-to-action {
  font-size: 28px !important;
  font-weight: 400;
  margin-top: 16px;
  color: var(--secondary-foreground) !important;
  max-width: 800px;
}

.blog-page.article-page .call-to-action a {
  font-size: 32px !important;
  font-weight: 600;
  text-decoration: underline;
  color: var(--secondary-foreground) !important;
}

@media (max-width: 1024px) {
  .blog-page .hero-grid {
    flex-direction: column-reverse;
  }

  .blog-page .content-grid {
    flex-direction: column;
  }

  .blog-page.article-page .hero-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-page .hero-title {
    font-size: 32px;
  }

  .blog-page .section-title {
    font-size: 24px;
  }

  .blog-page .nav-list {
    gap: 16px;
  }

  .blog-page .articles-grid {
    flex-direction: column;
  }
}

.subscribe-modal-parent {
  padding: 20px;
}

.subscribe-modal .container {
  max-width: 1140px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(30, 30, 30, 0.53);
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.subscribe-modal .paper-plane {
  width: 126px;
  height: 110px;
  margin: auto;
}

.subscribe-modal form {
  text-align: center;
  position: relative;
}

.subscribe-modal form::before {
  content: "";
  background-image: url(../images/modal-3.svg);
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  bottom: -30px;
  right: -10px;
  /* transform: translate(-50%, -50%); */
  width: 49px;
  height: 49px;
  background-size: 49px 49px;
}

.subscribe-modal .content {
  padding-top: 25px;
  position: relative;
}

.subscribe-modal .content::after {
  content: "";
  background-image: url(../images/modal-1.svg);
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 375px;
  height: 364px;
  background-size: 375px 364px;
}

.subscribe-modal .content::before {
  content: "";
  background-image: url(../images/modal-2.svg);
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  bottom: -30px;
  right: -70px;
  /* transform: translate(-50%, -50%); */
  width: 119px;
  height: 119px;
  background-size: 119px 119px;
}

@media (min-width: 1024px) {
  .subscribe-modal .container {
    grid-template-columns: 1.1fr 1fr;
  }
}

.subscribe-modal h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.subscribe-modal h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 20px 0 25px 25px;
}

.subscribe-modal p {
  font-size: 18px;
  line-height: 24px;
  color: #404040;
  text-align: left;
}

.subscribe-modal ul {
  list-style: none;
  margin-top: 16px;
}

.subscribe-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1;
  color: #2d2d2d;
  margin-bottom: 7px;
  font-weight: 500;
}

.subscribe-modal .check-circle img {
  width: 18px;
  height: 18px;
}

.subscribe-modal .inputs {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.subscribe-modal input[type="text"],
.subscribe-modal input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 18px;
  border-radius: 6px;
  background-color: #f2f4f5;
  border: 0;
  box-shadow: 0 0 3px rgba(220, 24, 90, 0.26);
  max-width: 400px;
  margin: auto;
}

.subscribe-modal input[type="text"]::-moz-placeholder,
.subscribe-modal input[type="email"]::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  color: #c0c0c0;
}

.subscribe-modal input[type="text"]::placeholder,
.subscribe-modal input[type="email"]::placeholder {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  color: #c0c0c0;
}

.subscribe-modal input[type="text"]:focus-visible,
.subscribe-modal input[type="email"]:focus-visible {
  outline: none;
}

.subscribe-modal label {
  font-size: 14px;
  color: #3f3f3f;
  line-height: 22px;
  font-weight: 500;
  margin: 40px 0;
  display: inline-block;
  text-align: left;
}

.subscribe-modal .btn-common {
  font-family: "Montserrat";
  font-size: 22px;
  min-width: 230px;
  padding: 10px;
  background-color: #ed1c5b;
  font-weight: 600;
}

/* Blog Post Page */
.blog-post-page {
  background-color: #f8f8f6;
}

.blog-post-page .section {
  padding: 80px 48px;
}

.blog-post-page .header-section {
  width: 100%;
  background: linear-gradient(123deg, #234282 45%, #dd0c57 100%);
  box-sizing: border-box;
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-post-page .header-right::after {
  content: "";
  position: absolute;
  background-image: url(../images/ellipse.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 560px;
  height: 100%;
  top: 71%;
  right: -280px;
  opacity: 0.1;
}

.blog-post-page .header-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.blog-post-page .header-left {
  flex: 1 1 45%;
}

.blog-post-page .header-label {
  display: inline-block;
  background-color: #dd1d68;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 24px;
  width: max-content;
}

.blog-post-page .header-left h1 {
  font-size: 40px;
  font-weight: 100;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.blog-post-page .header-left p {
  font-size: 18px;
  color: #e0e0e0;
  font-weight: 100;
  margin: 0 0 24px 0;
}

.blog-post-page .stats-parent {
  background: linear-gradient(180deg, #dd1c67 45%, #ef4d24 100%);
  padding: 5px;
  border-radius: 14px;
}

.blog-post-page .stats {
  display: flex;
  /* flex-wrap: wrap; */
  background-color: #234282;
  padding: 15px 0;
  border-radius: 8px;
}

.blog-post-page .stat-box {
  padding: 5px 15px;

  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.blog-post-page .stat-box:not(:last-of-type) {
  border-right: 2px solid rgba(255, 255, 255, 0.4);
}

.blog-post-page .stat-box .stat-number {
  font-size: 40px;
  font-weight: bold;
  color: white;
}

.blog-post-page .stat-box .stat-label {
  font-size: 14px;
  color: #f0f0f0;
  font-weight: 100;
}

.blog-post-page .header-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.blog-post-page .header-right .logo-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.blog-post-page .logo-row .instant-logo img {
  max-width: 150px;
}

.blog-post-page .logo-row .by-text {
  font-size: 10px;
  font-weight: normal;
}

.blog-post-page .header-right p {
  font-size: 18px;
  line-height: 1.5;
  color: #e0e0e0;
  margin: 0;
}

.blog-post-page .challange-section {
  padding: 120px 0 0;
}

.blog-post-page .challange-section .container,
.blog-post-page .solution-section .container {
  max-width: 1350px;
}

.blog-post-page .challange-inner {
  padding: 50px 60px;
  background-color: #ffffff;
  border-radius: 40px 0 0 40px;
  position: relative;
}

.blog-post-page .challange-inner::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 100%;
  background-color: #ffffff;
}

.blog-post-page .challange-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  margin-top: -70px;
}

.blog-post-page .challenge-header {
  margin-bottom: 38px;
}

.blog-post-page .challenge-label {
  display: inline-block;
  background-color: #dd1d68;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 24px;
}

.blog-post-page .challenge-header h2,
.blog-post-page .challenge-header h3 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 100;
  color: #111111;
  margin: 0;
}

.blog-post-page .challenge-header h3 {
  margin-top: 0;
}

.blog-post-page .challenge-description {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #111111;
  max-width: 600px;
  margin: 25px 0 0;
}

.blog-post-page .challenges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.blog-post-page .challenge-item {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-post-page .challenge-item:nth-child(odd) {
  flex: 1 1 35%;
}

.blog-post-page .challenge-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #dd1d68;
  margin: 0;
}

.blog-post-page .challenge-item p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.blog-post-page .quote-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  border-radius: 30px 0 0 30px;
  background-color: #18293c;
  padding: 32px;
  position: relative;
}

.blog-post-page .quote-section::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 100%;
  background-color: #18293c;
  z-index: 1;
}

.blog-post-page .quote {
  flex: 1 1 45%;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-post-page .quote p {
  margin: 0;
}

.blog-post-page .quote p.italic {
  /* font-style: italic; */
  font-size: 18px;
  line-height: 1.5;
  font-weight: 200;
}

.blog-post-page .quote-author {
  margin-top: 6px;
}

.blog-post-page .quote-author p {
  margin: 0;
  font-size: 16px;
  color: #cccccc;
  font-weight: 100;
}

.blog-post-page .quote-author p.name {
  font-weight: 400;
  color: #ffffff;
  font-size: 28px;
  margin: 0 0 10px;
}

.blog-post-page .quote-author p.position {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
}

.blog-post-page .quote-image-parent {
  flex: 1 1 100px;
}

.blog-post-page .quote-image {
  display: flex;
  align-items: center;
  margin-top: -70px;
}

.blog-post-page .quote-image .image-inner {
  background: linear-gradient(180deg, #dd1c67 45%, #ef4d24 100%);
  border-radius: 12px;
  padding: 4px;
}

.blog-post-page .quote-image img {
  width: 132px;
  height: 132px;
  border-radius: 10px;
  object-fit: cover;
  background: #ffffff;
}

.blog-post-page .solution-section {
  padding-bottom: 0;
}

.blog-post-page .solution-inner {
  padding: 50px 80px 80px 60px;
  background-color: #18293c;
  border-radius: 40px 0 0;
  position: relative;
}

.blog-post-page .solution-inner::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 100%;
  background-color: #18293c;
  z-index: 1;
}

.blog-post-page .solution-header {
  margin-bottom: 38px;
}

.blog-post-page .solution-label {
  display: inline-block;
  background-color: #dd1d68;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 24px;
}

.blog-post-page .solution-header h2 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
}

.blog-post-page .phases {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.blog-post-page .phase {
  flex: 1 1 45%;
  /* display: flex;
  flex-direction: column;
  gap: 16px; */
}

/* .blog-post-page .phase-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
} */
.blog-post-page .phase-label-parent {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.blog-post-page .phase-label {
  display: inline-block;
  border: 2px solid #dd1d68;
  color: #dd1d68;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.blog-post-page .phase h3 {
  font-size: 24px;
  font-weight: bold;
  color: #111111;
  margin: 0;
}

.blog-post-page .phase p {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin: 15px 0;
}

.blog-post-page .phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-post-page .phase ul li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 100;
}

.blog-post-page .phase ul li span.bullet {
  color: #ffffff;
  font-weight: bold;
}

.blog-post-page .phase p.italic {
  font-style: italic;
  font-size: 14px;
  color: #555555;
}

.blog-post-page .results-header {
  margin-bottom: 48px;
  text-align: center;
}

.blog-post-page .results-label {
  display: inline-block;
  background-color: #dd1d68;
  color: #ffffff;
  padding: 12px 44px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 24px;
}

.blog-post-page .results-header h2 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 100;
  color: #111111;
  margin: 0;
}

.blog-post-page .metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-post-page .metric {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  box-shadow: 0 0 20px rgb(185 185 185 / 10%);
}

.blog-post-page .metric-icon {
  display: flex;
}

.blog-post-page .metric-icon svg {
  width: 70px;
  height: 70px;
}

.blog-post-page .metric h3 {
  font-size: 22px;
  font-weight: 500;
  color: #dd1d68;
  margin: 0;
}

.blog-post-page .metric ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-post-page .metric ul li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #444444;
}

.blog-post-page .metric ul li span.bullet {
  color: #444444;
  font-weight: bold;
  flex-shrink: 0;
}

.blog-post-page .section-label {
  display: inline-block;
  background-color: #dd1d68;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 22px;
  width: max-content;
  margin: 0;
}

.blog-post-page .why-it-worked-section {
  padding-top: 0;
}

.blog-post-page .why-it-worked-inner {
  padding: 50px 60px;

  position: relative;
}

.blog-post-page .why-it-worked-inner::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 75%;
  background-color: #ffffff;
  border-radius: 40px;
  top: 0;
  left: 0;
  z-index: 0;
}

.blog-post-page .why-it-worked-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.blog-post-page .why-it-worked-content .quote p.italic {
  margin-left: auto;
  max-width: 200px;
}

.blog-post-page .reasons {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: -70px;
}

.blog-post-page .reason {
  display: flex;
  gap: 20px;
}

.blog-post-page .reason-icon svg {
  width: 75px;
  height: 75px;
}

.blog-post-page .reason h3 {
  font-size: 18px;
  font-weight: 500;
  color: #dd1d68;
  margin: 0;
  line-height: 1.5;
}

.blog-post-page .reason p {
  font-size: 16px;
  color: #444444;
  line-height: 1.5;
  margin: 0;
}

.blog-post-page .quote-card {
  flex: 1 1 50%;
  background: linear-gradient(135deg, #111111, #333333);
  border-left: 4px solid #dd1d68;
  border-radius: 8px;
  padding: 32px;
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post-page .quote-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #dd1d68;
  object-fit: cover;
}

.blog-post-page .quote-card p.italic {
  font-style: italic;
  font-size: 16px;
  margin: 0 0 16px 0;
}

.blog-post-page .quote-card p {
  margin: 0;
}

.blog-post-page .quote-card p.name {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}

.blog-post-page .quote-card p.position {
  font-size: 12px;
  color: #cccccc;
  margin: 0;
}

.blog-post-page .blog-post-footer {
  padding: 0 0 80px;
  /* background: linear-gradient(to right, #1e3a5f, #c41e3a); */
}

.blog-post-page .blog-post-footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  align-items: center;
  background: linear-gradient(123deg, #234282 65%, #da1d68 100%);
  padding: 80px 48px 80px 0;
  border-radius: 0 30px 30px 0;
  position: relative;
}

.blog-post-page .blog-post-footer-content::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  right: 100%;
  background-color: #224281;
  z-index: 1;
}

.blog-post-page .testimonial-box-parent {
  background: linear-gradient(180deg, #dd1c67 45%, #ef4d24 100%);
  padding: 5px;
  border-radius: 14px;
  flex: 0 0 50%;
}

.blog-post-page .testimonial-box {
  padding: 30px 50px;
  background: #234282;
  border-radius: 8px;
  position: relative;
}

.blog-post-page .testimonial-box::before {
  content: "";
  position: absolute;
  background-image: url(../images/ellipse.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 510px;
  height: 400px;
  top: -40px;
  left: -338px;
  opacity: 0.1;
  z-index: 9;
}

.blog-post-page .testimonial-box p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #e5e5e5;
  font-weight: 100;
}

.blog-post-page .testimonial-box span.bold {
  font-weight: bold;
}

.blog-post-page .contact-info {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-sizing: border-box;
}

.blog-post-page .contact-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 100;
  color: #e5e5e5;
  line-height: 1.5;
}

.blog-post-page .contact-info .logos {
  display: flex;
  gap: 32px;
  font-size: 24px;
  font-weight: bold;
}

.blog-post-page .contact-info .logos>* {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.blog-post-page .contact-info .logos a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #e5e5e5;
  display: block;
}

.blog-post-page .contact-info .logos .instant-logo img {
  max-width: 105px;
}

.blog-post-page .contact-info a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
}

.blog-post-page .contact-info a:hover {
  color: #e5e5e5;
}

.blog-post-page .challenge-header {
  flex: 1 1 35%;
}

.blog-post-page .quote-section {
  flex: 1 1 45%;
}

.blog-page .hidden-article {
  display: none !important;
}

.blog-page .latest-article-slider .article-title {
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 72px;
}

.blog-page .latest-article-slider .read-more {
  background: #F0F5FF url(../images/btn-arrow-top.png) no-repeat;
  background-size: 10px;
  background-position: right 16px center;
  padding: 8px 40px 8px 14px;
  font-weight: 700;
  border-radius: 30px;
  border: 1px solid #1D3E7D;
  color: #1D3E7D;
  font-size: 14px;
  height: 36px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
}

.blog-page .latest-article-slider .read-more:hover {
  border: 1px solid #009542;
  background: #009542 url(../images/btn-arrow.png) no-repeat;
  background-size: 10px;
  background-position: right 16px center;
  color: #fff;
}

.blog-page .latest-article-slider .article-title:hover {
  color: #1D3E7D !important;
}
.blog-page .article-section ul{
  padding-left: 20px;
}
.blog-page .article-section ul > li{
  font-size: 18px;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: 20px;
}

/*# sourceMappingURL=blog.css.map */

@media (max-width: 1200px) {
  .all-blogs-main .blogs-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  /* .blog-page .article-content {
    padding: 0;
  } */

  .blog-page .articles-section .articles-grid {
    flex-wrap: nowrap;
  }

  .blog-page.article-page .article-main-inner {
    padding: 0 !important;
  }

  .blog-post-page .metric {
    flex: 1 1 45%;
  }

  .blog-post-page .challange-top {
    flex-direction: column-reverse;
    margin: 0;
  }

  .blog-post-page .quote-image {
    margin: 0;
  }

  .blog-post-page .quote-section::after,
  .blog-post-page .challange-inner::after,
  .blog-post-page .solution-inner::after {
    display: none;
  }

  .blog-post-page .challange-inner {
    border-radius: 40px;
    padding: 40px;
  }

  .blog-post-page .quote-section {
    border-radius: 30px;
  }

  .blog-post-page .quote-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
    padding: 28px;
    width: 100%;
  }

  .blog-post-page .section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .blog-post-page .solution-inner {
    padding: 40px;
    border-radius: 40px;
  }

  .blog-post-page .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .blog-post-page .why-it-worked-content {
    flex-direction: column-reverse;
  }

  .blog-post-page .phase-label-parent {
    flex-direction: column-reverse;
  }

  .blog-post-page .reasons {
    margin: 0;
  }

  .blog-post-page .why-it-worked-inner {
    padding: 40px;
  }

  .blog-post-page .why-it-worked-inner::after {
    width: 100%;
  }

  .blog-post-page .blog-post-footer-content>* {
    flex: 0 0 100%;
  }

  .blog-post-page .blog-post-footer-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-post-page .why-it-worked-content .quote p.italic {
    max-width: 500px;
  }

  .blog-post-page .challange-section {
    padding-top: 70px;
  }

  .blog-page.article-page .content-grid {
    gap: 30px;
  }

  .blog-page .hero-section.bg-muted-section {
    padding-top: 30px;
  }
}

@media (max-width: 992px) {
  .blog-page .about-blog-section .about-blog-inner {
    gap: 40px;
  }

  .blog-page .about-blog-section .about-blog-inner h2,
  .blog-page .about-blog-section .about-blog-inner h2 a {
    font-size: 30px;
  }

  .blog-page .cta-title {
    font-size: 30px;
  }

  .blog-page .immediate-payouts h3 {
    font-size: 30px;
  }

  .blog-page .signup-container h2 {
    font-size: 30px;
  }

  .blog-page .explore-section .article-image {
    height: 340px;
  }

  .blog-page .explore-section .slick-prev,
  .blog-page .explore-section .slick-next {
    top: 170px;
  }
}

@media (max-width: 768px) {
  .blog-page .explore-section .article-image {
    height: 300px !important;
  }

  .blog-page.article-page .article-main p {
    margin-bottom: 20px;
  }

  .blog-page .topics-container {
    flex-wrap: wrap;
  }

  .blog-page .topic-tag {
    width: 48%;
  }

  .blog-page .about-blog-section .about-blog-inner {
    flex-direction: column;
  }

  .blog-page .articles-grid>* {
    flex: inherit !important;
    max-width: 100% !important;
    margin: 0;
  }

  .blog-page .editor-section .article-content {
    padding: 0;
    padding-top: 20px;
  }

  .blog-page .trending-section .trending-grid {
    flex-direction: column-reverse;
  }

  .blog-page .cta-cards {
    flex-direction: column;
  }

  .blog-page .cta-cards>* {
    flex: inherit;
  }

  .blog-page .cta-card {
    max-width: 100%;
  }

  .blog-post-page .challenges {
    flex-direction: column;
  }

  .blog-post-page .challenge-item {
    flex: 1 1 100%;
  }

  .blog-post-page .quote,
  .blog-post-page .quote-image {
    flex: 1 1 100%;
  }

  .blog-post-page .challenge-header h2,
  .blog-post-page .challenge-header h3 {
    font-size: 28px;
  }

  .blog-post-page .challenge-description {
    font-size: 16px;
  }

  .blog-post-page .header-left,
  .blog-post-page .header-right {
    flex: 1 1 100%;
  }

  .blog-post-page .header-left h1 {
    font-size: 32px;
  }

  .blog-post-page .header-left p {
    font-size: 16px;
  }

  .blog-post-page .phases {
    flex-direction: column;
  }

  .blog-post-page .phase {
    flex: 1 1 100%;
  }

  .blog-post-page .solution-header h2 {
    font-size: 28px;
  }

  .blog-post-page .metric {
    flex: 1 1 100%;
  }

  .blog-post-page .results-header h2 {
    font-size: 28px;
  }

  .blog-post-page .reasons,
  .blog-post-page .quote-card {
    flex: 1 1 100%;
  }

  .blog-post-page .reason h3 {
    font-size: 16px;
  }

  .blog-post-page .reason p {
    font-size: 14px;
  }

  .blog-post-page .testimonial-box,
  .blog-post-page .contact-info {
    flex: 1 1 100%;
  }

  .blog-post-page .contact-info .logos {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {

  .all-blogs-main .blogs-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .blog-page .article-section ul > li{
  font-size: 16px;
}
  .blog-page .explore-section .article-image {
    height: auto !important;
  }

  .blog-page .topic-tag {
    width: 100%;
  }

  .blog-page .hero-section {
    background-size: auto;
  }

  .blog-page .editor-section .article-image {
    height: auto;
  }

  .blog-page .trending-section .article-image {
    min-height: auto;
  }

  .blog-page.article-page .recommend-img {
    height: auto;
    max-width: 100%;
  }

  .blog-page.article-page .article-main-inner section.article-section .btn-group {
    flex-wrap: wrap;
  }

  .blog-page.article-page .highlight-card p {
    padding-left: 30px;
    font-size: 20px;
  }

  .blog-page.article-page .highlight-card::after {
    width: 100px;
    height: 100px;
  }

  .blog-page.article-page .section-title-primary {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .blog-page.article-page .article-main p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .blog-page.article-page .hero-title {
    font-size: 26px;
  }

  .blog-page .latest-article-slider .article-title {
    /* text-align: center; */
    height: auto;
  }

  .blog-post-page .section {
    padding-left: 5px;
    padding-right: 5px;
  }

  .blog-post-page .logo-row .instant-logo img {
    max-width: 90px;
  }

  .blog-post-page .stat-box .stat-number {
    font-size: 20px;
    line-height: 1.6;
  }

  .blog-post-page .stat-box .stat-label {
    font-size: 12px;
  }

  .blog-post-page .solution-inner,
  .blog-post-page .why-it-worked-inner,
  .blog-post-page .challange-inner {
    padding: 25px 15px;
  }

  .blog-post-page .metrics {
    grid-template-columns: 1fr;
  }

  .blog-post-page .testimonial-box {
    padding: 20px;
  }

  .blog-post-page .blog-post-footer-content {
    gap: 30px;
  }

  .blog-post-page .contact-info .logos {
    justify-content: center;
    text-align: center;
  }
}