body.page-template-hc-category-picker .wd-sidebar-opener{
	display:none !important;
}
.hc-cp-page-wrapper {
    padding: 50px 0;
    background-color: #fff;
}
.hc-cp-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 15px;
}

.hc-cp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hc-cp-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f8f9fb;
    transition: all 0.3s ease;
}

.hc-cp-link {
    display: block;
    text-decoration: none !important;
}

/* Başlık Alanı - Üstte Gri Bant */
.hc-cp-content {
    background-color: #f6f6f6;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hc-cp-title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
	    text-transform: uppercase;
}

/* Görsel Alanı - Otomatik Yükseklik */
.hc-cp-image-wrapper {
    width: 100%;
    line-height: 0; /* Alt boşluğu engellemek için */
}

.hc-cp-img {
width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 10%;
    margin-bottom: 10%;
}

/* Hover Efekti: Sadece yazı turuncu olur */
.hc-cp-item:hover .hc-cp-title {
    color: #ff7a00;
}

/* Kartın geneline hafif bir gölge ekleyebiliriz (opsiyonel) */
.hc-cp-item:hover {
    border-color: #bbb;
}

@media (max-width: 768px) {
    .hc-cp-grid {
        grid-template-columns: 1fr;
    }
	.hc-cp-page-wrapper{
		padding-top:0;
	}
}