.mobile-proud-wrapper {
    display: none;
}

.proud-wrapper {
    display: flex;
    width: 100%;
    height: 400px;
    margin-top: 104px;
    margin-left: 96px !important;

    .item-image, .item-description {
        height: 100%;
    }

    .item-image {
        width: 540px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .item-description {
        padding-left: 64px;
        padding-right: 160px;
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;

        .item-title {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .item-text {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .item-url {
            a {
                text-decoration: none !important;
                color: #000 !important;
    
                &:after {
                    content: "";
                    display: inline-block; 
                    width: 16px;
                    height: 12px; 
                    background-image: url(../icons/link-arrow.svg);
                    background-size: cover;
                    background-repeat: no-repeat;
                    margin-left: 10px; 
                    transition: transform 0.3s ease;
                }
    
                &:hover:after {
                    transform: translateX(5px);
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .mobile-proud-wrapper {
        border-top: 1px solid rgba(0, 0, 0, 0.3); 
        margin-top: 64px;
        display: block;

        .mobile-proud-title {
            margin-top: 40px;
            font-size: 32px;
        }
    }

    .proud-wrapper {
        margin-left: 0 !important;
        margin-top: 40px;

        .item-description {
            padding-left: 32px;
            padding-right: 0;

            .item-title {
                display: none;
            }
        }
    }
}

@media (max-width: 650px) {
    .proud-wrapper {
        .item-description {
            .item-text {
                font-size: 14px;
            }
        }
    }
}

@media (max-width: 450px) {
    .proud-wrapper {
        display: block;
        height: 100%;

        .item-image {
            max-width: 100%;
        }
        
        .item-description {
            margin-top: 16px;
            width: 100%;
            display: block;
            padding-left: 0;

            .item-text {
                font-size: 20px;
            }
        }
    }
}
