.container.global.about {
    position: relative;
}

.row.grid-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 0;
    padding: 0;
}

.cell {
    border-radius: 20px;
    min-height: 350px;
    padding: 20px;
    position: relative;
}

/* Línea vertical */
.grid-container::before {
    content: '';
    position: absolute;
    top: -11px;
    left: calc(50% - 1px);
    width: 1px;
    height: calc(100% + 24px);
    background-color: black;
}

/* Líneas horizontales */
.row.grid-container:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
}

/*!* Línea superior e inferior *!*/
/*.container.global.about::before,*/
/*.container.global.about::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    background-color: black;*/
/*}*/

.container.global.about::before {
    top: -12px;
}

.container.global.about::after {
    bottom: -13px;
}

.photo {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.text-cell {
    color: #f4e7cf;
}

.text-cell-light {
    color: #f4e7cf;
}

.text-cell-dark {
    color: #433b37;
}

.text-cell h1, .text-cell h2 {
    font-size: 3.3rem;
    padding-bottom: 15px;
    padding-top: 15px;
    font-weight: bold;
}

.text-cell h4 {
    padding-bottom: 10px;
    font-size: 1.3rem;
    font-family: Arial, sans-serif;
    line-height: 1.3;
}

.text-cell, .img-cell {
    padding-left: 30px;
    padding-right: 20px;
}

.img-cell {
    padding: 0;
    position: relative;
}

@media (max-width: 991.98px) {
    .text-cell h1, .text-cell h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .row.grid-container {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .grid-container::before {
        display: none;
    }

    .row.grid-container:not(:last-child)::after {
        display: none;
    }

    .container.global::before,
    .container.global::after {
        display: none;
    }

    .text-cell {
        padding-left: 30px;
        padding-right: 30px;
    }

    .img-cell {
        padding: 0;
    }

    .cell {
        min-height: auto;
        width: auto;
    }

    .photo {
        width: 100%;
        height: auto;
    }
}