/* Company Page Specific Styles */

/* Company Section */
.company {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #000000;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-content-title {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    letter-spacing: 0%;
    line-height: 1.5em;

}

.company-content-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.company-content-item-image {
    min-width: 500px;
    height: 560px;
    object-fit: cover;
    background-image: url('/static/assets/img/company_main.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.company-content-item-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
}

.company-content-item-content-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.company-content-item-content-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100px;
}

.company-content-item-content-description {
    font-size: 16px;
    font-weight: 400;
    width: 500px;
}

/* Work Results Section */
.workresults {
    padding: 60px 5%;
    background-color: #ffffff;
    color: #000000;
}

.workresults-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.workresults-content-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    width: 550px;
}

.workresults-content-item-content img {
    margin-bottom: 10px;
}

.workresults-content-item-content-title {
    display: grid;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
}

.workresults-content-item-content-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    padding: 5px 0;
}

.workresults-content-item-content-item {
    margin-bottom: 60px;
    margin-top: 20px;
}

/* Investors Section */
.inverstors {
    padding: 60px 5%;
    background-color: #ffffff;
    color: #000000;
}

.inverstors-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inverstors-content-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.inverstors-content-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.inverstors-content-item-image {
    width: 500px;
    height: 560px;
    object-fit: cover;
}

.inverstors-content-item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.ellipse-container {
    position: absolute;
    margin-left: -40px;
    font-size: 20px;
    margin-top: 4px;
    color: #d8d8da;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .company {
        padding: 60px 0;
    }

    .company-content-title {
        font-size: 36px;
        padding: 24px 20px 14px 20px;
    }

    .company-content-item {
        flex-direction: column;
        gap: 30px;
    }

    .company-content-item img {
        width: 100%;
        height: 200px;
    }

    .company-content-item-content {
        gap: 15px;
        padding: 0 20px;
    }

    .company-content-item-content-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .company-content-item-content-title {
        font-size: 16px;
        font-weight: 700;
        min-width: 70px;
        flex-shrink: 0;
        margin-bottom: 0;
        width: 70px;
    }

    .company-content-item-content-description {
        font-size: 14px;
        width: auto;
        flex: 1;
        line-height: 1.5em;
        padding-top: 2px;
    }

    .workresults {
        padding: 30px 20px;
    }

    .workresults-content {
        flex-direction: column;
    }

    .workresults-content-title {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        letter-spacing: 0%;

        font-size: 36px;
        width: 100%;
        margin-bottom: 32px;
    }

    .workresults-content-item {
        padding: 0 30px;
    }

    .ellipse-container {
        font-size: 16px;
        margin-top: -4px;
        margin-left: -30px;
    }

    .workresults-content-item-content-title {
        font-size: 16px;
        line-height: 24px;
    }

    .workresults-content-item-content-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
    }

    .workresults-content-item-content-item {
        margin-bottom: 40px;
        margin-top: 10px;
    }

    .workresults-content-item-content-item img {
        width: 80px;
        height: auto;
    }

    .workresults-content-item-content img {
        width: 58px;
        margin-bottom: 5px;
    }

    .inverstors {
        padding: 0 20px 60px 20px;
    }

    .inverstors-content {
        align-items: flex-start;
    }

    .inverstors-content-title {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 36px;
        margin-bottom: 32px;
    }

    .inverstors-content-item {
        display: table;
        width: 100%;
    }

    .inverstors-content-item img {
        margin-right: 5px;
        margin-bottom: 10px;
    }

    .pb-10 {
        padding-bottom: 0;
    }

    .pb-20 {
        padding-bottom: 0;
    }

    .company-content-item-image {
        height: 200px;
        min-width: 100%;
        object-fit: cover;
        background-image: url('/static/assets/img/company_main.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}