/**
 * @version     CVS: 5.2.2
 * @package     com_coopmodules
 * @subpackage  mod_mainarticles
 * @copyright   2024 Hirlei Carlos Pereira de Araújo
 * @license     GNU General Public License versão 2 ou posterior; consulte o arquivo License. txt
 * @author      Hirlei Carlos Pereira de Araújo <prof.hirleicarlos@gmail.com>
 */

@import "default.css";

.mod-ma-custom1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto; /* Centraliza o contêiner na página */
}

.mod-ma-custom1 .ma-header {
    width: 100%; /* Mantém a largura total do cabeçalho */
    margin-bottom: 30px;
}

.mod-ma-custom1 .ma-body {
    display: flex;
    margin: 0 auto; /* Centraliza o contêiner na página */
}

.mod-ma-custom1 .ma-body .ma-video iframe,
.mod-ma-custom1 .ma-body .ma-video video {
    width: 100%;
    height: 325px;
    border-radius: 10px;
}

.mod-ma-custom1 .ma-itens {
    background: #FFFFFF 0 0 no-repeat padding-box;
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    padding: 25px;
    height: 325px;
}

.mod-ma-custom1 .ma-itens .itens {
    overflow-x: auto;
    width: 100%;
    height: 275px;
    padding-right: 20px;
}

.mod-ma-custom1 .ma-itens a,
.mod-ma-custom1 .ma-itens a:hover {
    color: #171c66;
}

.mod-ma-custom1 .ma-itens a h4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DCDCDC;
}

/* Responsividade */
@media (max-width: 992px) {
    .mod-ma-custom1 .ma-body {
        gap: 30px !important;
    }
    .mod-ma-custom1 .ma-body {
        flex-wrap: wrap;
    }

    .mod-ma-custom1 .ma-video {
        width: 100% !important;
    }

    .mod-ma-custom1 .ma-itens {
        width: 100% !important;
    }
}