/**
 * page1 - sec14 (B2B 파트너)
 */

 .sec14 { 
 position: relative; 
 padding: 0; 
 overflow: hidden; 
 background: #fff; 
 } 


.sec14-wrap { 
 display: grid; 
 grid-template-columns: 46% 54%; 
 align-items: stretch; 
 min-height: 360px; 
 } 

.sec14-copy { 
 display: flex; 
 flex-direction: column; 
 justify-content: center; 
 } 




.sec14-btn { 
 display: inline-flex; 
 align-items: center; 
 justify-content: center; 
 gap: 18px; 
 width: 250px; 
 height: 62px; 
 margin-top: 48px; 
 border: 2px solid #25215f; 
 border-radius: 8px; 
 color: #25215f; 
 background: #fff; 
 font-size: 20px; 
 font-weight: 800; 
 text-decoration: none; 
 } 

.sec14-btn { 
 display: inline-flex; 
 align-items: center; 
 justify-content: center; 
 gap: 18px; 
 width: 250px; 
 height: 62px; 
 border: 2px solid #25215f; 
 border-radius: 8px; 
 color: #25215f; 
 background: #fff; 
 font-size: 20px; 
 font-weight: 800; 
 text-decoration: none; 
 } 

.sec14-btn span { 
 display: inline-block; 
 line-height: 1; 
 } 

.sec14-btn-icon { 
 display: block; 
 width: 26px; 
 height: 26px; 
 object-fit: contain; 
 flex: 0 0 26px; 
 } 

.sec14-img { 
 min-height: 360px; 
 overflow: hidden; 
 } 

.sec14-img img { 
 display: block; 
 width: 100%; 
 height: 100%; 
 min-height: 360px; 
 object-fit: cover; 
 object-position: center center; 
 } 

@media (max-width: 1024px) { 
 .sec14-wrap { 
 grid-template-columns: 1fr; 
 } 


 .sec14-img { 
 min-height: 320px; 
 } 

 .sec14-img img { 
 min-height: 320px; 
 } 

 } 

@media (max-width: 560px) { 
 .sec14-btn { width: auto; height: 56px; margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem;  } 
 .sec14-img, .sec14-img img { height: 24rem; } 
} 