/* WEYWOT PORTFOLIO GRID */
.weywot-portfolio-module {
    margin-top: 40px;
}
.wpt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wpt-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.wpt-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--accent);
}
.wpt-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wpt-card:hover .wpt-img-box img {
    transform: scale(1.08);
}

.wpt-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wpt-cat {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.wpt-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    line-height: 1.3;
}
.wpt-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.wpt-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid;
    padding-top: 20px;
}
.wpt-link-seo {
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}
.wpt-link-ext {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}
.wpt-link-ext svg { width: 14px; height: 14px; fill: currentColor; }

/* --- STYL 1: JASNY PREMIUM (Zgodny z Twoim aktualnym designem) --- */
.style-light .wpt-card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.style-light .wpt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,255,65,0.15);
    border-color: var(--accent);
}
.style-light .wpt-title { color: #111; }
.style-light .wpt-desc { color: #666; }
.style-light .wpt-actions { border-top-color: #eee; }
.style-light .wpt-link-seo { color: #111; border-bottom: 2px solid var(--accent); padding-bottom: 3px; }
.style-light .wpt-link-seo:hover { color: var(--accent); }
.style-light .wpt-link-ext { background: #f4f4f4; color: #333; }
.style-light .wpt-link-ext:hover { background: #111; color: var(--accent); }

/* --- STYL 2: MROCZNY WEYWOT (Czarna karta z neonem) --- */
.style-dark .wpt-card {
    background: #0a0b0c;
    border: 1px solid #1a1a1a;
}
.style-dark .wpt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,255,65,0.2);
    border-color: var(--accent);
}
.style-dark .wpt-title { color: #fff; }
.style-dark .wpt-desc { color: #aaa; }
.style-dark .wpt-actions { border-top-color: #1a1a1a; }
.style-dark .wpt-link-seo { color: #fff; border-bottom: 2px solid var(--accent); padding-bottom: 3px; }
.style-dark .wpt-link-seo:hover { color: var(--accent); }
.style-dark .wpt-link-ext { background: #111; color: #888; border: 1px solid #222; }
.style-dark .wpt-link-ext:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* RWD */
@media (max-width: 992px) { .wpt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .wpt-grid { grid-template-columns: 1fr; } }