/* ── Plugin Hero Layout ─────────────────────────────────────────
   Add this to your theme's stylesheet or enqueue as a partial.
   ─────────────────────────────────────────────────────────────── */

.plugin-hero {
    background: #f4f6f8;
    padding: 48px 0 64px;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.plugin-hero .portfolio-back-nav {
    margin-bottom: 40px;
}

.plugin-hero-row {
    align-items: center;
}

/* Title */
.plugin-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Subheader */
.plugin-hero-subheader {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 12px 0 20px;
    max-width: 480px;
}

/* Optional URL link below title */
.plugin-hero-url {
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.plugin-hero-url a {
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.plugin-hero-url a:hover {
    color: #1a1a2e;
}

/* Category tags */
.plugin-hero-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.plugin-cat-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Logo card */
.plugin-logo-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}
.plugin-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Back link — blue for plugin layout */
.plugin-hero .portfolio-back-link {
    color: #2877db;
}
.plugin-hero .portfolio-back-link:hover {
    color: #1a5cb8;
}

/* Responsive */
@media (max-width: 991px) {
    .plugin-hero {
        padding: 36px 0 48px;
    }
    .plugin-logo-card {
        margin-top: 36px;
        min-height: 200px;
    }
    .plugin-hero-title {
        font-size: 2rem;
    }
}