/* =========================================
   TLAČÍTKO "NAČÍST DALŠÍ"
   ========================================= */

.homepage-load-more-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 45px;
}

.homepage-load-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 152px;
    height: 42px;
    padding: 0 16px;
    box-sizing: border-box;

    background: #fff;
    border: 1px solid #008080;
    border-radius: 0;

    color: #008080;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;
    transition: background-color 0.2s ease,
                color 0.2s ease;
}

.homepage-load-more:hover {
    background: #008080;
    color: #fff;
    text-decoration: none;
}


/* =========================================
   MOBIL
   ========================================= */

@media (max-width: 767px) {

    .homepage-load-more-wrapper {
        margin: 25px 0 35px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .homepage-load-more {
        min-width: 152px;
        height: 42px;
        padding: 0 16px;
        font-size: 16px;
    }

}