.care-form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

.care-form input,
.care-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.care-form textarea {
  min-height: 120px;
  resize: vertical;
}

.care-form input:focus,
.care-form textarea:focus {
  border-color: #6c9cff;
  outline: none;
}

.care-form input[type="submit"] {
  background: #4d7a79;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}



/* === CARD CONTAINER === */
.category-services.type-post {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover lift */
.category-services.type-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* === IMAGE === */
.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image zoom on hover */
.category-services.type-post:hover img {
    transform: scale(1.08);
}

/* === CONTENT AREA === */
.entry-wrapper {
    padding: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.entry-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.entry-title a {
    text-decoration: none;
    color: #1a1a1a;
}

.entry-title a:hover {
    color: #2f6f68; /* your green tone */
}

/* Description */
.entry-wrapper p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* === BUTTON === */
.more-link {
    margin-top: auto;
    display: inline-block;
    background: #2f6f68;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Button hover */
.more-link:hover {
    background: #245a54;
}

article.category-blogs.type-post.post-has-image {
    border: 1px solid;
}
