.text-\[clamp\(32px_\2c_2vw_\2c_85px\)\] {
  font-size: clamp(32px, 2vw, 85px);
}
.text-\[clamp\(17px_\2c _2vw_\2c _85px\)\] {
  font-size: clamp(17px, 2vw, 85px);
}

.leading-\[38px\] {
  line-height: 38px;
}

.w-\[27vw\] {
  width: 27vw;
}

.w-\[300px\] {
  width: 300px;
}

.pb-\[12rem\] {
  padding-bottom: 12rem;
}

.gap-\[1rem\] {
  gap: 1rem;
}

.gap-\[2rem\] {
  gap: 2rem;
}

.gap-10 {
  gap: 2.25rem;
}

.blog-container {
  min-height: calc(100vh - 3.875rem);
  padding-bottom: 1rem;
  flex-direction: column;
  @media screen and (max-width: 992px) {
  }
}

.blog-content {
  padding: 30px 0.75rem !important;

  @media screen and (max-width: 1024px) {
    padding: 16px 0.75rem !important;
  }
  h2 {
    @media screen and (max-width: 1024px) {
      margin-bottom: 20px;
    }
  }
}

.contact-container {
  padding-bottom: 5.5rem;
  @media screen and (max-width: 992px) {
  }
}

.gap-2 {
  gap: 0.5rem;
}

.banner-info {
  @media screen and (max-width: 630px) {
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  @media screen and (max-width: 480px) {
    gap: 32px;
  }
}

.download-cosmeb-text {
  @media screen and (max-width: 768px) {
    padding-bottom: 30px !important;
    line-height: 1.2 !important;
    font-size: clamp(20px, 2vw, 85px);
  }
  @media screen and (max-width: 480px) {
    padding-bottom: 0 !important;
  }
}

.blog-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 100px;

  @media screen and (max-width: 1024px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.image-qr {
  width: clamp(5rem, 15vw, 30rem);
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  @media screen and (min-width: 992px) {
  }
  @media screen and (max-width: 993px) {
    display: none;
  }
}

.image-qr-link {
  width: clamp(120px, 15vw, 160px);
  @media screen and (min-width: 992px) {
    display: none;
  }
  @media screen and (max-width: 993px) {
  }
}

.image-qr-container {
  display: flex;
  gap: 4rem;
  @media screen and (max-width: 993px) {
    flex-direction: column;
    gap: 1rem;
  }
}

.image-phone {
  width: clamp(120px, 36vw, 540px);
}

/* .banner {
  padding-bottom: 3rem;
  @media screen and (max-width: 768px) {
    padding-bottom: 1.5rem;
  }
} */

.text-clamp-17px_to_85px {
  @media screen and (max-width: 480px) {
    font-size: clamp(12px, 2vw, 85px);
  }
}

.banner {
  padding-bottom: 12rem;
  @media screen and (max-width: 480px) {
    padding-bottom: 6rem;
  }
}

.banner-container {
  gap: 5%;
  @media screen and (max-width: 480px) {
    gap: 32px;
  }
}

.footer {
  background-color: #a80051;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.pagination-container {
  background: #ffffff;

  @media screen and (max-width: 480px) {
    gap: 32px;
  }

  @media screen and (max-width: 1024px) {
    bottom: 7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media screen and (max-width: 768px) {
    bottom: 7rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0 auto;
}

.page-btn {
  padding: 6px 12px;
  border: 1px solid #ff549c;
  background-color: white;
  color: #ff549c;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  min-height: 38px;
  min-width: 38px;
}

.page-btn:hover {
  background-color: #ff549c;
  color: white;
}

.page-btn.active {
  background-color: #ff549c;
  color: white;
}

.blog-item {
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.blog-info {
  margin-top: 12px;
}

.blog-detail-container {
  margin-top: 32px !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 60rem;
  margin: 0 auto;
  padding-bottom: 32px;
}

.blog-detail-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #2f3132;
}

.blog-view-more {
  text-align: end;
  color: #ff549c;
}

.blog-view-content {
  display: flex;
  justify-content: end;
  margin-bottom: 16px;

  @media screen and (max-width: 1024px) {
    justify-content: center;
  }
}

.image-responsive {
  img {
    width: 100% !important;
    height: auto !important;
  }
  @media only screen and (max-width: 700px) {
    img {
      width: 100% !important;
      height: auto !important;
    }
  }
}
.error_border {
  border: 1px solid #f00;
}

.page-btn[disabled] {
  background-color: #ccc !important;
  color: #666 !important;
  opacity: 0.6;
  cursor: not-allowed;
  border: 1px solid #aaa;
}

.limit-line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 48px;
}

.limit-line-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  min-height: 96px;
}

.footer-main {
  background-color: #a80051;
}

.blog-image-qr {
  padding: 24px 32px;
  box-shadow: 0px 2px 16px 0px #33333326;
  width: clamp(12rem, 10vw, 30rem);
  background: #ffffff;
  border-radius: 12px;
  @media screen and (min-width: 992px) {
  }
  @media screen and (max-width: 993px) {
  }
  @media screen and (max-width: 767px) {
    display: none;
  }
}

.blog-image-qr-link {
  width: clamp(160px, 100%, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (min-width: 992px) {
  }
  @media screen and (max-width: 993px) {
  }
  @media screen and (min-width: 768px) {
    display: none;
  }
}

.blog-image-qr-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  @media screen and (max-width: 993px) {
  }

  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 1rem;
  }
}

.blog-image-qr-container > h3 {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: #333333;
}

.image-phone {
  width: clamp(120px, 36vw, 540px);
}

.blog-image-qr-content {
  display: flex;
  justify-content: center;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

  @media screen and (max-width: 767px) {
    box-shadow: none !important;
  }
}
