
.page-header { margin:2em 0; }
.page-header strong { color:#0075cc; }

/* Specials Grids */
.clearance-grid {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    grid-gap: 1.5rem;
    margin-bottom:25px;
}
@media screen and (max-width:1140px) {
    .clearance-grid { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width:640px) {
    .clearance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width:480px) {
    .clearance-grid { grid-template-columns: 1fr; }
}

.clearance-grid .clearance-item:hover {
    box-shadow: 5px 5px 25px #bdbdbd;
    transition: all 0.35s linear;
}

.clearance-item:hover a h3 { color:#0077C5; } 


.clearance-item { 
    background:white;    
    transition: all 0.35s linear;
    border:1px solid #e3e3e3;
    padding:1em;
}

.clearance-item .price del { 
    text-decoration: line-through;
}

.clearance-item a h3 { 
    font-size: 27px;
    text-align: left;
}

.cta-btn {
    background: #0077C5;
    color: white;
    transition: background 0.3s linear;
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 8px;
}