.container-potof-export {
    width: 100%;
    padding: 64px 16px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    overflow: visible;
}

.container-potof-export .export-inner {
    width: 100%;
    max-width: 1216px;
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
}

.container-potof-export .export-content-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.container-potof-export .export-badge {
    background-color: #f2f6fb;
    padding: 6px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}

.container-potof-export .export-badge span {
    color: #0e519f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    font-family: Quicksand, sans-serif;
}

.container-potof-export .export-title {
    color: #1f1f42;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.container-potof-export .export-desc {
    color: #6a7282;
    font-size: 16px;
    line-height: 1.5;
}

.container-potof-export .export-desc p {
    margin-bottom: 16px;
}

.container-potof-export .export-desc p:last-child {
    margin-bottom: 0;
}

.container-potof-export .export-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #f3f4f6;
}

.container-potof-export .export-contact-icon {
    width: 56px;
    height: 56px;
    background-color: #f2f6fb;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-potof-export .export-contact-info {
    display: flex;
    flex-direction: column;
}

.container-potof-export .export-contact-label {
    color: #6a7282;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.65px;
}

.container-potof-export .export-contact-email {
    color: #1f1f42;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.container-potof-export .export-image-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container-potof-export .export-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.container-potof-export .export-blob-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    z-index: 1;
    pointer-events: none;
}

.container-potof-export .export-blob-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.container-potof-export .export-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    border-radius: 28px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid #ccc;
}

.container-potof-export .export-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 468px) {
    .container-potof-export .export-blob-svg {
        width: 110%;
        height: 110%;
    }
}

@media (min-width: 1024px) {
    .container-potof-export {
        padding: 80px 16px;
    }

    .container-potof-export .export-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 64px;
    }

    .container-potof-export .export-content-col {
        width: 50%;
        max-width: 590px;
    }

    .container-potof-export .export-image-col {
        width: 50%;
        max-width: 550px;
    }

    .container-potof-export .export-image-wrapper {
        max-width: 520px;
    }

    .container-potof-export .export-image-container {
        border-radius: 48px;
    }

    .container-potof-export .export-title {
        font-size: 48px;
    }
}