/* ===================================
   Block: About Section
   =================================== */
#dd-about-section {
    background-color: var(--txt-light);
    padding: 70px 0;
    float: left;
    width: 100%;
}

.about-section-wrap {
    align-items: stretch;
}

/* Left column */
.about-section-left {
    width: 50%;
}

.about-section-left-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 60px;
}

.about-section-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-section-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 54px;
    color: var(--main);
    margin: 0;
}

.about-section-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: var(--main);
    margin: 0;
}

.about-section-logo-wrap {
    margin-top: 40px;
}

.about-section-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Right column */
.about-section-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Main image — full right col width */
.about-section-main-img-wrap {
    width: 100%;
    overflow: hidden;
}

.about-section-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Mission / Vision — 2 equal columns */
.about-section-mv-wrap {
    padding: 30px 0;
    gap: 0;
}

.about-section-mv-item {
    width: 50%;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-section-mv-item:last-child {
    padding-right: 0;
    padding-left: 15px;
}

.about-section-mv-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 31px;
    color: var(--main);
    margin: 0;
}

.about-section-mv-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
    margin: 0;
}

/* Photo inside each mv-item */
.about-section-photo-inner {
    height: 260px;
    overflow: hidden;
    margin-top: auto;
}

.about-section-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .about-section-left-inner {
        padding-right: 40px;
    }

    .about-section-title {
        font-size: 32px;
        line-height: 46px;
    }
}

@media screen and (max-width: 1199px) {
    .about-section-left-inner {
        padding-right: 30px;
    }

    .about-section-title {
        font-size: 28px;
        line-height: 40px;
    }

    .about-section-main-img {
        height: 300px;
    }

    .about-section-photo-inner {
        height: 200px;
    }
}

@media screen and (max-width: 991px) {
    #dd-about-section {
        padding: 50px 0;
    }

    .about-section-wrap {
        flex-direction: column;
    }

    .about-section-left,
    .about-section-right {
        width: 100%;
    }

    .about-section-left-inner {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .about-section-logo-wrap {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    #dd-about-section {
        padding: 40px 0;
    }

    .about-section-title {
        font-size: 26px;
        line-height: 36px;
    }

    .about-section-mv-wrap {
        flex-direction: column;
        padding: 24px 0;
        gap: 24px;
    }

    .about-section-mv-item,
    .about-section-mv-item:last-child {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .about-section-main-img {
        height: 240px;
    }

    .about-section-photo-inner {
        height: 160px;
    }
}

@media screen and (max-width: 600px) {
    .about-section-photo-inner {
        height: 180px;
    }
}
