/* Reset and Base Styles */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: #333;
  background-color: #fff;
  min-height: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overflow-x: hidden;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 40px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 30px;
}

/* CSS Variables */
:root {
  --border-subtle: #e7ddda;
  --body-color: #fafafa;
  --font-primary: Sora, sans-serif;
  --text-primary: #151516;
  --font-secondary: Inter, sans-serif;
  --color-primary: #e8229e;
  --text-secondary: #4a4a57;
  --border-radius-s: 0.8rem;
  --section-background: #f3f7fb;
  --border-radius-xl: 12rem;
  --color-secondary: #101841;
  --text-invert: white;
  --background-invert: #222;
  --white: white;
  --border-radius: 1.6rem;
  --component-background: white;
  --border-radius-m: 2.4rem;
  --inner-wrapper-desktop: 64.875rem;
}

/* Layout Components */
.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-embed {
  display: table;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w--current {
  color: #0082f3;
}

/* Page Structure */
.body {
  background-color: var(--white);
  border-color: var(--border-subtle);
  font-family: var(--font-primary);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
}

.page-wrapper {
  background-color: #fff;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.main-wrapper {
  /* Main content container */
}

/* Navigation */
.navbar_component {
  background-color: var(--white);
  text-align: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  line-height: 0;
  display: flex;
}

.navbar_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  display: flex;
}

.navbar_logo-link {
  margin-right: 2.5rem;
}

.navbar_logo {
  text-align: center;
  vertical-align: middle;
  width: 200px;
  display: inline-block;
}

.logo_small {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 80px;
  height: 80px;
}

/* Buttons */
.button {
  border-radius: var(--border-radius-xl);
  background-color: var(--color-primary);
  background-image: linear-gradient(99.86deg, var(--color-primary), var(--color-secondary));
  color: var(--text-invert);
  text-align: center;
  letter-spacing: 0.01em;
  border-style: solid;
  border-width: 0;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color .5s;
  display: flex;
  box-shadow: 1px 1px 2px rgba(16, 24, 40, .05);
}

.button:hover {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(99.86deg, var(--color-primary), var(--color-primary));
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0.6rem;
  display: flex;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
  display: flex;
}

/* Text Styles */
.text-weight-semibold {
  font-weight: 600;
}

.text-weight-normal {
  font-weight: 400;
}

.text-size-regular {
  font-size: 1.2rem;
}

.text-size-small {
  font-family: var(--font-secondary);
  text-align: center;
  align-self: center;
  font-size: .875rem;
  line-height: 1;
}

