/* /resource/www/css/about/directions.css */

.directions-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.directions-title-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.directions-title-section .title-small {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    font-size: 20px;
	line-height: 30px;
	color: #00754a;
    margin: 0 0 8px 0;
}

.directions-title-section .title-large {
    font-family: 'Ria Sans', sans-serif;
    font-weight: 700;
    color: #222222;
    font-size: 48px;
	letter-spacing: -0.04em;
	line-height: 72px;
    margin: 0;
}

.map-section {
    width: 100%;
    height: 720px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Added for a more premium look */
}

.contact-info-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-left: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-item .icon-wrapper {
    height: 34px;
    width: 34px;
    position: relative;
    border-radius: 999px;
    background-color: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item .icon-wrapper img {
    height: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-info-item .info-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #222222;
    line-height: 1.6;
}

.contact-info-item .info-text .directions-biko-mail-link {
	text-decoration: none;
	color: #222222;
}

@media screen and (min-width: 1440px) {
    .map-section {
        width: 1440px;
    }
}

/* Mobile responsive */
@media screen and (max-width: 1024px) {
    .sub-content {
        margin-top: 40px;
    }

    .directions-container {
        padding: 0 20px 80px;
        gap: 40px;
        box-sizing: border-box;
    }

    .directions-title-section {
        gap: 0;
    }

    .directions-title-section .title-small {
        font-size: 14px;
		line-height: 22px;
        word-break: keep-all;
    }

    .directions-title-section .title-large {
        font-size: 20px;
		letter-spacing: -0.04em;
		line-height: 30px;
    }

    .map-section {
        height: 600px; /* Taller on mobile as per common design patterns for maps */
        border-radius: 8px;
    }

    .contact-info-section {
        gap: 16px;
        padding-left: 0;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-item .icon-wrapper {
        width: 24px;
        height: 24px;
    }

    .contact-info-item .icon-wrapper img {
        height: 14px;
    }

    .contact-info-item .info-text {
        font-size: 16px;
    }
}

