/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.catwpk-clear {
    clear: both;
}
.catwpk-container {
    max-width: 1080px;
    margin: 60px auto;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    word-wrap: break-word;
}
.catwpk-grid {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    margin-left: -15px;
    margin-right: -15px;
}
.archive-header {
    margin-bottom: 30px;
}
.archive-header h1 {
    font-size: 2em;
    margin-bottom: 5px;
}
.archive-header p {
    font-size: 1.5em;
    margin: 0;
}
.catwpk-post {
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px;
    border: 1px solid #eee;
}
.catwpk-post .catwpk-thumbnail {
    width: 100%;
    height: 160px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #CBCBCB;
}
.catwpk-post img {
    width: 100%;
    height: auto;
}
.catwpk-post .catwpk-post-title {
    height: 66px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 66px;
    text-align: center;
}
.catwpk-post .catwpk-post-title h2 {
    line-height: 1.4;
    margin: 0;
	padding: 0;
    font-size: 1em;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
}
.catwpk-post .catwpk-post-title h2 a {
    word-break: break-word;
}
.catwpk-post a.catwpk-detail-btn {
    background: #e74c3c;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 0.95em;
}

.catwpk-pagination .page-numbers {
    display: inline-block;
    padding: 7px 15px;
    margin: 0 2px 7px 0;
    border: 1px solid #eee;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1em;
}
.catwpk-pagination .page-numbers.current,
.catwpk-pagination a.page-numbers:hover {
	background: #f9f9f9;
}

@media screen and (max-width: 992px) {
    .catwpk-container {
        padding-left: 25px;
        padding-right: 25px;
    }
    .catwpk-grid {
        grid-template-columns: 50% 50%;
    }
}

@media screen and (max-width: 600px) {
    .catwpk-grid {
        grid-template-columns: 100%;
    }
}