.sub-title {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 18px;
    display: inline-block;
    font-weight: bold;
}

.section-padding {
    padding-top: 100px;
}

.section-content {
    padding-left: 80px;
    padding-right: 80px;
}
.section-content:last-of-type {
    margin-bottom: 80px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}
.card-link:hover .ebmi-block {
    opacity: .8;
}

.about-img,
.top-img {
    margin-top: 20px;
    margin-bottom: 24px;
}
.about-img picture,
.about-img img,
.top-img picture,
.top-img img {
    width: 100%;
    height: auto;
    display: block;
}

.network-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1%;
    padding: 40px 20px;
    background-color: #fff;
}

.stat-card-wrapper {
    width: 100%;
    max-width: 32%;
    flex: none;
    text-align: center;
}

.stat-label {
    font-size: clamp(8px, 1.5vw, 18px);
    font-weight: 600;
    color: #0D2642;
    margin-bottom: 32px;
}

.stat-card {
    position: relative;
    background-color: #F2F2F2;
    border-radius: 16px;
    padding: 47px 16px 43px;
    box-sizing: border-box;
}
.stat-card .icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
}
.stat-card .icon img {
    width: 100%;
    height: 44px;
}
.stat-card .stat-image img {
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.notice {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-bottom: 30px;
    padding-right: 20px;
}

.title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 24px;
}

h3 {
    padding-top: 50px;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 0;
    justify-items: center;
    align-items: center;
    background-color: #fff;
    justify-content: center;
}

.logo-item {
    width: 120px;
    height: 72px;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    max-width: 85px;
    max-height: 100%;
    object-fit: contain;
}

.section-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 78px;
    padding: 90px 25px;
    justify-content: center;
    background-color: #F5F5F5;
    margin-top: -20px;
}
.section-bottom-card {
    flex: 1 1 45%;
    max-width: 500px;
    background-color: transparent;
    text-align: left;
}
.section-bottom-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #C4CBD1;
    border-radius: 12px;
    overflow: hidden;
}
.section-bottom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section-bottom-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #0D2642;
    margin-bottom: 12px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.section-bottom-card-text {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.image-text-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 65px 16px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}
.image-area {
    flex: 1 1 45%;
    min-width: 300px;
}
.image-area img {
    width: 100%;
    height: auto;
    display: block;
}
.text-area {
    flex: 1 1 50%;
    min-width: 300px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}
.text-area .lead {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 16px;
}

.border-radius {
    border-radius: 12px;
}

.ebmi-block {
    background-color: #f5f5f5;
    padding: 40px 16px;
    transition: all 0.5s ease;
}
.ebmi-inner {
    background-color: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
.ebmi-image {
    flex: 1 1 40%;
    min-width: 280px;
}
.ebmi-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}
.ebmi-content {
    flex: 1 1 50%;
    min-width: 280px;
}
.ebmi-title {
    font-size: 18px;
    font-weight: bold;
    color: #0D2642;
    margin-bottom: 16px;
}
.ebmi-text {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media screen and (max-width: 767px) {
    .section-content {
        padding-left: 0;
        padding-right: 0;
    }

    .section-padding {
        padding-top: 0;
    }

    .network-stats {
        padding: 40px 0 0 0;
        margin-bottom: 7px;
    }

    .stat-card {
        padding: 12px 16px 10px;
    }

    .stat-card .icon {
        width: 35px;
        height: 35px;
    }

    .stat-card-wrapper {
        width: 100%;
    }

    .notice {
        font-size: 10px;
        padding-right: 0;
    }

    .logo-item {
        width: 85px;
        height: 60px;
    }

    .logo-item img {
        max-width: 70px;
    }

    .image-text-block {
        flex-direction: column;
        gap: 24px;
        padding: 40px 16px;
    }

    .image-area,
    .text-area {
        width: 100%;
        min-width: unset;
    }

    .ebmi-inner {
        flex-direction: column;
        padding: 24px;
    }

    .ebmi-image,
    .ebmi-content {
        width: 100%;
    }
}
