.glutenSection {
  background: #f9fbfe;
  padding: 80px 20px;
  font-family: 'Pretendard', sans-serif;
}

.glutenInner {
  max-width: 1000px;
  margin: 0 auto;
}

.glutenHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.glutenTitleWrap {
  flex: 1 1 60%;
}

.glutenTitle {
  
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.glutenSubtitle {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.5rem;
}

.glutenImageMini {
  flex: 1 1 30%;
  max-width: 250px;
}

.glutenImageMini img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.glutenImageMini img:hover {
  transform: scale(1.03);
}

.glutenInfoWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glutenCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.glutenCard:hover {
  transform: translateY(-3px);
}

.glutenCard h3 {
  font-size: 1.2rem;
  color: #1e90ff;
  margin-bottom: 8px;
}

.glutenCard ul {
  padding-left: 20px;
  list-style-type: disc;
  line-height: 1.5rem;
}

.glutenButtonWrap {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
 
}

.gBtn {
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.gBtn.filled {
  background: #1e90ff;
  color: #fff;
}

.gBtn.filled:hover {
  background: #0c72cc;
}

.gBtn.outline {
  border: 1px solid #1e90ff;
  color: #1e90ff;
  background: #fff;
}

.gBtn.outline:hover {
  background: #eaf4ff;
}

strong{
    font-weight: bold;
    font-size:1.4rem !important;
   background: linear-gradient(135deg, #B11D64, #5A2473);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}