/* TylkoFotografia Toolkit Hub – identyczny wygląd jak shortcuts hub */

.tfsc-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ── Hub grid ────────────────────────────────────── */
.tfsc-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}


/* ── Card ────────────────────────────────────────── */
.tfsc-hub-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none !important;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

a.tfsc-hub-card:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.10);
}

.tfsc-hub-card.is-soon {
    opacity: 0.55;
    pointer-events: none;
}

/* ── Icon ────────────────────────────────────────── */
.tfsc-hub-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* ── Title ───────────────────────────────────────── */
.tfsc-hub-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: #1e293b;
}

/* ── Description ─────────────────────────────────── */
.tfsc-hub-card-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 auto;
    padding-bottom: 1rem;
}

/* ── Meta row ────────────────────────────────────── */
.tfsc-hub-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2563EB;
    margin-top: 0.5rem;
}

.tfsc-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #EFF6FF;
    color: #2563EB;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tfsc-hub-badge svg {
    flex-shrink: 0;
}

.tfsc-hub-arrow {
    font-weight: 600;
    white-space: nowrap;
}
