/* Latest Posts Carousel plugin styles */
.lpc-wrapper { max-width: 720px; margin: 0 auto; }
.lpc-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: #fff;
}
.lpc-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.lpc-title {
    margin: 6px 0 0;
    font-size: 1.125rem;
    line-height: 1.3;
    min-height: 1.4em;
    word-break: break-word;
}
.lpc-title a { text-decoration: none; }
.lpc-excerpt {
    font-size: 0.95rem;
    color: #555;
    min-height: 1.4em;
}
.lpc-actions { margin-top: 4px; }
.lpc-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    transition: transform .06s ease, background .2s ease;
}
.lpc-button:hover { background: #005a87; transform: translateY(-1px); }
