.dcp-category-header {
    text-align: center;
    margin-bottom: 20px;
}

.dcp-category-description p {
    width: 100%;
    height: 250px;
	overflow: hidden;

}

.dcp-category-description p img{
    width: 100%;
    height: 100%;
	object-fit: cover;

}

.dcp-thumbnail {
    width: 100%;
    height: 200px;
	overflow: hidden;
}

.dcp-thumbnail img{
    width: 100%;
    height: 100%;
	object-fit: cover;
}

.dcp-category-title {
    font-size: 2em;
    margin-top: 10px;
	font-weight: 700;
}

.dcp-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.dcp-card {
    border: 2px solid red;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.dcp-title {
    color: red;
    font-size: 1.2rem;
    line-height: 1.2em;
}

.dcp-meta {
    margin-bottom: 10px;
}

.dcp-category {
    color: #d9534f;
    font-size: 0.9em;
}

.dcp-last {
	color: #333;
    font-weight: 700;
}


.dcp-date {
    font-weight: bold;
    color: #333;
}

.dcp-excerpt {
    font-size: 1em;
    color: #666;
}

.dcp-read-more {
    display: inline-block;
    margin-top: 10px;
    background-color: red;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
}
.dcp-read-more:hover {
    background-color: darkred;
	color: white;
}

