/* ---- LAYOUT GERAL ---- */
#download-catalog-list {
    width: 100%;
}

.catalog-category {
    margin-bottom: 8rem;
    width: 100%;
}

/* ---- CADA CATALOGO EM LINHA (BLOCO) ---- */
.catalog {
    display: flex;
    align-items: flex-start;
    margin-bottom: 64px;
    width: 100%;
}

.catalog .thumb {
    border: 1px solid #e85113;
    margin-right: 20px;
}

/* ---- INFO DO CATÁLOGO ---- */
.catalog .info {
    flex: 1;
}

.catalog .info .title {
    margin-top: 0;
    margin-bottom: 20px;
}

/* ---- ÍCONES DOS ITENS ---- */
.catalog .items {
    display: grid;
    grid-template-columns: repeat(4, 70px);
}

/* ---- RESPONSIVIDADE ---- */
@media screen and (max-width: 1200px) {
    .catalog {
        flex-direction: column;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .catalog .thumb {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .catalog .info {
        margin-top: 0;
    }
}

@media screen and (max-width: 576px) {
    .catalog-container {
        padding-left: 26px;
        padding-right: 26px;
    }

    /* Itens ficam 2 por linha no mobile */
    .catalog .items {
        grid-template-columns: repeat(2, 70px);
    }
}
