/* ==========================================================================
   Vehicle Builds — Shortcode & Single Build Page Styles
   ========================================================================== */

/* ==========================================================================
   1. [pt_featured_build] SHORTCODE BLOCK
   ========================================================================== */
.pt-featured-build-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    margin: 20px 0;
}

.pt-featured-build-image {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.pt-featured-build-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.pt-featured-build-eyebrow {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

.pt-featured-build-vehicle {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.5px;
}

.pt-featured-build-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}
.pt-featured-build-title a {
    text-decoration: none;
    color: #000;
}
.pt-featured-build-title a:hover { color: #d00; }

.pt-featured-build-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pt-featured-build-owner {
    display: flex;
    align-items: center;
}
.pt-featured-build-owner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.85rem;
}
.pt-featured-build-owner a:hover { color: #000; }
.pt-featured-build-avatar {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.pt-featured-build-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.pt-featured-build-empty {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .pt-featured-build-block {
        grid-template-columns: 1fr;
    }
    .pt-featured-build-image {
        min-height: 220px;
    }
    .pt-featured-build-info {
        padding: 24px;
    }
}


/* ==========================================================================
   2. STATUS PILL (standalone — also used in shortcode)
   ========================================================================== */
.pt-status-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 50px;
    color: #fff;
    background: #6c757d;
    line-height: 1;
}


/* ==========================================================================
   3. PT BUTTON — red variant (if not already globally defined)
   ========================================================================== */
.pt-button.pt-red,
button.pt-button.pt-red {
    background: #d00;
    color: #fff;
    border: 1px solid #b00;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.15s;
}
.pt-button.pt-red:hover { background: #b00; }
