.info-box {
width: 900px;
height: 180px;
background-color: #F1F1F1;
border-radius: 10px;
margin: 20px auto;
position: relative;
display: flex;
padding: 0 20px;
box-sizing: border-box;

transition: transform 0.2s ease, box-shadow 0.2s ease;
will-change: transform;
transform: translateZ(0);
}

.info-left {
width: 140px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
margin-right: 20px;
}

.label-img {
width: 100px;
height: 30px;
display: block;
margin-top: 12px;
}

.thumb-img {
width: 120px;
height: 120px;
object-fit: cover;
display: block;
margin-top: 0px;
margin-left: 10px;
}

.info-right {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding-top: 15px;
margin-left: 15px;
}

.info-title {
font-weight: bold;
font-size: 21px;
margin-top: 0;
margin-bottom: 16px;

transform: translateZ(0);
}

.info-body {
font-size: 18px;
line-height: 1.3;
margin-top: 0;
margin-bottom: 6px;
}

.info-note {
position: relative;
top: -8px;
font-size: 15px;
color: #555;
line-height: 1.4;
margin-top: 0;
}

.info-separator {
width: 900px;
height: 2px;
background-color: black;
margin: 20px auto;
}

.info-link {
text-decoration: none;
color: inherit;
display: block;
width: 900px;
margin: 0 auto;
}

.info-link:hover .info-box {
box-shadow: 0 0 8px rgba(0,0,0,0.2);
transform: scale(1.01) translateZ(0);
transition: all 0.2s ease;
cursor: pointer;
}
