.tb-wrapper-7c1f4e2a {
    position: relative;
    width: 100%;
    background-color: #f6fdf9; /* Default light green bg */
    overflow: hidden;
    padding: 60px 20px;
}
/* Decorative circle anclado a TODA la sección (no a la columna de texto) */
.tb-wrapper-7c1f4e2a::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15%; /* ajusta a ojo: más negativo = se corta más */
    height: 100%;
    aspect-ratio: 1 / 1;
    width: auto;
    background-color: #e6faf1; /* lighter green circle */
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.tb-container-7c1f4e2a {
    position: relative;
    z-index: 1; /* asegura que el contenido quede encima del círculo */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.tb-left-col-7c1f4e2a {
    flex: 1 1 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.tb-dec-circle-7c1f4e2a {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #409e75; /* default green */
    z-index: 1;
}
.tb-image-wrap-7c1f4e2a {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.tb-image-wrap-7c1f4e2a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tb-right-col-7c1f4e2a {
    flex: 1 1 50%;
    position: relative;
    padding: 60px 40px;
    z-index: 2;
}
.tb-title-7c1f4e2a {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #0d8349;
    margin: 0 0 16px 0;
}
.tb-text-7c1f4e2a {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #000;
    margin: 0 0 24px 0;
}
.tb-author-7c1f4e2a {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.tb-button-7c1f4e2a {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background-color: #0d8349;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: opacity 0.2s;
}
.tb-button-7c1f4e2a:hover {
    opacity: 0.85;
    color: #fff;
}
@media (max-width: 768px) {
    .tb-container-7c1f4e2a {
        flex-direction: column;
    }
    .tb-wrapper-7c1f4e2a::after {
        height: 80%;
        right: -25%;
        top: 10%;
    }
    .tb-left-col-7c1f4e2a {
        padding: 20px;
        width: 100%;
    }
    .tb-right-col-7c1f4e2a {
        padding: 24px 0;
    }
}
