.grid-oradores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}


.grid-oradores a {
    width: 100%;
    height: 250px;
    justify-self: center;
    align-content: center;
}



.grid-oradores div {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grid-oradores div p {
    text-align: center;
}

.grid-oradores div p:nth-child(2) {
    font-weight: 800;
}

.grid-oradores div p:nth-child(3) {
    font-size: 0.85rem;
    color: #6d6d6d;
}


.grid-oradores a:hover,
.grid-oradores a:active,
.grid-oradores a:focus,
.active-orador {
    box-shadow: var(--secundary-shadow);
    border: 7px solid var(--secundary-color);
}

.h-space {
    clear: both;
    height: 3rem;
}

.grid-oradores img {
    width: 60%;
    height: auto;
}


.grid-oradores-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.img-container-oradores {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container-oradores img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oradores-info .box-text {
    margin-left: 2rem;
    z-index: 1;
}

.oradores-info img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}


.oradores-info h4 {
    margin-bottom: 1rem;
}

.oradores-info .a-btn p {
    font-weight: 600;
}

a.card-oradores:hover .a-btn p {
    color: var(--secundary-color);
}

a.card-oradores:hover .a-btn .hr-line-btn {
    background-color: var(--secundary-color);
    width: 4.5rem;
    height: 4px;
    margin-right: 1rem;
    border-radius: 40px;
}

.retangulo {
    position: absolute;
    width: 30rem;
    height: 30rem;
    transform: rotate(14.34deg) translateX(-55%);
    background-color: #f8f8f8;
    top: 40px;
    left: 28%;
    z-index: -10;
}

.oradores-info a,
.oradores-info .box-text {
    z-index: 1;
}

.oradores-info .box-text {
    margin-left: 2rem;
}

.break-10line {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    word-wrap: break-word;
    line-height: 1.5em;
}

@media (max-width: 1199px) {
    .oradores-info .box-text {
        margin-left: 0rem;
    }
}

@media (max-width: 575px) {
    .grid-oradores {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .grid-oradores img {
        width: auto;
        height: auto;
        max-width: 100%;
        margin: auto;
        display: block;
    }
}

@media (max-width: 500px) {

    /* about */
    .oradores-info img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}