
  .kasentex-story * {
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif !important;
  }
  .kasentex-story {
    background: #fafafa;
    color: #333;
    line-height: 1.8;
    text-align: center;
    padding: 40px 20px;
  }
  .kasentex-story h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .kasentex-story h2 {
    font-size: 26px;
    color: #444;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .kasentex-story .intro {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 600;
  }
  .kasentex-story .product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .kasentex-story .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .kasentex-story .product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
  }
  .kasentex-story .product-card a {
    color: #2dc26b;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
  }
  .kasentex-story .product-card img {
    display: block;
    width: 60%;
    margin: 20px auto;
    border-radius: 8px;
    height: auto;
  }
  .kasentex-story .product-card p {
    font-size: 16px;
    margin: 0 auto;
    max-width: 700px;
    font-weight: 600;
  }

  /* 📱 모바일 반응형 스타일 */
  @media (max-width: 768px) {
    .kasentex-story {
      padding: 20px 10px;
      line-height: 1.6;
    }
    .kasentex-story h1 {
      font-size: 26px;
      margin-bottom: 8px;
    }
    .kasentex-story h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .kasentex-story .intro {
      font-size: 16px;
      margin-bottom: 30px;
      padding: 0 10px;
    }
    .kasentex-story .product-card {
      margin: 20px auto;
      padding: 16px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }
    .kasentex-story .product-card h3 {
      font-size: 18px;
    }
    .kasentex-story .product-card a {
      font-size: 16px;
    }
    .kasentex-story .product-card img {
      width: 100%;
      margin: 15px auto;
    }
    .kasentex-story .product-card p {
      font-size: 15px;
      padding: 0 10px;
    }
  }
