For all general inquiries, please complete this form and one of our representatives will get back to you shortly.
Bonifacio Global City Showroom
Globe: 0917-127-5771
Globe: 0917-136-2323
Smart: 0918-948-4230
Taytay Showroom
Landline: 0287085318
Globe: 0917-136-2323
Smart: 0919-500-6149
Email Addressinfo@luxdezine.com
/* 화면이 좁아질 때 자동으로 3개/2개/1개로 줄어듦 */
@media (max-width: 1200px) {
.newl-location-sec {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.newl-location-sec {
grid-template-columns: 1fr;
}
}
/* 각 카드 공통 스타일 */
.newl-location-sec .location-thumb {
background: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
}
/* 지도 영역 */
.newl-location-sec .location-thumb .map {
margin-top: 10px;
}
/* iframe 공통 스타일 */
.newl-location-sec .location-thumb iframe {
width: 100%;
height: 300px;
border: 0;
border-radius: 8px;
}
/* 제목(Showroom 이름) */
.newl-location-sec .location-thumb strong {
font-size: 16px;
display: block;
margin-bottom: 5px;
}
/* 주소 텍스트 */
.newl-location-sec .location-thumb .address {
margin-top: 10px;
font-size: 14px;
}