/* About Japan Banner */
.about-japan-banner {
    background: url('/images/bg/bg-aboutjp.webp') center bottom/cover no-repeat;
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
    height: 60vh;
    background-position-y: 80%;
}

.about-japan-banner::before {
    content: '';
    position: absolute;
    inset: 0;
}

.about-japan-banner-content {
    position: relative;
    z-index: 2;
}

.about-japan-banner-title {
    color: var(--aip-white);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
}

.about-japan-banner-title span {
    font-size: 80px;
}

/* Main Content */
.about-japan-content {
    padding: 50px 0 40px;
    background: var(--aip-white);
}

.about-japan-body {
    margin: 0 auto;
}

.about-japan-intro {
    font-size: 16px;
    line-height: 1.85;
    color: var(--aip-text-content);
    margin-bottom: 35px;
}

.about-japan-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--aip-text-title);
    margin-bottom: 12px;
    margin-top: 30px;
}

.about-japan-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--aip-text-content);
    margin-bottom: 12px;
}

.about-japan-list {
    padding-left: 24px;
    margin-bottom: 20px;
}

.about-japan-list li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--aip-text-content);
    margin-bottom: 4px;
    list-style: disc;
}

.about-japan-list li::marker {
    color: var(--aip-text-content);
}

/* Closing */
.about-japan-closing {
    text-align: right;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--aip-primary-border);
}

.about-japan-closing p {
    font-size: 16px;
    color: var(--aip-text-content);
    margin-bottom: 4px;
    line-height: 1.6;
}

.about-japan-closing a {
    color: var(--aip-primary);
    text-decoration: underline;
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .about-japan-banner {
        height: 45vh;
        padding: 120px 0 80px;
        background-position-y: center;
    }

    .about-japan-banner-title {
        font-size: 40px;
    }

    .about-japan-banner-title span {
        font-size: 60px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .about-japan-banner {
        height: auto;
        min-height: 250px;
        padding: 80px 0 60px;
        background-position-y: center;
    }

    .about-japan-banner-title {
        font-size: 24px;
    }

    .about-japan-banner-title span {
        font-size: 40px;
    }

    .about-japan-content {
        padding: 30px 0 20px;
    }

    .about-japan-intro,
    .about-japan-text,
    .about-japan-list li {
        font-size: 16px;
    }

    .about-japan-heading {
        font-size: 20px;
    }
}