
.hp-l-wrap {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}
.hp-l-wrap * {
    box-sizing: border-box;
}
.hp-l-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media(min-width: 640px) { .hp-l-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .hp-l-grid { grid-template-columns: repeat(var(--columns, 3), 1fr); } }

.hp-l-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-height: 250px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    position: relative;
}
.hp-l-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: #F5C400;
    transform: translateY(-3px);
    color: inherit;
}
.hp-l-featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fef9c3;
    color: #854d0e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-l-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}
.hp-l-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.hp-l-svg-icon {
    width: 24px;
    height: 24px;
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-image: var(--svg-url);
    mask-image: var(--svg-url);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.hp-l-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.hp-l-sub {
    font-size: 13px;
    font-weight: 600;
    color: #3b82f6;
    margin: 0 0 12px 0;
}
.hp-l-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-l-hr {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 0 0 16px 0;
}
.hp-l-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.hp-l-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.hp-l-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
}
.hp-l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.hp-l-card:hover .hp-l-btn {
    background: #F5C400;
    color: #0f172a;
}
.hp-l-empty {
    padding: 32px;
    text-align: center;
    color: #64748b;
    border: 2px dashed #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    font-size: 14px;
}
