/* ========== Blog Guide ========== */
.blog-guide {
  position: relative;
  color: var(--text-guide, #FFFFFF);
  padding-top: var(--section-padding-top, 60px);
  padding-bottom: var(--section-padding-bottom, 60px);
  overflow: hidden;
  padding-left: calc(50% - 720px);
  padding-right: calc(50% - 720px);
  margin-bottom:20px;
}

.blog-guide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-guide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-guide__container {
  position: relative;
  z-index: 1;
}

.blog-guide__inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

/* ========== Left Text Area ========== */
.blog-guide__text {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-guide__label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 10px;
  opacity: 0.9;
}

.blog-guide__heading {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 120px;
  letter-spacing: -0.02em;
}

.blog-guide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #000000;
  color: #ffffff !important;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.blog-guide__btn:hover {
  transform: translateY(-2px);
}

/* ========== Right Blog List ========== */
.blog-guide__list {
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-guide__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  
  text-decoration: none;
  color: #ffffff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.blog-guide__item:hover {
  background: #F2EEEB;
  transform: translateX(4px); 
  color: #ffffff;
}

.blog-guide__thumb {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}

.blog-guide__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-guide__item:hover .blog-guide__thumb img {
  transform: scale(1.06);
}

.blog-guide__info {
  flex: 1;
  min-width: 0;
}

.blog-guide__date {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 30px;
}

.blog-guide__title {
  font-size: 24px;
  font-family: Inter, Inter;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-guide__arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.blog-guide__item:hover .blog-guide__arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ========== Mobile ========== */
@media screen and (max-width: 767px) {
  .blog-guide{
    border-radius: 0;
    padding: 20px;
  }
  .blog-guide__container{
    padding: 0;
  }
  .blog-guide__inner {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .blog-guide__text {
    width: 100%;
  }

  .blog-guide__label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .blog-guide__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .blog-guide__btn {
    align-self: flex-start;
    font-size:16px;
    padding: 8px 16px;
  }

  .blog-guide__thumb {
    width: 100px;
    height: 100px;
  }

  .blog-guide__title {
    font-size: 14px;
  }

  .blog-guide__arrow {
    width: 32px;
    height: 32px;
  }
  .blog-guide__list{
    width: 100%;
    gap: 20px;
  }

  .blog-guide__item{
    padding: 0;
  }

  .blog-guide__item:hover{
    background:unset; 
    transform:unset;
  }
}
