.employments_container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.heading_employments{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading_red{
    color: var(--primary-red);
    font-size: 22px;
}

.heading_black{
    color: black !important;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.employments_card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.employments_image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.employments_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    aspect-ratio: 1 / 0.5;
}

.employments_content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.employments_content h2 {
    font-size: 2em;
    color: #333333;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.employments_content p {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
    .employments_card {
        flex-direction: row;
    }

    .employments_image {
        width: 50%;
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
    }

    .employments_image img {
        border-bottom-left-radius: 12px;
        border-top-right-radius: 0;
    }

    .employments_content {
        width: 50%;
        padding: 40px;
    }

    .employments_content h2 {
        font-size: 2.2em;
    }

    .employments_content p {
        font-size: 1.05em;
    }

    .cta_button_red {
        align-self: flex-start;
    }
}

@media screen and (min-width: 1024px) {
    .employments_content h2 {
        font-size: 2.5em;
    }

    .employments_content p {
        font-size: 1.1em;
    }
}