.category-highlight-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.highlight-post {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--wp--preset--shadow--natural);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor:pointer;
}

.highlight-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.highlight-post img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.highlight-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-card-body {
    flex-grow: 1;
    padding: 0 var(--wp--preset--spacing--50);
}

.highlight-card-footer {
    margin-top: auto;
    text-align: left;
}
.highlight-card-footer:hover {
 text-decoration:underline;
text-decoration-color:#007A53;
}
.highlight-post h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

.highlight-post .post-subtitle {
    margin: 5px 0;
}

.highlight-card-footer p {
    color: #007A53;
    font-weight: bold;
}

@media (max-width: 800px) {
    .category-highlight-posts {
        grid-template-columns: 1fr;
    }
}