/* Building Things to Life V2 */
.building-things-life-v2-section {
    width: 100%;
    color: rgb(var(--color-text));
    background: rgb(var(--color-background));
}

.btl-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* Content */
.btl-content {
    flex: 1;
    min-width: 0;
}

.btl-title {
    margin: 0 0 24px 0;
}

.btl-description {
    color: rgba(var(--color-text), 0.75);
    margin: 0;
    max-width: 480px;
}

/* Image */
.btl-image-wrapper {
    flex: 1;
    min-width: 0;
    position: static;
    border-radius: 40px 40px 40px 40px;
    overflow: hidden;
}

.btl-image-wrapper img,
.btl-image-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--btl-image-radius, 24px);
    object-fit: cover;
}

/* Badge */
.btl-badge {
    position: absolute;
    top: 25%;
    left: 52%;
    transform: translate(-50%,-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(var(--color-button-text));
    font-family: var(--body-font);
    font-size: var(--type-badge-size);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    z-index: 2;
}

/* Mobile */
@media (max-width: 768px) {
    .btl-container {
        flex-direction: column;
        gap: 32px;
    }

    .btl-content {
        text-align: center;
    }

    .btl-title {
        margin-bottom: 16px;
    }

    .btl-description {
        max-width: 100%;
    }

    .btl-badge {
        width: 56px;
        height: 56px;
        top: 52%;
        left: 84%;
        transform: translate(-50%, -50%);
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .btl-container {
        gap: 40px;
    }
}

