.main-hero {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/notice-for-shareholders-banner.jpg");
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/notice-for-shareholders-banner.jpg");
        background-position: right;
        align-items: center;
        padding: 40px;
    }
}


/* Management Section */

.founders-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.founder-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.founder-header-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.founder-header-inner>span {
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
}

.founder-header-inner>h2 {
    width: 70%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617em;
    font-weight: 500;
    line-height: 1.2;
}

.founder-content {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #979797;
    padding: 32px 0;
}

.founder-content>h3 {
    width: 40%;
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.founder-content-description {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founder-content-description>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.founder-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin-top: 32px;
}

.founder-col {
    width: auto;
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
    border-radius: 20px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.founder-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    background-color: #ffffff;
}

.founder-image>img {
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 16px;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}

.founder-meta>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
}

.founder-meta>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

@media screen and (max-width:768px) {

    .founders-container {
        padding: 64px 0;
        gap: 32px;
    }

    .founder-header-inner>h2 {
        width: 100%;
    }

    .founder-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .founder-content>h3 {
        width: 100%;
    }

    .founder-content-description {
        width: 100%;
    }

    .founder-row {
        display: flex;
        gap: 24px;
    }

    .founder-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }

    .founder-meta {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

}

@media screen and (max-width:430px) {

    .founders-container {
        padding: 64px 0;
        gap: 16px;
    }

    .founder-header-inner>h2 {
        width: 100%;
        font-size: 2.617rem;
    }

    .founder-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }

    .founder-content>h3 {
        width: 100%;
    }

    .founder-content-description {
        width: 100%;
    }

    .founder-col {
        flex: 1 1 100%;
    }
}