/* pdh-card.css: Card, bài viết, dịch vụ, template, category */
.pdh-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
}
.pdh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.pdh-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f6a63;
    margin-bottom: 14px;
    line-height: 1.4;
}
.pdh-card-title a {
    color: #0f6a63;
    text-decoration: none;
}
.pdh-card-title a:hover {
    color: #0c5553;
}
.pdh-card-img {
    display: flex;
    justify-content: center;
    margin: 10px 0 16px;
}
.pdh-card-img img {
    width: 65%;
    border-radius: 12px;
    display: block;
    object-fit: contain;
}
.pdh-card-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
