/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #424242;
  background: #f0eded;
}

img {
  display: block;
  max-width: 100%;
}

/* =========================
   HERO
========================= */
.blog-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-top: 200px;
}

/* =========================
   CONTAINER
========================= */
.blog-container {
  margin-top: -140px;
  position: relative;
  z-index: 1;
}

.blog-wrapper {
  max-width: 1242px;
  margin: 0 auto;
  background: #fff;
  padding: 72px 48px 90px;
  border-radius: 6px;
}

/* =========================
   INTRO
========================= */
.blog-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 90px;
}

.blog-intro h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #242424;
}

.blog-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: #424242;
}

/* =========================
   SECTIONS
========================= */
.blog-section {
  margin-bottom: 110px;
}

/* =========================
   TWO COLUMN LAYOUT
========================= */
.two-col {
  display: flex;
  align-items: flex-start; /* FIGMA */
  gap: 64px;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

/* =========================
   TEXT
========================= */
.text {
  flex: 1;
}

.text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #242424;
}

.text h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.text p {
  font-size: 15px;
  line-height: 1.75;
  color: #424242;
}

.text ul {
  margin-top: 14px;
  padding-left: 18px;
}

.text ul li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #424242;
}

/* =========================
   IMAGE
========================= */
.image {
  flex: 0 0 420px; /* FIGMA WIDTH */
}

.image img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   SECTION TITLE (CENTER)
========================= */
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 80px;
}

/* =========================
   CONCLUSION (TEXT-ONLY VERSION)
========================= */
.blog-conclusion {
  max-width: 1320px;
  margin: 40px auto;
}
.blog-conclusion-title {
  display: flex;
  /* align-items: flex-start; */
  justify-content: flex-start;
  font-size: 32px;
  font-weight: bold;
}
.blog-conclusion h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.blog-conclusion p {
  font-size: 20px;
  line-height: 1.75;
  color: #555;
}
.Conclusion-image {
  position: absolute;
  top: 87%;
  left: 77%;
}
/* ======================================
   RESPONSIVE : 1200px
====================================== */
@media (max-width: 1200px) {
  .blog-wrapper {
    padding: 64px 40px 80px;
  }

  .image {
    flex: 0 0 380px;
  }

  .blog-section {
    margin-bottom: 90px;
  }

  .blog-conclusion {
    max-width: 100%;
    padding: 0 40px;
  }

  .Conclusion-image {
    position: static; 
    margin-top: 32px;
    text-align: right;
  }
}

/* ======================================
   RESPONSIVE : 992px (TABLET)
====================================== */
@media (max-width: 992px) {
  .two-col,
  .two-col.reverse {
    flex-direction: column;
    gap: 36px;
  }

  .image {
    flex: 0 0 auto;
    width: 100%;
  }

  .blog-wrapper {
    padding: 56px 32px 72px;
  }

  .blog-intro {
    margin-bottom: 70px;
  }

  .blog-conclusion {
    padding: 0 32px;
  }

  .blog-conclusion-title {
    font-size: 28px;
  }

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

/* ======================================
   RESPONSIVE : 768px (SMALL TABLET)
====================================== */
@media (max-width: 768px) {
  .blog-hero img {
    height: 300px;
  }

  .blog-intro h1 {
    font-size: 30px;
  }

  .text h2 {
    font-size: 24px;
  }

  .text p,
  .text ul li {
    font-size: 14px;
  }

  .blog-conclusion p {
    font-size: 16px;
  }
}

/* ======================================
   RESPONSIVE : 576px (MOBILE)
====================================== */
@media (max-width: 576px) {
  .blog-wrapper {
    padding: 48px 20px 64px;
  }

  .blog-intro {
    margin-bottom: 60px;
  }

  .blog-intro h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 60px;
  }

  .blog-section {
    margin-bottom: 70px;
  }

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

  .blog-conclusion p {
    font-size: 15px;
  }
}

/* ======================================
   RESPONSIVE : 320px (SMALLEST)
====================================== */
@media (max-width: 360px) {
  .blog-intro h1 {
    font-size: 22px;
  }

  .text h2 {
    font-size: 20px;
  }

  .blog-conclusion p {
    font-size: 14px;
  }
}
