@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";
  /* 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: 100px 0 80px;
}

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

.blog-page .hero-subtitle {
  color: var(--primary-foreground);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  opacity: 1;
  max-width: 640px;
  letter-spacing: 0.6px;
  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;
  /* letter-spacing: 0.5px; */
  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: 64px 0;
}

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

.blog-page .section-title span {
  background: #ffffff;
  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;
  justify-content: center;
}

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

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

.blog-page .cta-title {
  color: var(--primary-foreground);
  font-size: 42px;
  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;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.62);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-page .cta-card .btn-common {
  width: -moz-max-content;
  width: max-content;
  border-radius: 18px;
  padding: 10px 30px;
  margin: auto;
  min-width: 200px;
  font-size: 16px;
  letter-spacing: 0.6px;
  font-family: "Montserrat";
  font-weight: 600;
}

.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;
}

.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: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;
  letter-spacing: 1px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  background-color: var(--primary);
  color: var(--primary-foreground);
  transition: background 0.3s ease;
}

.blog-page .btn-common:hover {
  background-color: #13285e;
}

.blog-page .btn-common.invert {
  background-color: var(--primary-foreground);
  color: var(--primary);
  padding: 6px 35px;
  font-size: 22px;
  letter-spacing: 0.6px;
  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: 50px;
}

.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: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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 .articles-grid {
  padding-top: 30px;
}

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

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

.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-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;
  letter-spacing: 1px;
  line-height: 1;
}

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

.blog-page .explore-section {
  background: var(--muted);
  padding: 30px 0 64px;
  /* margin-top: 54px; */
  /* Fix for arrow visibility */
}

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

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

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

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

.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,
.blog-page .explore-section p a {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  text-decoration: none;
  color: var(--primary-light);
}

.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: 80px;
}
.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 .articles-section > .container,
.blog-page .editor-section > .container,
.blog-page .signup-section > .container,
.blog-page .topic-section > .container {
  max-width: 1340px;
}

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

.blog-page .trending-section > .container {
  max-width: 1240px;
}

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

.blog-page .cta-section > .container {
  max-width: 1360px;
}

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

.blog-page .search-bar input {
  width: 100%;
  max-width: 620px;
  margin: auto;
  display: block;
  border: 1px solid #b2b2b2;
  font-size: 18px;
  padding: 9px 50px;
  border-radius: 50px;
}

.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: #f7f7f7;
}

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

.blog-page.article-page .main-content.container {
  max-width: 1280px;
}

.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: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
  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: 65px;
  margin: 70px 0;
}

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

.blog-page.article-page .article-main p {
  font-size: 22px;
  color: var(--foreground);
  line-height: 1.3;
  margin-bottom: 50px;
}
.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: 15px;
}

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

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

.blog-page.article-page .sidebar h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--primary);
}

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

.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 a {
  color: var(--foreground);
  font-weight: 600;
  text-decoration: underline;
}

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

.blog-page.article-page .section-title-primary {
  font-size: 34px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 60px;
}

.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: 210px;
  height: 210px;
  position: absolute;
  z-index: 0;
  left: 0;
  top: -20px;
  opacity: 0.5;
}

.blog-page.article-page .highlight-card p {
  padding-left: 50px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
  position: relative;
  z-index: 2;
}
.blog-page.article-page .highlight-card p em {
  font-size: 32px;
  font-family: "Noto Serif", serif;
  font-style: italic;
  letter-spacing: 0.8px;
}
.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: 50px 30px 70px;
  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: 170px;
  -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: 14px;
  line-height: 20px;
  transition: color 0.3s ease;
  margin: 10px 0;
  color: var(--primary);
  text-decoration: none;
}

.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;
  letter-spacing: 0.6px;
}

.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;
  letter-spacing: 1px;
}

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

.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;
}

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

@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;
  }
}

@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 .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%;
  }
}

@media (max-width: 576px) {
  .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: 18px;
    margin-bottom: 30px;
  }

  .blog-page.article-page .hero-title {
    font-size: 30px;
  }
  .blog-page .latest-article-slider .article-title {
    text-align: center;
  }
}
