/* Object Module */
.cabb-block.object-module {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px); 
    max-width: 1880px; 
    margin: 60px auto !important;
}

.cabb-block.object-module .object-wrapper {
    display: flex;
    flex-direction: row; 
    background-color: #FFFFFF;
    gap: 0; 
    width: 100%;
    max-width: 100%;
    margin: auto;
}

@media (max-width: 1199px) {
    .cabb-block.object-module .object-wrapper {
        flex-direction: column-reverse; 
    }
}

/* Image Wrapper */
.cabb-block.object-module .image-wrapper {
    flex: 0 0 50%; 
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.03 / 1;
    padding: 0 !important;
  }
  
  .cabb-block.object-module .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
.cabb-block.object-module .image-wrapper .status {
    position: absolute;
    top: 0;
    width: calc(100%);
    background-color: #FFFFFF;
    opacity: 0.6;
    font-size: 22px;
    font-family: 'degular-display';
    color: #131C37;
    text-align: right;
    padding: 7px 28px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .cabb-block.object-module .image-wrapper {
        aspect-ratio: 6/3.36;
    }
}

/* Content Wrapper */
.cabb-block.object-module .content-wrapper {
    flex: 0 0 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 100px 60px 90px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cabb-block.object-module .content-wrapper {
        flex: 0 0 50%; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px;
    }

    .cabb-block.object-module .content-wrapper .content {
        max-width: 600px;
        margin: auto;
    }
}

@media (min-width: 1200px) and (max-width: 1275px) {
    .cabb-block.object-module .content-wrapper {
        padding: 20px;
    }
}

@media (min-width: 1276px) and (max-width: 1413px) {
    .cabb-block.object-module .content-wrapper {
        padding: 40px;
    }
}


@media (min-width: 577px) and (max-width: 991px) {
    .cabb-block.object-module .content-wrapper {
        flex: 0 0 50%; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px;
    }

    .cabb-block.object-module .content-wrapper .content {
        max-width: 600px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .cabb-block.object-module .content .link {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .cabb-block.object-module .content-wrapper {
        flex: 0 0 50%; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 35px;
    }

    .cabb-block.object-module .content-wrapper .content {
        margin: auto;
    }
}

/* Content Text */
.cabb-block.object-module .content .label {
    font-family: 'degular-display';
    font-size: 26px;
    color: #48C5E0;
    padding: 0 !important;
    margin: 0 !important; 
}

.cabb-block.object-module .content .text {
    margin-bottom: 125px; 
}

@media (max-width: 1199px) {

    .cabb-block.object-module .content .text {
        margin-bottom: 75px; 
    }
}

.cabb-block.object-module .content .heading h2 {
    font-family: 'degular-display';
    font-size: 36px;
    margin: 0;
    line-height: 1.2;
}

.cabb-block.object-module .content .description {
    font-family: 'degular';
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

/* Button and Link*/
.cabb-block.object-module .content .button {
    font-family: 'degular-display';
    font-size: 22px;
    border: 1px solid #131C37;
    color: #131C37;
    background-color: transparent;
    text-decoration: none;
    padding: 10px 30px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cabb-block.object-module .content .button:hover {
    background-color: #FFFFFF;
    color: #131C37;
}

.cabb-block.object-module .content .link {
    font-family: 'degular-display';
    font-size: 22px;
}

@media (min-width: 1200px) and (max-width: 1295px) {
    .cabb-block.object-module .content .button {
        padding: 10px 25px;
        font-size: 19px;
    }

    .cabb-block.object-module .content .link {
        font-size: 19px;
    }
}