@charset "utf-8";

/* Turbine&Generator Bearing */
h2 {
    font-size: var(--font-size-18);
    font-weight: 700;
}	
.sub-h-txt {
    background-color: #f6fafd;
    margin-top: var(--margin-80);
    font-size: var(--font-size-18);
    line-height: var(--line-height-30);
    font-weight: 500;
    padding: 20px 20px;
}
.sub-h-txt span dd {
    font-weight: 600;
    color: var(--sub-color-0);
}
.container {
    max-width: var(--max-width-sub);
    margin: 0 auto;
}
/* 그리드 레이아웃 설정 */
.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-60) var(--gap-20);
    width: 100%;
    margin-top: var(--margin-60);
}

/* 카드 기본 스타일 */
.product-card {
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 상단 파란색 헤더 */
.card-header {
    background-color: #000080;
    color: white;
    padding: 20px 20px 30px 20px;
    text-align: center;
    font-size: var(--font-size-18);
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

/* 이미지 배경 그라데이션 */
.image-area {
    background: radial-gradient(circle, #ffffff 0%, #5e79ae 100%);
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 10px 10px 10px 10px;
    margin-top: -10px;
}

.image-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 하단 모델 정보 영역 */
.card-footer {
    border-top: 1px solid #3486e2;
    border-bottom: 1px solid #e0e0e0;
    font-size: var(--font-size-16);
    display: flex;
    margin-top: 10px;
    height: 100%;
}

.model-label {
    padding: 15px 0;
    width: 20%;
    height: 100%;
    font-weight: bold;
    color: #004080;
    margin-right: 15px;
    background: #f2f7fd;
    min-width: 50px;
    border-right: 1px solid #e0e0e0;
    text-align: center;
}

.model-info {
    padding: 15px 0;
    width: 80%;
    height: 100%;
    color: #333;
    line-height: 1.4;
    display: flex;
    align-items: center;
}


/* Large Devices, Wide Screens : ~ 1200px */
@media only screen and (max-width : 1200px) {
	.product-container {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	}
}


/* Medium Devices, Desktops : ~ 992px */
@media only screen and (max-width : 992px) {

}


/* Small Devices, Tablets : ~ 768px */
@media only screen and (max-width : 768px) {

}


/* Extra Small Devices, Phones : ~ 480px */
@media only screen and (max-width : 480px) {

}


/* Custom, iPhone Retina : ~ 320px */
@media only screen and (max-width : 320px) {

}