.seor-post-preview-card {
    border: 1px solid var(--wp--preset--color--primary, #3a5477);
    padding: 0;
    background: #fff;
    margin: 1rem 0;
    max-width: 100%;
    position: relative;
    /*z-index: 100;*/
    top: -20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Full card clickable overlay */
.seor-pp-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 102; /* Above content and notches */
    text-decoration: none;
    cursor: pointer;
}

.seor-pp-image-wrap {
    overflow: hidden;
}

.seor-pp-image-wrap img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.seor-pp-content {
    border-top: 1px solid var(--wp--preset--color--primary, #3a5477);
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.seor-pp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.seor-pp-site-label {
    background-color: var(--wp--preset--color--primary, #3a5477);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.seor-pp-date {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.seor-pp-title {
    margin: 0 0 10px 0;
    /**font-size: 1.25rem;
    font-weight: 600; */
}

.seor-pp-title a {
    color: var(--wp--preset--color--primary, #3a5477);
    text-decoration: none;
}

.seor-pp-excerpt {
    font-size: 0.9rem;
    line-height: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.seor-pp-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wp--preset--color--secondary, #f79420);
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    align-self: flex-start;
}

.seor-pp-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seor-pp-excerpt {
        display: none;
    }
}

/* ─────────────────────────────────────────────
   ANIMATED POST CARD
   ───────────────────────────────────────────── */
.seor-pp-card-animated {
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.seor-pp-card-animated:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Image Zoom */
.seor-pp-card-animated .seor-pp-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.seor-pp-card-animated:hover .seor-pp-image-wrap img {
    transform: scale(1.1);
}

/* Double Notch Animation */
.seor-pp-card-animated::before,
.seor-pp-card-animated::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 101;
}

/* Small Solid Notch */
.seor-pp-card-animated::after {
    width: 70px; /* Matched to Pastilla Notch size*2 (35*2) */
    height: 70px;
    background: var(--wp--preset--color--primary, #3a5477);
    transition-delay: 0.1s;
}

/* Large Translucent Notch */
.seor-pp-card-animated::before {
    width: 140px; /* Matched to Pastilla Notch size*4 (35*4) */
    height: 140px;
    background: color-mix(in srgb, var(--wp--preset--color--primary, #3a5477) 40%, transparent);
    transition-delay: 0s;
}

.seor-pp-card-animated:hover::before,
.seor-pp-card-animated:hover::after {
    transform: scale(1);
    opacity: 1;
}