.text-size-big {
  font-size: 1.6rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.text-align-center {
  text-align: center;
}

.text-style-quote {
  font-family: var(--font-primary);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

/* Headings */
.heading-3 {
  font-size: 3.5rem;
  line-height: 70px;
  margin-bottom: 10px;
}

.heading-4 {
  align-self: center;
}

.heading-5 {
  padding-bottom: 40px;
}

.heading-style-h3 {
  font-size: 2.4rem;
  line-height: 42px;
}

.heading-style-h4 {
  font-size: 1.5rem;
  line-height: 1;
}

.heading-special-h6 {
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
}

.heading-price {
  font-family: var(--font-primary);
  align-self: center;
  margin-top: 20px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

/* Paragraphs */
.paragraph-4 {
  font-size: 1.4rem;
}

/* Icons */
.icon-embed-xsmall {
  border-radius: var(--border-radius-xl);
  background-color: var(--white);
  color: var(--color-primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  padding: 0.5rem;
  display: flex;
}

.cls-1 {
  fill: currentcolor;
  stroke-width: 0px;
}

/* Spacing */
.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-small {
  margin: 1.5rem;
}

.padding-global {
  max-width: var(--inner-wrapper-desktop);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.padding-section-large {
  padding: 8rem 0;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Sections */
.section_hero {
  background-color: #fff;
}

.section_features {
  background-color: var(--white);
}

.section_testimonials {
  /* Testimonials section */
}

.section_insights_pricing {
  /* Pricing section */
}

.section_footer {
  border-top: 3px solid #000;
  margin-top: 140px;
  padding: 7rem 0 2rem 0;
  background-color: var(--white);
  color: var(--text-invert);
}

.section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

/* Hero Section */
.hero_wrapper {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  border-radius: var(--border-radius-m);
  background-image: linear-gradient(to bottom, var(--white), var(--white));
  flex-flow: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 6rem 0 2rem;
  display: flex;
}

.hero_column-wrapper {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  text-align: center;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero_text {
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  flex-flow: column;
  display: flex;
}

.hero_text-paragraph {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Info Section */
.info_wrapper {
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  flex-flow: column;
  display: flex;
  padding-bottom: 2.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

/* Features */
.features_wrapper {
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  flex-flow: column;
  display: flex;
}

.features_component {
  grid-column-gap: 3.75rem;
  grid-row-gap: 5.75rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 0.8fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.features_top_bottom {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 0.65fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.features_middle {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 0.65fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.features_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  min-width: 30rem;
  display: flex;
}

.features_image-wrapper {
  flex: 1;
  order: 0;
}

.features_image {
  border: 3px solid #000;
  border-radius: 20px;
  display: block;
}

.utility_header {
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

/* Testimonials */
.testimonials_wrapper {
  grid-column-gap: 3.2rem;
  grid-row-gap: 3.2rem;
  flex-flow: column;
  display: flex;
  margin-bottom: 40px;
}

.testimonial_inner-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.testimonial_content {
  border: 1px solid var(--white);
  border-radius: var(--border-radius);
  background-color: var(--component-background);
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  width: 100%;
  transition: border-color 0.35s;
  display: flex;
}

.testimonial_rating-wrapper {
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial_rating-icon {
  color: var(--color-primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: .25rem;
  display: flex;
}

.testimonial_client {
  text-align: left;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.testimonial_client-image-wrapper {
  margin-right: 1rem;
}

.testimonial_customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.testimonial_client-info {
  /* Testimonial client info container */
}

/* Pricing */
.insights_pricing_wrapper {
  grid-column-gap: 3.2rem;
  grid-row-gap: 3.2rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.insights_pricing_component {
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  flex-flow: wrap;
  flex: 0 auto;
  align-content: stretch;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  display: flex;
}

.pricing_card {
  border: 3px solid #000;
  min-height: 20rem;
  min-width: 24rem;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: #ebadc8;
  border-radius: 20px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: 4rem 1.5rem;
  display: flex;
}

.insights_pricing_text-wrapper {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  width: 80%;
  display: flex;
}

/* CTA */
.cta_wrapper {
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  flex-flow: column;
  display: flex;
  padding-top: 10rem;
  padding-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 600px;
}

/* Footer */
.footer_bottom-wrapper {
  color: var(--color-secondary);
  text-align: center;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  display: flex;
}

.footer_credit-text {
  color: var(--text-secondary);
  text-align: center;
  -webkit-text-stroke-color: var(--text-primary);
  flex: 1;
  font-size: 0.875rem;
}

/* Images */
.image {
  float: none;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: static;
}

.image_info {
  border: 3px solid #000;
  align-self: center;
  max-width: 1200px;
  border-radius: 14px;
  height: auto;
}

/* FAQ Section */
.section_faq {
  background-color: var(--white);
}

.faq_wrapper {
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  border-radius: var(--border-radius-m);
  background-image: linear-gradient(to bottom, var(--white), var(--white));
  flex-flow: column;
  padding: 4.8rem;
  display: flex;
}

.faq_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: start;
  justify-items: stretch;
  display: flex;
}

.faq_accordion {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 3px solid var(--background-invert);
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1.6rem;
  display: flex;
  background-color: var(--white);
  margin-bottom: 1rem;
}

.faq_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: flex;
}

.faq_question h4 {
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq_icon {
  align-self: flex-start;
  margin-left: 0;
  padding-left: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq_answer {
  text-align: left;
  flex: 0 auto;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.faq_answer-wrapper {
  margin-top: 0.8rem;
}

.faq_accordion.active .faq_answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.faq_accordion.active .faq_icon {
  transform: rotate(45deg);
}

/* Responsive Design */
@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-3 {
    font-size: 2rem;
    line-height: 35px;
  }

  .heading-style-h3 {
    line-height: 40px;
  }

  .heading-style-h4 {
    text-align: left;
    font-size: 1.7rem;
    line-height: 1;
  }

  .button {
    width: 100%;
  }

  .text-size-big {
    font-size: 1.25rem;
  }

  .text-style-quote {
    font-size: 1.1rem;
  }

  .padding-section-medium {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section_hero {
    padding-top: 4rem;
  }

  .testimonial_inner-wrapper {
    column-count: 1;
    flex-flow: column;
  }

  .features_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .features_content {
    order: 0;
    min-width: 1rem;
  }

  .features_image-wrapper {
    flex: 1;
    order: -1;
  }

  .features_top_bottom,
  .features_middle {
    border-width: 0;
    flex-flow: column;
    padding: 0.5rem;
    margin-top: 100px;
  }

  .hero_wrapper {
    padding: 1.2rem;
    margin-top: 10px;
  }

  .hero_text-paragraph {
    width: 100%;
  }

  .cta_wrapper {
    max-width: 340px;
    padding-top: 5rem;
  }

  .navbar_container {
    margin-left: -10px;
  }

  .footer_bottom-wrapper {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer_credit-text {
    align-self: center;
    font-size: 1rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq_wrapper {
    padding: 1.6rem;
  }

  .faq_accordion {
    padding: 1.2rem;
  }

  .faq_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: left;
  }

  .faq_answer-wrapper {
    text-align: left;
  }

  .faq_question {
    padding: 1rem 1.25rem;
    text-align: left;
  }

  .faq_question h4 {
    text-align: left;
    font-size: 1.2rem;
  }

  .faq_icon {
    width: 1.75rem;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 1rem;
  }

  .heading-3 {
    font-size: 2rem;
    line-height: 35px;
  }

  .paragraph-4 {
    font-size: 20px;
  }

  .text-weight-normal.text-size-regular {
    text-align: center;
    line-height: 24px;
  }

  .faq_answer .text-weight-normal.text-size-regular {
    text-align: left;
  }

  .heading-style-h4 {
    text-align: center;
  }

  .heading-special-h6 {
    text-align: center;
  }

  .text-size-regular {
    text-align: center;
    font-size: 1rem;
  }

  .button-group {
    align-self: center;
    width: 60%;
  }

  .text-size-small {
    text-align: center;
  }

  .section_hero {
    padding-top: 4rem;
  }

  .pricing_card {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    min-width: 20rem;
    padding: 4rem 0;
  }

  .insights_pricing_text-wrapper {
    justify-content: center;
    align-self: auto;
    align-items: center;
    min-width: 280px;
  }

  .heading-style-h3 {
    text-align: center;
    align-self: auto;
    font-size: 1.6rem;
    line-height: 30px;
  }

  .padding-global.padding-section-large {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .padding-global.padding-section-hero {
    padding-top: 3rem;
  }

  .insights_pricing_wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 1rem;
  }

  .features_wrapper {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    margin-bottom: 30px;
  }

  .utility_header,
  .hero_text {
    width: 100%;
    margin-top: 20px;
  }

  .section-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-4 {
    text-align: center;
    line-height: 1.5;
    padding: 10px;
  }

  .image_info {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  .navbar_component {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    min-height: 5rem;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar_logo {
    width: auto;
    height: auto;
  }

  .footer_credit-text {
    align-self: center;
    font-size: 0.7rem;
  }
}

/* Node-specific positioning */
#w-node-_344d5423-7ab3-e47d-78d6-aaaefbff9a44-3dabd102,
#w-node-a9ba5952-76d7-bbf4-1198-efd90cc6c95c-3dabd102 {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-a9ba5952-76d7-bbf4-1198-efd90cc6c95c-3dabd102,
  #w-node-_344d5423-7ab3-e47d-78d6-aaaefbff9a44-3dabd102 {
    order: -9999;
  }
}

/* Blog Styles */
.blog_grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  display: grid;
}

.blog_card {
  border: 3px solid #000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog_image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.blog_content .text-size-small {
  text-align: left;
}

.blog_content * {
  text-align: left !important;
}

.blog_meta {
  text-align: left !important;
}

.blog_title {
  text-align: left !important;
}

.blog_excerpt {
  text-align: left !important;
}

.blog_meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.blog_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.blog_card:visited .blog_title,
.blog_card:link .blog_title {
  color: var(--text-primary);
}

.blog_excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog_card:visited .blog_excerpt,
.blog_card:link .blog_excerpt {
  color: var(--text-secondary);
}



.hero_content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero_content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.hero_content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .blog_grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
  }
  
  .hero_content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .blog_grid {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 1.5rem;
  }
  
  .hero_content h1 {
    font-size: 2rem;
  }
  
  .hero_content p {
    font-size: 1.1rem;
  }
  
  .blog_content {
    padding: 1rem;
  }
}

/* Article Styles */
.article_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 2rem;
  text-align: left;
}

.breadcrumb_link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.breadcrumb_link:hover {
  text-decoration: underline;
}

.article_meta {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.article_title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article_subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.article_content {
  max-width: 800px;
  margin: 0 auto;
}

.article_image-wrapper {
  border: 3px solid #000;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 3rem;
  overflow: hidden;
}

.article_image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article_body {
  line-height: 1.8;
}

.article_heading {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article_paragraph {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Responsive Design for Articles */
@media screen and (max-width: 991px) {
  .article_title {
    font-size: 2.5rem;
  }
  
  .article_heading {
    font-size: 1.75rem;
  }
  
  .article_image {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .article_title {
    font-size: 2rem;
  }
  
  .article_subtitle {
    font-size: 1.1rem;
  }
  
  .article_heading {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  
  .article_paragraph {
    font-size: 1rem;
  }
  
  .article_image {
    height: 250px;
  }
  
  .article_meta {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    max-width: none;
  }
}